library(RCurl)
## Loading required package: bitops
#Getting data from github repository
mushroom <-read.csv(text=getURL("https://raw.githubusercontent.com/thasleem1/DATA607_Week1_Assign/master/agaricus-lepiota.data"))

#mushroom -> Assigning Column Names
colnames(mushroom) <- c("classes","cap-shape","cap-surface","cap-color","bruises","odor","gill-attachment","gill-spacing","gill-size","gill-color","stalk-shape","stalk-root","stalk-surface-above-ring","stalk-surface-below-ring","stalk-color-above-ring","stalk-color-below-ring","veil-type","veil-color","ring-number","ring-type","spore-print-color","population","habitat")
#Renaming few column name to replace hypen, which is invalid in R
colnames(mushroom)[colnames(mushroom)=="stalk-shape"] <- "stalk_shape"
colnames(mushroom)[colnames(mushroom)=="stalk-root"] <- "stalk_root"
#Subsetting data - mushroom
mushroom_subset <- subset(mushroom, select=c(classes,odor,population,habitat,stalk_shape,stalk_root)) 
#Recoding Values
mushroom_subset$class_info[mushroom_subset$classes=="e"] <- "edible" 
mushroom_subset$class_info[mushroom_subset$classes=="p"] <- "poisonous" 
#Recoding Values using lookup file
mushroom_lkp <-read.csv(text=getURL("https://raw.githubusercontent.com/thasleem1/DATA607_Week1_Assign/master/mushroom_lookup.csv"))

mushroom_subset
##      classes odor population habitat stalk_shape stalk_root class_info
## 1          e    a          n       g           e          c     edible
## 2          e    l          n       m           e          c     edible
## 3          p    p          s       u           e          e  poisonous
## 4          e    n          a       g           t          e     edible
## 5          e    a          n       g           e          c     edible
## 6          e    a          n       m           e          c     edible
## 7          e    l          s       m           e          c     edible
## 8          p    p          v       g           e          e  poisonous
## 9          e    a          s       m           e          c     edible
## 10         e    l          n       g           e          c     edible
## 11         e    a          s       m           e          c     edible
## 12         e    a          s       g           e          c     edible
## 13         p    p          v       u           e          e  poisonous
## 14         e    n          a       g           t          e     edible
## 15         e    n          y       u           e          e     edible
## 16         e    n          a       g           t          e     edible
## 17         p    p          s       g           e          e  poisonous
## 18         p    p          s       u           e          e  poisonous
## 19         p    p          s       u           e          e  poisonous
## 20         e    a          s       m           e          c     edible
## 21         p    p          v       g           e          e  poisonous
## 22         e    l          s       m           e          c     edible
## 23         e    a          n       m           e          c     edible
## 24         e    l          s       m           e          c     edible
## 25         p    p          v       g           e          e  poisonous
## 26         e    a          n       m           e          c     edible
## 27         e    l          n       m           e          c     edible
## 28         e    n          y       u           e          e     edible
## 29         e    a          v       d           t          b     edible
## 30         e    l          n       m           e          c     edible
## 31         p    p          s       u           e          e  poisonous
## 32         e    l          n       m           e          c     edible
## 33         e    l          y       p           e          r     edible
## 34         e    l          s       m           e          c     edible
## 35         e    l          v       d           t          b     edible
## 36         e    n          v       u           e          e     edible
## 37         p    p          s       u           e          e  poisonous
## 38         e    a          v       d           t          b     edible
## 39         e    l          s       m           e          c     edible
## 40         e    a          s       g           e          c     edible
## 41         e    l          y       p           e          r     edible
## 42         e    n          y       u           e          e     edible
## 43         p    p          v       g           e          e  poisonous
## 44         e    a          n       m           e          c     edible
## 45         e    a          n       g           e          c     edible
## 46         e    l          s       m           e          c     edible
## 47         e    l          n       m           e          c     edible
## 48         e    l          s       p           e          r     edible
## 49         e    l          s       p           e          r     edible
## 50         e    a          s       g           e          r     edible
## 51         e    l          s       g           e          c     edible
## 52         e    l          n       m           e          c     edible
## 53         p    p          v       u           e          e  poisonous
## 54         p    p          v       u           e          e  poisonous
## 55         e    a          s       m           e          c     edible
## 56         e    n          a       g           t          e     edible
## 57         e    a          n       g           e          c     edible
## 58         e    l          n       g           e          c     edible
## 59         e    a          y       p           e          r     edible
## 60         e    n          v       u           e          e     edible
## 61         e    a          s       m           e          c     edible
## 62         e    l          s       m           e          c     edible
## 63         e    l          n       m           e          c     edible
## 64         e    l          s       g           e          c     edible
## 65         e    n          a       g           t          e     edible
## 66         e    l          s       g           e          c     edible
## 67         e    a          s       g           e          r     edible
## 68         e    a          n       g           e          c     edible
## 69         e    n          v       u           e          e     edible
## 70         e    l          v       d           t          b     edible
## 71         e    l          s       m           e          c     edible
## 72         e    l          v       d           t          b     edible
## 73         e    a          s       p           e          r     edible
## 74         e    a          s       g           e          c     edible
## 75         e    l          v       d           t          b     edible
## 76         e    l          v       d           t          b     edible
## 77         e    l          y       p           e          r     edible
## 78         p    p          v       u           e          e  poisonous
## 79         e    a          y       g           e          r     edible
## 80         e    n          s       g           t          e     edible
## 81         p    p          s       g           e          e  poisonous
## 82         e    n          y       u           e          e     edible
## 83         e    n          s       g           t          e     edible
## 84         e    l          s       g           e          r     edible
## 85         e    n          s       g           t          e     edible
## 86         e    a          s       g           e          c     edible
## 87         e    l          s       g           e          c     edible
## 88         e    l          y       g           e          r     edible
## 89         e    n          v       u           e          e     edible
## 90         e    n          y       u           e          e     edible
## 91         e    l          s       g           e          c     edible
## 92         e    a          s       g           e          c     edible
## 93         e    l          n       m           e          c     edible
## 94         e    n          a       g           t          e     edible
## 95         e    a          s       g           e          c     edible
## 96         e    l          s       g           e          r     edible
## 97         e    a          n       g           e          c     edible
## 98         e    a          s       g           e          c     edible
## 99         e    a          s       g           e          c     edible
## 100        e    n          s       g           t          e     edible
## 101        e    l          n       g           e          c     edible
## 102        e    l          s       g           e          r     edible
## 103        e    a          y       p           e          r     edible
## 104        e    l          n       g           e          c     edible
## 105        e    a          n       m           e          c     edible
## 106        e    a          y       g           e          r     edible
## 107        e    l          s       m           e          c     edible
## 108        e    a          s       m           e          c     edible
## 109        e    a          n       m           e          c     edible
## 110        e    l          n       g           e          c     edible
## 111        e    n          y       u           e          e     edible
## 112        e    a          v       d           t          b     edible
## 113        e    a          n       m           e          c     edible
## 114        p    p          v       u           e          e  poisonous
## 115        e    l          s       g           e          r     edible
## 116        e    n          y       u           e          e     edible
## 117        e    l          y       g           e          r     edible
## 118        e    l          v       d           t          b     edible
## 119        e    n          y       u           e          e     edible
## 120        p    p          v       g           e          e  poisonous
## 121        e    a          n       m           e          c     edible
## 122        p    p          v       g           e          e  poisonous
## 123        e    n          a       g           t          e     edible
## 124        e    l          s       m           e          c     edible
## 125        e    n          s       g           t          e     edible
## 126        e    a          n       g           e          c     edible
## 127        e    n          a       g           t          e     edible
## 128        e    l          n       g           e          c     edible
## 129        e    l          s       m           e          c     edible
## 130        e    l          s       g           e          c     edible
## 131        e    l          s       m           e          c     edible
## 132        e    l          v       d           t          b     edible
## 133        e    l          s       m           e          c     edible
## 134        e    a          v       d           t          b     edible
## 135        p    p          v       u           e          e  poisonous
## 136        e    l          v       d           t          b     edible
## 137        e    a          s       g           e          c     edible
## 138        p    p          v       g           e          e  poisonous
## 139        e    l          n       g           e          c     edible
## 140        e    a          y       p           e          r     edible
## 141        e    l          n       m           e          c     edible
## 142        e    n          v       u           e          e     edible
## 143        e    a          y       p           e          r     edible
## 144        e    a          n       g           e          c     edible
## 145        e    n          s       g           t          e     edible
## 146        e    n          a       g           t          e     edible
## 147        e    l          n       m           e          c     edible
## 148        e    l          n       g           e          c     edible
## 149        e    a          n       m           e          c     edible
## 150        e    a          s       g           e          c     edible
## 151        e    n          a       g           t          e     edible
## 152        e    l          s       g           e          c     edible
## 153        e    n          v       u           e          e     edible
## 154        e    a          v       d           t          b     edible
## 155        e    l          s       g           e          r     edible
## 156        e    a          n       g           e          c     edible
## 157        e    a          n       g           e          c     edible
## 158        e    a          s       m           e          c     edible
## 159        e    a          s       g           e          c     edible
## 160        e    l          s       m           e          c     edible
## 161        e    a          n       g           e          c     edible
## 162        e    n          y       u           e          e     edible
## 163        e    l          y       g           e          r     edible
## 164        e    a          s       g           e          c     edible
## 165        e    l          y       p           e          r     edible
## 166        e    a          s       g           e          c     edible
## 167        e    a          s       m           e          c     edible
## 168        e    l          y       g           e          r     edible
## 169        e    a          s       g           e          c     edible
## 170        e    n          y       u           e          e     edible
## 171        e    l          s       g           e          c     edible
## 172        e    l          v       d           t          b     edible
## 173        e    a          s       g           e          c     edible
## 174        e    l          s       g           e          r     edible
## 175        e    l          n       m           e          c     edible
## 176        e    a          n       m           e          c     edible
## 177        e    a          s       g           e          c     edible
## 178        e    l          n       m           e          c     edible
## 179        e    l          n       g           e          c     edible
## 180        p    p          v       u           e          e  poisonous
## 181        e    n          y       u           e          e     edible
## 182        e    n          v       u           e          e     edible
## 183        e    a          s       m           e          c     edible
## 184        e    a          s       p           e          r     edible
## 185        p    p          s       g           e          e  poisonous
## 186        e    l          s       m           e          c     edible
## 187        e    n          v       u           e          e     edible
## 188        e    l          n       g           e          c     edible
## 189        e    a          y       p           e          r     edible
## 190        e    n          s       g           t          e     edible
## 191        e    l          v       d           t          b     edible
## 192        e    l          s       m           e          c     edible
## 193        e    a          v       d           t          b     edible
## 194        e    a          n       m           e          c     edible
## 195        e    n          y       u           e          e     edible
## 196        e    a          s       g           e          c     edible
## 197        e    l          n       m           e          c     edible
## 198        e    l          s       m           e          c     edible
## 199        e    a          v       d           t          b     edible
## 200        e    l          s       g           e          c     edible
## 201        e    l          s       g           e          c     edible
## 202        e    a          n       g           e          c     edible
## 203        e    n          s       g           t          e     edible
## 204        e    l          y       p           e          r     edible
## 205        p    p          v       u           e          e  poisonous
## 206        e    a          n       g           e          c     edible
## 207        e    a          s       m           e          c     edible
## 208        e    l          n       g           e          c     edible
## 209        e    a          n       g           e          c     edible
## 210        e    a          s       g           e          c     edible
## 211        e    l          n       m           e          c     edible
## 212        e    a          v       d           t          b     edible
## 213        e    n          y       u           e          e     edible
## 214        e    a          s       g           e          r     edible
## 215        e    l          n       m           e          c     edible
## 216        e    a          s       g           e          c     edible
## 217        e    a          s       g           e          c     edible
## 218        e    l          s       g           e          c     edible
## 219        e    n          v       u           e          e     edible
## 220        e    a          n       m           e          c     edible
## 221        p    p          s       g           e          e  poisonous
## 222        e    a          s       g           e          r     edible
## 223        e    a          v       d           t          b     edible
## 224        e    l          n       m           e          c     edible
## 225        e    l          s       g           e          c     edible
## 226        e    a          n       g           e          c     edible
## 227        e    a          s       g           e          c     edible
## 228        p    p          v       u           e          e  poisonous
## 229        e    a          n       g           e          c     edible
## 230        e    n          y       u           e          e     edible
## 231        p    p          s       u           e          e  poisonous
## 232        e    l          y       p           e          r     edible
## 233        e    n          v       u           e          e     edible
## 234        e    l          n       g           e          c     edible
## 235        e    l          v       d           t          b     edible
## 236        e    l          s       g           e          c     edible
## 237        e    l          s       g           e          c     edible
## 238        e    l          s       g           e          r     edible
## 239        e    a          s       p           e          r     edible
## 240        e    a          y       p           e          r     edible
## 241        e    l          s       g           e          c     edible
## 242        e    a          n       m           e          c     edible
## 243        p    p          v       u           e          e  poisonous
## 244        e    a          v       d           t          b     edible
## 245        e    l          s       g           e          c     edible
## 246        e    l          v       d           t          b     edible
## 247        e    a          s       m           e          c     edible
## 248        e    l          y       p           e          r     edible
## 249        e    n          s       g           t          e     edible
## 250        e    a          y       g           e          r     edible
## 251        p    p          s       g           e          e  poisonous
## 252        e    n          v       u           e          e     edible
## 253        e    l          s       m           e          c     edible
## 254        e    l          s       g           e          c     edible
## 255        e    l          n       m           e          c     edible
## 256        e    n          v       u           e          e     edible
## 257        e    a          n       m           e          c     edible
## 258        e    l          n       g           e          c     edible
## 259        e    a          n       m           e          c     edible
## 260        e    l          s       g           e          r     edible
## 261        p    p          v       g           e          e  poisonous
## 262        e    a          n       g           e          c     edible
## 263        e    a          s       m           e          c     edible
## 264        e    l          v       d           t          b     edible
## 265        e    n          v       u           e          e     edible
## 266        e    n          a       g           t          e     edible
## 267        e    a          s       m           e          c     edible
## 268        e    a          s       m           e          c     edible
## 269        p    p          s       u           e          e  poisonous
## 270        e    l          n       m           e          c     edible
## 271        p    p          v       u           e          e  poisonous
## 272        e    l          s       g           e          c     edible
## 273        e    a          n       m           e          c     edible
## 274        e    a          s       p           e          r     edible
## 275        e    a          s       p           e          r     edible
## 276        e    a          y       g           e          r     edible
## 277        e    a          n       m           e          c     edible
## 278        e    n          s       g           t          e     edible
## 279        e    l          n       m           e          c     edible
## 280        p    p          s       g           e          e  poisonous
## 281        e    a          n       m           e          c     edible
## 282        e    n          v       u           e          e     edible
## 283        e    l          s       m           e          c     edible
## 284        e    l          n       m           e          c     edible
## 285        e    a          s       g           e          r     edible
## 286        e    a          s       m           e          c     edible
## 287        e    a          s       g           e          c     edible
## 288        e    l          y       p           e          r     edible
## 289        e    n          y       u           e          e     edible
## 290        e    n          y       u           e          e     edible
## 291        e    l          s       g           e          c     edible
## 292        e    l          s       m           e          c     edible
## 293        e    l          s       g           e          c     edible
## 294        e    a          s       m           e          c     edible
## 295        e    a          n       m           e          c     edible
## 296        e    a          s       m           e          c     edible
## 297        e    n          s       g           t          e     edible
## 298        e    a          v       d           t          b     edible
## 299        p    p          s       g           e          e  poisonous
## 300        e    n          a       g           t          e     edible
## 301        e    a          s       g           e          c     edible
## 302        e    l          v       d           t          b     edible
## 303        e    a          s       g           e          c     edible
## 304        e    l          s       g           e          c     edible
## 305        e    n          y       d           t          b     edible
## 306        e    l          s       m           e          c     edible
## 307        e    l          n       m           e          c     edible
## 308        e    a          y       g           e          r     edible
## 309        e    n          s       g           t          e     edible
## 310        e    l          s       g           e          c     edible
## 311        p    p          v       g           e          e  poisonous
## 312        e    l          s       g           e          c     edible
## 313        e    a          v       d           t          b     edible
## 314        e    a          n       g           e          c     edible
## 315        p    p          v       u           e          e  poisonous
## 316        e    a          v       d           t          b     edible
## 317        e    a          n       m           e          c     edible
## 318        e    l          v       d           t          b     edible
## 319        e    l          v       d           t          b     edible
## 320        e    l          s       m           e          c     edible
## 321        e    a          v       d           t          b     edible
## 322        e    a          s       g           e          c     edible
## 323        e    a          s       m           e          c     edible
## 324        e    l          s       p           e          r     edible
## 325        e    l          n       g           e          c     edible
## 326        e    a          s       m           e          c     edible
## 327        p    p          v       u           e          e  poisonous
## 328        e    l          n       g           e          c     edible
## 329        e    a          n       g           e          c     edible
## 330        p    p          v       u           e          e  poisonous
## 331        e    l          s       m           e          c     edible
## 332        e    l          n       m           e          c     edible
## 333        e    a          s       g           e          c     edible
## 334        e    l          n       g           e          c     edible
## 335        e    n          y       d           t          b     edible
## 336        e    a          y       g           e          r     edible
## 337        e    l          s       g           e          c     edible
## 338        e    n          v       u           e          e     edible
## 339        e    l          y       g           e          r     edible
## 340        e    a          s       g           e          c     edible
## 341        e    a          n       g           e          c     edible
## 342        e    a          s       m           e          c     edible
## 343        e    a          v       d           t          b     edible
## 344        e    l          s       g           e          c     edible
## 345        e    n          a       g           t          e     edible
## 346        e    l          v       d           t          b     edible
## 347        e    a          n       m           e          c     edible
## 348        e    n          s       g           t          e     edible
## 349        e    n          y       u           e          e     edible
## 350        e    n          a       g           t          e     edible
## 351        e    a          s       p           e          r     edible
## 352        e    a          s       g           e          c     edible
## 353        e    a          s       m           e          c     edible
## 354        e    l          s       p           e          r     edible
## 355        e    n          v       u           e          e     edible
## 356        e    a          y       p           e          r     edible
## 357        p    p          s       u           e          e  poisonous
## 358        e    a          y       p           e          r     edible
## 359        e    a          s       g           e          c     edible
## 360        e    n          s       g           t          e     edible
## 361        e    n          a       g           t          e     edible
## 362        e    n          a       g           t          e     edible
## 363        e    a          s       p           e          r     edible
## 364        e    a          n       g           e          c     edible
## 365        e    n          v       u           e          e     edible
## 366        e    a          s       p           e          r     edible
## 367        e    a          v       d           t          b     edible
## 368        e    a          n       g           e          c     edible
## 369        e    n          s       g           t          e     edible
## 370        e    a          s       g           e          r     edible
## 371        e    l          y       g           e          r     edible
## 372        e    a          s       m           e          c     edible
## 373        e    n          y       u           e          e     edible
## 374        e    a          s       m           e          c     edible
## 375        e    l          n       g           e          c     edible
## 376        e    n          y       u           e          e     edible
## 377        e    l          n       m           e          c     edible
## 378        e    l          n       g           e          c     edible
## 379        e    a          s       g           e          c     edible
## 380        p    p          s       u           e          e  poisonous
## 381        e    n          s       g           t          e     edible
## 382        e    a          s       m           e          c     edible
## 383        e    a          n       g           e          c     edible
## 384        e    n          y       d           t          b     edible
## 385        p    p          s       u           e          e  poisonous
## 386        e    l          y       p           e          r     edible
## 387        e    n          a       g           t          e     edible
## 388        e    l          n       m           e          c     edible
## 389        e    a          n       m           e          c     edible
## 390        e    a          s       m           e          c     edible
## 391        e    l          n       m           e          c     edible
## 392        e    a          n       g           e          c     edible
## 393        e    n          v       u           e          e     edible
## 394        e    a          s       g           e          r     edible
## 395        e    n          a       g           t          e     edible
## 396        e    l          n       m           e          c     edible
## 397        e    l          s       m           e          c     edible
## 398        e    n          v       u           e          e     edible
## 399        p    p          s       u           e          e  poisonous
## 400        e    l          n       g           e          c     edible
## 401        e    a          n       m           e          c     edible
## 402        p    p          v       u           e          e  poisonous
## 403        e    l          s       m           e          c     edible
## 404        e    l          s       m           e          c     edible
## 405        e    l          s       m           e          c     edible
## 406        e    l          n       g           e          c     edible
## 407        e    a          s       m           e          c     edible
## 408        e    a          s       g           e          c     edible
## 409        e    l          y       p           e          r     edible
## 410        e    a          s       m           e          c     edible
## 411        e    n          s       g           t          e     edible
## 412        e    l          s       p           e          r     edible
## 413        e    l          y       g           e          r     edible
## 414        p    p          v       g           e          e  poisonous
## 415        e    a          n       g           e          c     edible
## 416        e    l          v       d           t          b     edible
## 417        p    p          s       u           e          e  poisonous
## 418        e    l          n       g           e          c     edible
## 419        e    n          a       g           t          e     edible
## 420        e    l          s       g           e          c     edible
## 421        e    a          s       m           e          c     edible
## 422        p    p          s       u           e          e  poisonous
## 423        e    l          s       g           e          r     edible
## 424        e    l          n       m           e          c     edible
## 425        e    a          v       d           t          b     edible
## 426        e    a          y       p           e          r     edible
## 427        e    a          n       m           e          c     edible
## 428        e    n          a       g           t          e     edible
## 429        e    n          v       u           e          e     edible
## 430        e    a          s       g           e          c     edible
## 431        e    l          y       g           e          r     edible
## 432        e    l          s       g           e          c     edible
## 433        e    l          s       g           e          c     edible
## 434        e    l          v       d           t          b     edible
## 435        e    a          n       m           e          c     edible
## 436        e    a          v       d           t          b     edible
## 437        e    l          n       m           e          c     edible
## 438        e    l          n       m           e          c     edible
## 439        e    a          y       p           e          r     edible
## 440        e    l          s       m           e          c     edible
## 441        e    l          s       m           e          c     edible
## 442        e    a          y       p           e          r     edible
## 443        e    l          n       m           e          c     edible
## 444        e    l          n       m           e          c     edible
## 445        e    l          s       g           e          r     edible
## 446        e    l          n       g           e          c     edible
## 447        e    l          s       g           e          r     edible
## 448        e    l          s       m           e          c     edible
## 449        e    n          y       d           t          b     edible
## 450        e    l          s       m           e          c     edible
## 451        e    l          n       g           e          c     edible
## 452        e    l          n       m           e          c     edible
## 453        e    l          v       d           t          b     edible
## 454        e    l          n       m           e          c     edible
## 455        e    n          a       g           t          e     edible
## 456        e    a          n       g           e          c     edible
## 457        e    l          s       m           e          c     edible
## 458        e    a          y       p           e          r     edible
## 459        e    a          y       p           e          r     edible
## 460        e    a          s       m           e          c     edible
## 461        e    l          s       g           e          r     edible
## 462        e    a          s       g           e          c     edible
## 463        e    a          n       m           e          c     edible
## 464        e    n          v       u           e          e     edible
## 465        e    a          y       g           e          r     edible
## 466        e    a          n       m           e          c     edible
## 467        e    l          n       g           e          c     edible
## 468        e    l          n       g           e          c     edible
## 469        e    a          s       p           e          r     edible
## 470        e    l          n       g           e          c     edible
## 471        e    a          n       m           e          c     edible
## 472        e    a          v       d           t          b     edible
## 473        e    n          y       u           e          e     edible
## 474        e    l          v       d           t          b     edible
## 475        e    n          y       u           e          e     edible
## 476        e    n          y       u           e          e     edible
## 477        e    a          n       g           e          c     edible
## 478        e    a          v       d           t          b     edible
## 479        e    l          s       m           e          c     edible
## 480        e    a          s       m           e          c     edible
## 481        e    l          s       g           e          c     edible
## 482        e    l          v       d           t          b     edible
## 483        e    n          y       u           e          e     edible
## 484        e    a          v       d           t          b     edible
## 485        e    a          y       g           e          r     edible
## 486        e    l          s       m           e          c     edible
## 487        e    n          y       u           e          e     edible
## 488        e    l          s       p           e          r     edible
## 489        e    a          s       p           e          r     edible
## 490        e    a          v       d           t          b     edible
## 491        p    p          s       g           e          e  poisonous
## 492        p    p          v       u           e          e  poisonous
## 493        e    l          s       p           e          r     edible
## 494        e    a          s       g           e          r     edible
## 495        e    a          n       m           e          c     edible
## 496        e    n          a       g           t          e     edible
## 497        e    a          s       g           e          r     edible
## 498        e    a          s       g           e          c     edible
## 499        e    l          n       m           e          c     edible
## 500        e    a          n       g           e          c     edible
## 501        e    a          n       g           e          c     edible
## 502        e    l          n       m           e          c     edible
## 503        e    a          s       m           e          c     edible
## 504        e    a          s       g           e          c     edible
## 505        p    p          v       g           e          e  poisonous
## 506        e    n          s       g           t          e     edible
## 507        e    n          a       g           t          e     edible
## 508        e    a          v       d           t          b     edible
## 509        e    n          v       u           e          e     edible
## 510        e    n          y       u           e          e     edible
## 511        e    a          s       g           e          c     edible
## 512        e    a          v       d           t          b     edible
## 513        e    n          v       u           e          e     edible
## 514        e    n          v       u           e          e     edible
## 515        e    n          a       g           t          e     edible
## 516        e    l          y       p           e          r     edible
## 517        e    a          n       g           e          c     edible
## 518        e    l          s       g           e          c     edible
## 519        e    a          n       g           e          c     edible
## 520        e    l          n       m           e          c     edible
## 521        e    l          s       g           e          c     edible
## 522        e    a          y       p           e          r     edible
## 523        p    p          s       u           e          e  poisonous
## 524        e    n          y       u           e          e     edible
## 525        e    l          s       g           e          c     edible
## 526        e    a          s       p           e          r     edible
## 527        e    a          s       m           e          c     edible
## 528        e    n          y       u           e          e     edible
## 529        e    a          y       p           e          r     edible
## 530        e    a          y       p           e          r     edible
## 531        e    a          s       g           e          c     edible
## 532        p    p          s       g           e          e  poisonous
## 533        e    l          y       p           e          r     edible
## 534        p    p          s       g           e          e  poisonous
## 535        e    n          s       g           t          e     edible
## 536        e    a          s       m           e          c     edible
## 537        e    n          v       u           e          e     edible
## 538        e    l          s       m           e          c     edible
## 539        e    a          v       d           t          b     edible
## 540        e    a          s       m           e          c     edible
## 541        e    n          s       g           t          e     edible
## 542        p    p          s       g           e          e  poisonous
## 543        e    a          s       g           e          r     edible
## 544        e    n          a       g           t          e     edible
## 545        e    a          s       m           e          c     edible
## 546        e    l          s       m           e          c     edible
## 547        e    n          v       u           e          e     edible
## 548        e    l          v       d           t          b     edible
## 549        e    a          n       m           e          c     edible
## 550        e    n          y       u           e          e     edible
## 551        e    n          s       g           t          e     edible
## 552        e    l          s       p           e          r     edible
## 553        e    l          v       d           t          b     edible
## 554        e    l          s       g           e          c     edible
## 555        e    a          y       p           e          r     edible
## 556        p    p          v       u           e          e  poisonous
## 557        e    l          v       d           t          b     edible
## 558        e    l          n       g           e          c     edible
## 559        e    a          n       m           e          c     edible
## 560        e    a          s       g           e          c     edible
## 561        e    a          v       d           t          b     edible
## 562        e    a          v       d           t          b     edible
## 563        e    n          s       g           t          e     edible
## 564        e    a          s       m           e          c     edible
## 565        p    p          v       g           e          e  poisonous
## 566        e    a          n       g           e          c     edible
## 567        e    n          s       g           t          e     edible
## 568        p    p          s       g           e          e  poisonous
## 569        e    a          n       m           e          c     edible
## 570        e    a          n       m           e          c     edible
## 571        e    l          v       d           t          b     edible
## 572        e    a          n       g           e          c     edible
## 573        e    l          n       g           e          c     edible
## 574        e    a          y       g           e          r     edible
## 575        e    l          s       g           e          c     edible
## 576        e    n          v       u           e          e     edible
## 577        e    l          s       g           e          c     edible
## 578        e    l          y       g           e          r     edible
## 579        p    p          s       g           e          e  poisonous
## 580        e    a          n       m           e          c     edible
## 581        e    a          s       m           e          c     edible
## 582        e    l          n       g           e          c     edible
## 583        e    a          y       g           e          r     edible
## 584        e    a          s       g           e          r     edible
## 585        e    a          s       m           e          c     edible
## 586        e    n          v       u           e          e     edible
## 587        e    n          y       u           e          e     edible
## 588        e    n          v       u           e          e     edible
## 589        e    a          n       m           e          c     edible
## 590        p    p          s       u           e          e  poisonous
## 591        e    n          s       g           t          e     edible
## 592        e    l          s       g           e          c     edible
## 593        p    p          s       g           e          e  poisonous
## 594        e    a          n       m           e          c     edible
## 595        p    p          v       u           e          e  poisonous
## 596        e    l          n       m           e          c     edible
## 597        e    l          s       m           e          c     edible
## 598        p    p          s       g           e          e  poisonous
## 599        p    p          s       u           e          e  poisonous
## 600        e    n          a       g           t          e     edible
## 601        e    l          y       g           e          r     edible
## 602        e    n          a       g           t          e     edible
## 603        e    l          s       p           e          r     edible
## 604        e    l          s       m           e          c     edible
## 605        e    a          n       g           e          c     edible
## 606        e    n          s       g           t          e     edible
## 607        e    a          y       g           e          r     edible
## 608        e    l          s       m           e          c     edible
## 609        e    n          v       u           e          e     edible
## 610        e    n          a       g           t          e     edible
## 611        e    n          s       g           t          e     edible
## 612        e    n          a       g           t          e     edible
## 613        p    p          s       u           e          e  poisonous
## 614        e    l          s       g           e          r     edible
## 615        e    l          s       g           e          c     edible
## 616        e    n          a       g           t          e     edible
## 617        e    l          s       g           e          c     edible
## 618        e    a          n       m           e          c     edible
## 619        e    n          y       u           e          e     edible
## 620        e    l          s       g           e          r     edible
## 621        e    l          n       g           e          c     edible
## 622        e    l          v       d           t          b     edible
## 623        e    a          s       p           e          r     edible
## 624        e    n          y       u           e          e     edible
## 625        e    l          s       m           e          c     edible
## 626        e    l          v       d           t          b     edible
## 627        e    n          y       u           e          e     edible
## 628        e    a          s       g           e          c     edible
## 629        e    a          n       g           e          c     edible
## 630        e    n          s       g           t          e     edible
## 631        e    a          n       m           e          c     edible
## 632        e    n          v       d           t          b     edible
## 633        e    l          s       g           e          r     edible
## 634        e    a          s       g           e          r     edible
## 635        e    a          s       m           e          c     edible
## 636        e    a          s       g           e          r     edible
## 637        e    l          n       m           e          c     edible
## 638        e    n          s       g           t          e     edible
## 639        e    a          s       m           e          c     edible
## 640        e    l          n       m           e          c     edible
## 641        e    a          y       g           e          r     edible
## 642        e    l          s       p           e          r     edible
## 643        e    a          y       g           e          r     edible
## 644        e    l          s       p           e          r     edible
## 645        e    l          v       d           t          b     edible
## 646        e    a          s       m           e          c     edible
## 647        e    l          n       m           e          c     edible
## 648        e    a          s       g           e          c     edible
## 649        e    l          v       d           t          b     edible
## 650        e    a          s       g           e          c     edible
## 651        e    l          n       m           e          c     edible
## 652        e    a          y       g           e          r     edible
## 653        p    p          s       g           e          e  poisonous
## 654        p    p          v       u           e          e  poisonous
## 655        e    l          s       g           e          c     edible
## 656        e    n          s       g           t          e     edible
## 657        e    a          n       g           e          c     edible
## 658        e    l          y       p           e          r     edible
## 659        e    n          y       u           e          e     edible
## 660        e    a          s       g           e          c     edible
## 661        e    l          s       m           e          c     edible
## 662        p    p          s       g           e          e  poisonous
## 663        p    p          s       g           e          e  poisonous
## 664        e    l          s       g           e          c     edible
## 665        e    a          n       m           e          c     edible
## 666        e    a          s       g           e          r     edible
## 667        e    l          y       g           e          r     edible
## 668        e    l          y       p           e          r     edible
## 669        e    a          n       g           e          c     edible
## 670        e    a          s       g           e          c     edible
## 671        e    n          v       u           e          e     edible
## 672        e    n          a       g           t          e     edible
## 673        e    l          v       d           t          b     edible
## 674        e    l          s       p           e          r     edible
## 675        e    n          y       u           e          e     edible
## 676        e    n          v       u           e          e     edible
## 677        e    l          y       g           e          r     edible
## 678        e    l          y       p           e          r     edible
## 679        e    a          s       m           e          c     edible
## 680        e    l          v       d           t          b     edible
## 681        e    a          n       m           e          c     edible
## 682        e    a          v       d           t          b     edible
## 683        e    a          n       g           e          c     edible
## 684        e    n          v       d           t          b     edible
## 685        e    a          n       m           e          c     edible
## 686        e    n          v       u           e          e     edible
## 687        e    a          s       m           e          c     edible
## 688        e    l          n       m           e          c     edible
## 689        e    a          s       g           e          c     edible
## 690        e    a          s       g           e          c     edible
## 691        e    l          s       g           e          c     edible
## 692        e    a          s       p           e          r     edible
## 693        e    n          a       g           t          e     edible
## 694        p    p          s       g           e          e  poisonous
## 695        e    a          s       g           e          c     edible
## 696        e    a          s       m           e          c     edible
## 697        p    p          v       g           e          e  poisonous
## 698        p    p          v       u           e          e  poisonous
## 699        e    n          a       g           t          e     edible
## 700        p    p          s       g           e          e  poisonous
## 701        e    n          a       g           t          e     edible
## 702        e    l          s       p           e          r     edible
## 703        e    l          n       m           e          c     edible
## 704        e    l          s       p           e          r     edible
## 705        e    l          y       p           e          r     edible
## 706        e    l          n       m           e          c     edible
## 707        e    n          y       u           e          e     edible
## 708        e    a          n       m           e          c     edible
## 709        e    a          n       m           e          c     edible
## 710        e    a          s       p           e          r     edible
## 711        e    n          a       g           t          e     edible
## 712        e    l          s       m           e          c     edible
## 713        e    l          n       g           e          c     edible
## 714        e    l          s       g           e          c     edible
## 715        e    a          s       m           e          c     edible
## 716        e    l          s       m           e          c     edible
## 717        e    a          s       p           e          r     edible
## 718        e    a          s       g           e          r     edible
## 719        e    n          v       u           e          e     edible
## 720        e    a          s       g           e          r     edible
## 721        e    a          n       g           e          c     edible
## 722        e    l          v       d           t          b     edible
## 723        e    n          a       g           t          e     edible
## 724        e    a          s       g           e          r     edible
## 725        p    p          v       g           e          e  poisonous
## 726        e    l          n       g           e          c     edible
## 727        e    n          s       g           t          e     edible
## 728        e    a          s       m           e          c     edible
## 729        e    l          s       m           e          c     edible
## 730        e    l          y       g           e          r     edible
## 731        e    n          s       g           t          e     edible
## 732        p    p          s       g           e          e  poisonous
## 733        p    p          s       u           e          e  poisonous
## 734        e    l          n       g           e          c     edible
## 735        e    a          s       g           e          c     edible
## 736        e    a          v       d           t          b     edible
## 737        p    p          s       u           e          e  poisonous
## 738        e    l          s       g           e          c     edible
## 739        e    n          v       u           e          e     edible
## 740        e    n          v       u           e          e     edible
## 741        e    a          s       m           e          c     edible
## 742        e    a          s       g           e          r     edible
## 743        e    a          n       m           e          c     edible
## 744        e    l          s       p           e          r     edible
## 745        e    l          n       g           e          c     edible
## 746        e    l          s       g           e          c     edible
## 747        e    a          s       m           e          c     edible
## 748        p    p          v       u           e          e  poisonous
## 749        e    a          v       d           t          b     edible
## 750        e    a          s       p           e          r     edible
## 751        e    l          n       g           e          c     edible
## 752        e    a          v       d           t          b     edible
## 753        e    l          s       g           e          c     edible
## 754        e    a          n       m           e          c     edible
## 755        e    a          n       g           e          c     edible
## 756        e    l          y       g           e          r     edible
## 757        e    n          a       g           t          e     edible
## 758        e    a          n       m           e          c     edible
## 759        e    a          y       p           e          r     edible
## 760        e    l          n       g           e          c     edible
## 761        e    l          y       g           e          r     edible
## 762        e    l          n       g           e          c     edible
## 763        e    n          v       u           e          e     edible
## 764        e    l          s       p           e          r     edible
## 765        e    n          a       g           t          e     edible
## 766        e    l          v       d           t          b     edible
## 767        e    n          y       u           e          e     edible
## 768        e    a          s       m           e          c     edible
## 769        e    a          n       m           e          c     edible
## 770        e    a          n       g           e          c     edible
## 771        e    l          s       m           e          c     edible
## 772        e    a          n       m           e          c     edible
## 773        e    a          v       d           t          b     edible
## 774        e    n          a       g           t          e     edible
## 775        e    a          s       g           e          r     edible
## 776        p    p          s       u           e          e  poisonous
## 777        e    a          y       g           e          r     edible
## 778        e    l          n       g           e          c     edible
## 779        e    l          n       m           e          c     edible
## 780        e    a          s       m           e          c     edible
## 781        e    n          y       u           e          e     edible
## 782        e    l          s       m           e          c     edible
## 783        e    l          s       m           e          c     edible
## 784        e    a          n       g           e          c     edible
## 785        p    p          v       g           e          e  poisonous
## 786        e    n          v       u           e          e     edible
## 787        e    l          n       g           e          c     edible
## 788        p    p          s       g           e          e  poisonous
## 789        e    l          y       p           e          r     edible
## 790        e    l          s       g           e          c     edible
## 791        e    l          y       p           e          r     edible
## 792        e    a          n       g           e          c     edible
## 793        e    a          n       g           e          c     edible
## 794        p    p          v       g           e          e  poisonous
## 795        p    p          s       u           e          e  poisonous
## 796        e    l          n       g           e          c     edible
## 797        e    n          s       g           t          e     edible
## 798        p    p          v       g           e          e  poisonous
## 799        e    l          s       p           e          r     edible
## 800        e    a          n       m           e          c     edible
## 801        e    a          n       g           e          c     edible
## 802        p    p          v       u           e          e  poisonous
## 803        e    l          n       g           e          c     edible
## 804        e    a          n       g           e          c     edible
## 805        e    l          s       g           e          r     edible
## 806        e    a          s       g           e          c     edible
## 807        e    a          y       g           e          r     edible
## 808        e    l          s       m           e          c     edible
## 809        e    l          v       d           t          b     edible
## 810        e    a          n       m           e          c     edible
## 811        e    a          n       m           e          c     edible
## 812        p    p          v       u           e          e  poisonous
## 813        p    p          v       g           e          e  poisonous
## 814        p    p          v       u           e          e  poisonous
## 815        e    a          s       m           e          c     edible
## 816        e    a          y       g           e          r     edible
## 817        e    a          y       g           e          r     edible
## 818        e    a          v       d           t          b     edible
## 819        e    l          n       g           e          c     edible
## 820        e    l          n       m           e          c     edible
## 821        e    n          v       u           e          e     edible
## 822        e    a          s       m           e          c     edible
## 823        e    l          s       g           e          c     edible
## 824        e    a          s       p           e          r     edible
## 825        e    l          s       m           e          c     edible
## 826        e    l          v       d           t          b     edible
## 827        e    a          v       d           t          b     edible
## 828        e    l          s       m           e          c     edible
## 829        e    l          v       d           t          b     edible
## 830        e    n          v       u           e          e     edible
## 831        e    a          v       d           t          b     edible
## 832        e    l          y       g           e          r     edible
## 833        e    l          s       g           e          r     edible
## 834        e    l          y       p           e          r     edible
## 835        p    p          v       g           e          e  poisonous
## 836        e    l          s       m           e          c     edible
## 837        p    p          s       u           e          e  poisonous
## 838        e    a          s       g           e          c     edible
## 839        e    a          s       g           e          c     edible
## 840        e    a          v       d           t          b     edible
## 841        p    p          v       g           e          e  poisonous
## 842        e    a          s       g           e          c     edible
## 843        e    n          y       u           e          e     edible
## 844        e    a          n       g           e          c     edible
## 845        e    n          s       g           t          e     edible
## 846        e    a          s       m           e          c     edible
## 847        e    l          s       g           e          c     edible
## 848        e    l          n       m           e          c     edible
## 849        e    l          v       d           t          b     edible
## 850        e    l          s       g           e          c     edible
## 851        e    a          s       g           e          r     edible
## 852        e    n          y       u           e          e     edible
## 853        e    n          a       g           t          e     edible
## 854        e    n          v       u           e          e     edible
## 855        e    l          s       p           e          r     edible
## 856        e    l          v       d           t          b     edible
## 857        e    a          s       g           e          c     edible
## 858        e    a          n       m           e          c     edible
## 859        p    p          v       g           e          e  poisonous
## 860        e    l          y       p           e          r     edible
## 861        e    a          s       g           e          c     edible
## 862        e    a          s       g           e          r     edible
## 863        e    a          n       g           e          c     edible
## 864        e    a          s       m           e          c     edible
## 865        e    l          s       g           e          c     edible
## 866        e    n          v       u           e          e     edible
## 867        e    l          y       p           e          r     edible
## 868        e    n          y       u           e          e     edible
## 869        e    l          n       g           e          c     edible
## 870        e    a          y       p           e          r     edible
## 871        e    l          n       g           e          c     edible
## 872        e    a          s       m           e          c     edible
## 873        e    n          v       d           t          b     edible
## 874        e    a          s       m           e          c     edible
## 875        e    l          s       p           e          r     edible
## 876        e    a          n       m           e          c     edible
## 877        e    l          n       g           e          c     edible
## 878        e    l          y       g           e          r     edible
## 879        e    l          n       g           e          c     edible
## 880        e    a          v       d           t          b     edible
## 881        e    n          s       g           t          e     edible
## 882        e    a          n       g           e          c     edible
## 883        e    l          n       g           e          c     edible
## 884        e    l          s       g           e          r     edible
## 885        e    a          v       d           t          b     edible
## 886        e    a          s       g           e          c     edible
## 887        e    a          y       g           e          r     edible
## 888        e    a          y       p           e          r     edible
## 889        e    l          n       g           e          c     edible
## 890        e    n          y       d           t          b     edible
## 891        e    l          y       g           e          r     edible
## 892        e    a          n       g           e          c     edible
## 893        e    a          s       m           e          c     edible
## 894        e    l          s       m           e          c     edible
## 895        e    l          s       g           e          r     edible
## 896        e    a          n       g           e          c     edible
## 897        e    l          n       m           e          c     edible
## 898        e    l          s       m           e          c     edible
## 899        e    l          s       g           e          c     edible
## 900        e    l          y       p           e          r     edible
## 901        e    n          a       g           t          e     edible
## 902        e    n          s       g           t          e     edible
## 903        e    n          s       g           t          e     edible
## 904        e    l          n       m           e          c     edible
## 905        e    n          s       g           t          e     edible
## 906        p    p          s       g           e          e  poisonous
## 907        e    n          s       g           t          e     edible
## 908        p    p          v       u           e          e  poisonous
## 909        p    p          v       g           e          e  poisonous
## 910        e    l          n       g           e          c     edible
## 911        e    n          a       g           t          e     edible
## 912        e    l          n       g           e          c     edible
## 913        e    n          a       g           t          e     edible
## 914        e    n          s       g           t          e     edible
## 915        e    a          n       g           e          c     edible
## 916        e    l          s       m           e          c     edible
## 917        e    n          y       d           t          b     edible
## 918        e    n          a       g           t          e     edible
## 919        e    n          s       g           t          e     edible
## 920        e    n          a       g           t          e     edible
## 921        e    n          a       g           t          e     edible
## 922        e    l          n       g           e          c     edible
## 923        e    l          v       d           t          b     edible
## 924        e    n          s       g           t          e     edible
## 925        e    n          a       g           t          e     edible
## 926        e    n          a       g           t          e     edible
## 927        p    p          s       u           e          e  poisonous
## 928        e    n          y       u           e          e     edible
## 929        e    a          n       m           e          c     edible
## 930        e    n          a       g           t          e     edible
## 931        e    n          s       g           t          e     edible
## 932        p    p          v       g           e          e  poisonous
## 933        e    l          s       g           e          c     edible
## 934        e    n          y       u           e          e     edible
## 935        e    n          s       g           t          e     edible
## 936        e    a          n       m           e          c     edible
## 937        e    n          s       g           t          e     edible
## 938        e    n          a       g           t          e     edible
## 939        e    n          y       d           t          b     edible
## 940        e    a          n       g           e          c     edible
## 941        e    n          s       g           t          e     edible
## 942        p    p          s       g           e          e  poisonous
## 943        e    n          s       g           t          e     edible
## 944        e    n          v       d           t          b     edible
## 945        e    n          a       g           t          e     edible
## 946        e    n          s       g           t          e     edible
## 947        e    l          s       g           e          c     edible
## 948        e    n          a       g           t          e     edible
## 949        p    p          v       u           e          e  poisonous
## 950        p    p          s       u           e          e  poisonous
## 951        e    l          s       g           e          c     edible
## 952        e    n          a       g           t          e     edible
## 953        e    n          a       g           t          e     edible
## 954        e    n          s       g           t          e     edible
## 955        e    l          s       m           e          c     edible
## 956        p    p          v       u           e          e  poisonous
## 957        e    n          v       d           t          b     edible
## 958        e    l          v       d           t          b     edible
## 959        e    l          n       m           e          c     edible
## 960        e    n          a       g           t          e     edible
## 961        e    n          a       g           t          e     edible
## 962        e    n          v       d           t          b     edible
## 963        e    n          y       d           t          b     edible
## 964        e    n          s       g           t          e     edible
## 965        e    n          s       g           t          e     edible
## 966        p    p          s       g           e          e  poisonous
## 967        e    n          y       d           t          b     edible
## 968        e    n          s       g           t          e     edible
## 969        e    n          s       g           t          e     edible
## 970        e    n          s       g           t          e     edible
## 971        e    n          v       d           t          b     edible
## 972        e    n          v       d           t          b     edible
## 973        e    n          s       g           t          e     edible
## 974        e    n          y       d           t          b     edible
## 975        e    n          s       g           t          e     edible
## 976        e    l          n       g           e          c     edible
## 977        e    n          y       d           t          b     edible
## 978        e    l          s       g           e          c     edible
## 979        e    n          a       g           t          e     edible
## 980        e    n          y       d           t          b     edible
## 981        e    l          s       m           e          c     edible
## 982        e    n          s       g           t          e     edible
## 983        e    n          s       g           t          e     edible
## 984        p    p          s       u           e          e  poisonous
## 985        e    n          s       g           t          e     edible
## 986        e    n          a       g           t          e     edible
## 987        e    n          a       g           t          e     edible
## 988        e    n          a       g           t          e     edible
## 989        e    l          n       g           e          c     edible
## 990        e    l          n       m           e          c     edible
## 991        e    n          a       g           t          e     edible
## 992        e    n          s       g           t          e     edible
## 993        e    n          v       u           e          e     edible
## 994        e    n          s       g           t          e     edible
## 995        e    n          a       g           t          e     edible
## 996        e    l          s       m           e          c     edible
## 997        e    a          v       d           t          b     edible
## 998        e    l          n       m           e          c     edible
## 999        p    p          v       u           e          e  poisonous
## 1000       e    n          y       d           t          b     edible
## 1001       e    l          y       g           e          r     edible
## 1002       e    n          s       g           t          e     edible
## 1003       p    p          v       g           e          e  poisonous
## 1004       e    l          y       g           e          r     edible
## 1005       e    n          a       g           t          e     edible
## 1006       e    n          a       g           t          e     edible
## 1007       e    n          s       g           t          e     edible
## 1008       e    n          a       g           t          e     edible
## 1009       e    l          s       g           e          c     edible
## 1010       e    a          s       m           e          c     edible
## 1011       e    n          s       g           t          e     edible
## 1012       e    a          s       p           e          r     edible
## 1013       e    n          s       g           t          e     edible
## 1014       e    n          s       g           t          e     edible
## 1015       e    a          v       d           t          b     edible
## 1016       e    l          s       g           e          r     edible
## 1017       e    n          y       d           t          b     edible
## 1018       p    p          s       g           e          e  poisonous
## 1019       e    n          v       d           t          b     edible
## 1020       e    n          a       g           t          e     edible
## 1021       e    a          n       m           e          c     edible
## 1022       e    a          n       g           e          c     edible
## 1023       e    a          s       m           e          c     edible
## 1024       p    p          v       u           e          e  poisonous
## 1025       p    p          s       g           e          e  poisonous
## 1026       e    n          v       u           e          e     edible
## 1027       e    l          v       d           t          b     edible
## 1028       e    l          n       m           e          c     edible
## 1029       e    n          a       g           t          e     edible
## 1030       e    n          y       d           t          b     edible
## 1031       p    p          v       g           e          e  poisonous
## 1032       e    n          s       g           t          e     edible
## 1033       e    n          s       g           t          e     edible
## 1034       e    n          s       g           t          e     edible
## 1035       e    n          a       g           t          e     edible
## 1036       e    a          s       m           e          c     edible
## 1037       e    a          v       d           t          b     edible
## 1038       e    n          y       u           e          e     edible
## 1039       p    p          s       u           e          e  poisonous
## 1040       e    a          y       p           e          r     edible
## 1041       e    a          s       p           e          r     edible
## 1042       e    n          a       g           t          e     edible
## 1043       e    n          v       d           t          b     edible
## 1044       e    n          a       g           t          e     edible
## 1045       e    a          s       g           e          c     edible
## 1046       e    n          s       g           t          e     edible
## 1047       p    p          s       u           e          e  poisonous
## 1048       e    n          v       d           t          b     edible
## 1049       e    n          a       g           t          e     edible
## 1050       e    n          v       d           t          b     edible
## 1051       e    n          y       d           t          b     edible
## 1052       e    n          a       g           t          e     edible
## 1053       e    l          s       p           e          r     edible
## 1054       e    n          s       g           t          e     edible
## 1055       e    l          s       g           e          c     edible
## 1056       e    l          v       d           t          b     edible
## 1057       e    n          s       g           t          e     edible
## 1058       e    l          n       g           e          c     edible
## 1059       e    n          s       g           t          e     edible
## 1060       e    n          a       g           t          e     edible
## 1061       e    l          v       d           t          b     edible
## 1062       e    n          s       g           t          e     edible
## 1063       e    n          s       g           t          e     edible
## 1064       p    p          s       u           e          e  poisonous
## 1065       e    l          v       d           t          b     edible
## 1066       e    a          s       g           e          c     edible
## 1067       e    n          a       g           t          e     edible
## 1068       e    n          v       d           t          b     edible
## 1069       e    l          s       g           e          r     edible
## 1070       e    n          a       g           t          e     edible
## 1071       p    p          v       g           e          e  poisonous
## 1072       e    a          s       g           e          c     edible
## 1073       e    n          y       d           t          b     edible
## 1074       e    l          s       p           e          r     edible
## 1075       e    n          a       g           t          e     edible
## 1076       e    n          y       u           e          e     edible
## 1077       p    p          v       g           e          e  poisonous
## 1078       e    n          s       g           t          e     edible
## 1079       e    l          s       p           e          r     edible
## 1080       e    n          a       g           t          e     edible
## 1081       p    p          v       u           e          e  poisonous
## 1082       e    l          n       m           e          c     edible
## 1083       e    n          s       g           t          e     edible
## 1084       e    l          n       g           e          c     edible
## 1085       e    n          s       g           t          e     edible
## 1086       e    l          n       m           e          c     edible
## 1087       e    l          n       m           e          c     edible
## 1088       p    p          v       g           e          e  poisonous
## 1089       e    l          s       g           e          c     edible
## 1090       e    n          y       u           e          e     edible
## 1091       e    a          y       g           e          r     edible
## 1092       e    n          a       g           t          e     edible
## 1093       e    l          v       d           t          b     edible
## 1094       e    n          a       g           t          e     edible
## 1095       p    p          v       u           e          e  poisonous
## 1096       e    n          a       g           t          e     edible
## 1097       e    n          a       g           t          e     edible
## 1098       e    n          s       g           t          e     edible
## 1099       p    p          s       g           e          e  poisonous
## 1100       e    n          a       g           t          e     edible
## 1101       e    n          s       g           t          e     edible
## 1102       e    n          s       g           t          e     edible
## 1103       p    p          s       g           e          e  poisonous
## 1104       e    n          a       g           t          e     edible
## 1105       e    n          a       g           t          e     edible
## 1106       p    p          v       u           e          e  poisonous
## 1107       e    n          a       g           t          e     edible
## 1108       e    l          n       g           e          c     edible
## 1109       e    n          a       g           t          e     edible
## 1110       e    n          a       g           t          e     edible
## 1111       p    p          s       g           e          e  poisonous
## 1112       e    a          s       g           e          r     edible
## 1113       e    n          a       g           t          e     edible
## 1114       e    l          s       g           e          r     edible
## 1115       e    n          s       g           t          e     edible
## 1116       e    n          s       g           t          e     edible
## 1117       e    n          s       g           t          e     edible
## 1118       e    n          s       g           t          e     edible
## 1119       e    n          s       g           t          e     edible
## 1120       e    n          s       g           t          e     edible
## 1121       e    n          a       g           t          e     edible
## 1122       e    n          s       g           t          e     edible
## 1123       e    n          v       d           t          b     edible
## 1124       e    a          v       d           t          b     edible
## 1125       e    n          s       g           t          e     edible
## 1126       e    n          a       g           t          e     edible
## 1127       e    a          n       g           e          c     edible
## 1128       e    n          a       g           t          e     edible
## 1129       e    n          a       g           t          e     edible
## 1130       p    p          v       u           e          e  poisonous
## 1131       e    n          a       g           t          e     edible
## 1132       p    p          s       g           e          e  poisonous
## 1133       e    n          s       g           t          e     edible
## 1134       e    a          n       g           e          c     edible
## 1135       e    n          s       g           t          e     edible
## 1136       e    n          y       d           t          b     edible
## 1137       e    l          s       g           e          c     edible
## 1138       e    n          a       g           t          e     edible
## 1139       e    n          a       g           t          e     edible
## 1140       e    n          a       g           t          e     edible
## 1141       e    n          v       d           t          b     edible
## 1142       e    n          s       g           t          e     edible
## 1143       e    n          a       g           t          e     edible
## 1144       e    n          a       g           t          e     edible
## 1145       e    n          s       g           t          e     edible
## 1146       e    n          s       g           t          e     edible
## 1147       e    n          a       g           t          e     edible
## 1148       e    n          a       g           t          e     edible
## 1149       e    n          a       g           t          e     edible
## 1150       e    n          a       g           t          e     edible
## 1151       e    a          y       p           e          r     edible
## 1152       p    p          v       g           e          e  poisonous
## 1153       e    n          a       g           t          e     edible
## 1154       p    p          v       g           e          e  poisonous
## 1155       e    a          s       m           e          c     edible
## 1156       e    n          s       g           t          e     edible
## 1157       e    n          a       g           t          e     edible
## 1158       e    n          s       g           t          e     edible
## 1159       e    n          s       g           t          e     edible
## 1160       e    a          n       g           e          c     edible
## 1161       e    n          s       g           t          e     edible
## 1162       e    n          v       d           t          b     edible
## 1163       e    a          s       p           e          r     edible
## 1164       e    n          s       g           t          e     edible
## 1165       e    a          n       m           e          c     edible
## 1166       p    p          v       g           e          e  poisonous
## 1167       e    n          y       d           t          b     edible
## 1168       e    n          s       g           t          e     edible
## 1169       e    a          n       m           e          c     edible
## 1170       e    n          s       g           t          e     edible
## 1171       e    n          v       d           t          b     edible
## 1172       e    n          a       g           t          e     edible
## 1173       e    n          v       u           e          e     edible
## 1174       e    n          v       u           e          e     edible
## 1175       e    n          y       u           e          e     edible
## 1176       e    l          s       m           e          c     edible
## 1177       e    n          v       u           e          e     edible
## 1178       e    n          a       g           t          e     edible
## 1179       e    a          s       p           e          r     edible
## 1180       e    l          y       p           e          r     edible
## 1181       e    l          y       g           e          r     edible
## 1182       e    n          a       g           t          e     edible
## 1183       e    a          n       g           e          c     edible
## 1184       e    a          s       g           e          c     edible
## 1185       e    n          a       g           t          e     edible
## 1186       e    n          a       g           t          e     edible
## 1187       p    p          v       u           e          e  poisonous
## 1188       e    l          s       g           e          c     edible
## 1189       e    n          s       g           t          e     edible
## 1190       e    n          s       g           t          e     edible
## 1191       e    l          s       m           e          c     edible
## 1192       e    n          v       d           t          b     edible
## 1193       e    l          s       p           e          r     edible
## 1194       e    a          n       g           e          c     edible
## 1195       p    p          s       g           e          e  poisonous
## 1196       e    n          s       g           t          e     edible
## 1197       e    a          n       m           e          c     edible
## 1198       e    l          n       g           e          c     edible
## 1199       e    l          s       m           e          c     edible
## 1200       e    l          n       g           e          c     edible
## 1201       e    a          n       g           e          c     edible
## 1202       e    a          n       g           e          c     edible
## 1203       e    n          s       g           t          e     edible
## 1204       p    p          s       g           e          e  poisonous
## 1205       e    n          a       g           t          e     edible
## 1206       e    n          a       g           t          e     edible
## 1207       p    p          s       u           e          e  poisonous
## 1208       e    n          a       g           t          e     edible
## 1209       e    n          s       g           t          e     edible
## 1210       e    n          a       g           t          e     edible
## 1211       e    n          a       g           t          e     edible
## 1212       e    a          y       g           e          r     edible
## 1213       e    n          a       g           t          e     edible
## 1214       e    n          a       g           t          e     edible
## 1215       p    p          v       g           e          e  poisonous
## 1216       e    n          a       g           t          e     edible
## 1217       e    n          s       g           t          e     edible
## 1218       e    n          a       g           t          e     edible
## 1219       e    n          s       g           t          e     edible
## 1220       e    a          s       g           e          r     edible
## 1221       e    n          s       g           t          e     edible
## 1222       e    n          a       g           t          e     edible
## 1223       e    n          s       g           t          e     edible
## 1224       e    n          a       g           t          e     edible
## 1225       e    n          s       g           t          e     edible
## 1226       e    n          v       d           t          b     edible
## 1227       e    n          a       g           t          e     edible
## 1228       p    p          v       g           e          e  poisonous
## 1229       e    n          y       d           t          b     edible
## 1230       e    n          s       g           t          e     edible
## 1231       p    p          s       g           e          e  poisonous
## 1232       e    n          a       g           t          e     edible
## 1233       e    n          a       g           t          e     edible
## 1234       e    n          a       g           t          e     edible
## 1235       e    n          a       g           t          e     edible
## 1236       e    n          a       g           t          e     edible
## 1237       e    n          s       g           t          e     edible
## 1238       e    n          s       g           t          e     edible
## 1239       e    n          s       g           t          e     edible
## 1240       p    p          v       u           e          e  poisonous
## 1241       e    n          a       g           t          e     edible
## 1242       p    p          s       g           e          e  poisonous
## 1243       p    p          s       u           e          e  poisonous
## 1244       e    n          s       g           t          e     edible
## 1245       e    n          a       g           t          e     edible
## 1246       e    n          a       g           t          e     edible
## 1247       e    n          a       g           t          e     edible
## 1248       e    n          a       g           t          e     edible
## 1249       e    n          a       g           t          e     edible
## 1250       e    n          y       d           t          b     edible
## 1251       e    n          v       d           t          b     edible
## 1252       e    n          a       g           t          e     edible
## 1253       p    p          v       g           e          e  poisonous
## 1254       p    p          s       g           e          e  poisonous
## 1255       e    n          a       g           t          e     edible
## 1256       p    p          s       g           e          e  poisonous
## 1257       e    n          s       g           t          e     edible
## 1258       e    n          a       g           t          e     edible
## 1259       p    p          v       g           e          e  poisonous
## 1260       p    p          v       g           e          e  poisonous
## 1261       p    p          v       g           e          e  poisonous
## 1262       p    p          s       g           e          e  poisonous
## 1263       e    n          a       g           t          e     edible
## 1264       e    n          v       d           t          b     edible
## 1265       e    n          a       g           t          e     edible
## 1266       e    n          a       g           t          e     edible
## 1267       p    p          v       u           e          e  poisonous
## 1268       e    n          s       g           t          e     edible
## 1269       e    n          y       d           t          b     edible
## 1270       e    n          s       g           t          e     edible
## 1271       e    n          s       g           t          e     edible
## 1272       p    p          s       g           e          e  poisonous
## 1273       e    n          a       g           t          e     edible
## 1274       e    n          s       g           t          e     edible
## 1275       p    p          s       u           e          e  poisonous
## 1276       e    n          a       g           t          e     edible
## 1277       e    n          s       g           t          e     edible
## 1278       e    n          s       g           t          e     edible
## 1279       e    n          s       g           t          e     edible
## 1280       e    a          n       m           e          c     edible
## 1281       e    n          a       g           t          e     edible
## 1282       e    n          s       g           t          e     edible
## 1283       e    n          s       g           t          e     edible
## 1284       e    n          a       g           t          e     edible
## 1285       e    n          a       g           t          e     edible
## 1286       p    p          s       u           e          e  poisonous
## 1287       e    n          s       g           t          e     edible
## 1288       e    n          y       d           t          b     edible
## 1289       e    n          a       g           t          e     edible
## 1290       e    n          v       d           t          b     edible
## 1291       e    n          a       g           t          e     edible
## 1292       e    n          a       g           t          e     edible
## 1293       p    p          v       g           e          e  poisonous
## 1294       p    p          v       g           e          e  poisonous
## 1295       e    n          a       g           t          e     edible
## 1296       e    n          v       d           t          b     edible
## 1297       e    n          s       g           t          e     edible
## 1298       e    a          s       p           e          r     edible
## 1299       e    n          a       g           t          e     edible
## 1300       e    n          a       g           t          e     edible
## 1301       e    n          a       g           t          e     edible
## 1302       e    n          s       g           t          e     edible
## 1303       e    n          y       d           t          b     edible
## 1304       e    n          a       g           t          e     edible
## 1305       e    n          s       g           t          e     edible
## 1306       e    n          s       g           t          e     edible
## 1307       e    n          s       g           t          e     edible
## 1308       e    n          a       g           t          e     edible
## 1309       e    n          s       g           t          e     edible
## 1310       e    n          s       g           t          e     edible
## 1311       e    n          a       g           t          e     edible
## 1312       p    p          s       g           e          e  poisonous
## 1313       e    n          a       g           t          e     edible
## 1314       e    l          n       g           e          c     edible
## 1315       e    n          s       g           t          e     edible
## 1316       e    n          s       g           t          e     edible
## 1317       e    n          y       d           t          b     edible
## 1318       e    l          s       m           e          c     edible
## 1319       e    n          s       g           t          e     edible
## 1320       e    n          y       d           t          b     edible
## 1321       p    p          s       g           e          e  poisonous
## 1322       e    n          s       g           t          e     edible
## 1323       p    p          s       u           e          e  poisonous
## 1324       e    n          a       g           t          e     edible
## 1325       e    n          a       g           t          e     edible
## 1326       e    l          n       g           e          c     edible
## 1327       e    n          a       g           t          e     edible
## 1328       e    n          a       g           t          e     edible
## 1329       e    n          s       g           t          e     edible
## 1330       e    n          s       g           t          e     edible
## 1331       e    n          a       g           t          e     edible
## 1332       p    p          v       g           e          e  poisonous
## 1333       e    n          a       g           t          e     edible
## 1334       e    n          a       g           t          e     edible
## 1335       e    n          y       d           t          b     edible
## 1336       e    n          a       g           t          e     edible
## 1337       e    n          y       d           t          b     edible
## 1338       e    a          n       g           e          c     edible
## 1339       e    n          s       g           t          e     edible
## 1340       e    n          a       g           t          e     edible
## 1341       e    n          a       g           t          e     edible
## 1342       p    p          s       u           e          e  poisonous
## 1343       e    n          y       d           t          b     edible
## 1344       e    n          s       g           t          e     edible
## 1345       e    n          a       g           t          e     edible
## 1346       p    p          v       g           e          e  poisonous
## 1347       e    n          s       g           t          e     edible
## 1348       e    n          y       d           t          b     edible
## 1349       e    n          v       d           t          b     edible
## 1350       e    n          v       d           t          b     edible
## 1351       e    n          s       g           t          e     edible
## 1352       e    n          s       g           t          e     edible
## 1353       e    n          a       g           t          e     edible
## 1354       e    n          a       g           t          e     edible
## 1355       e    n          a       g           t          e     edible
## 1356       e    n          s       g           t          e     edible
## 1357       e    n          a       g           t          e     edible
## 1358       e    n          a       g           t          e     edible
## 1359       e    n          s       g           t          e     edible
## 1360       e    n          a       g           t          e     edible
## 1361       p    p          v       u           e          e  poisonous
## 1362       e    n          a       g           t          e     edible
## 1363       e    n          s       g           t          e     edible
## 1364       e    n          a       g           t          e     edible
## 1365       e    n          s       g           t          e     edible
## 1366       e    n          a       g           t          e     edible
## 1367       e    n          a       g           t          e     edible
## 1368       e    n          v       d           t          b     edible
## 1369       e    n          a       g           t          e     edible
## 1370       e    n          s       g           t          e     edible
## 1371       e    n          s       g           t          e     edible
## 1372       e    n          s       g           t          e     edible
## 1373       e    l          s       g           e          c     edible
## 1374       p    p          s       g           e          e  poisonous
## 1375       p    p          v       g           e          e  poisonous
## 1376       e    n          s       g           t          e     edible
## 1377       e    n          s       g           t          e     edible
## 1378       p    p          s       g           e          e  poisonous
## 1379       e    n          s       g           t          e     edible
## 1380       p    p          v       u           e          e  poisonous
## 1381       e    n          a       g           t          e     edible
## 1382       p    p          v       u           e          e  poisonous
## 1383       e    n          a       g           t          e     edible
## 1384       e    n          a       g           t          e     edible
## 1385       e    n          a       g           t          e     edible
## 1386       e    n          s       g           t          e     edible
## 1387       e    n          v       d           t          b     edible
## 1388       e    n          v       d           t          b     edible
## 1389       e    n          s       g           t          e     edible
## 1390       e    n          y       d           t          b     edible
## 1391       e    n          s       g           t          e     edible
## 1392       e    n          a       g           t          e     edible
## 1393       e    n          s       g           t          e     edible
## 1394       e    n          s       g           t          e     edible
## 1395       e    n          y       d           t          b     edible
## 1396       e    n          s       g           t          e     edible
## 1397       e    n          s       g           t          e     edible
## 1398       e    n          s       g           t          e     edible
## 1399       p    p          s       g           e          e  poisonous
## 1400       e    n          s       g           t          e     edible
## 1401       e    a          y       g           e          r     edible
## 1402       e    n          y       d           t          b     edible
## 1403       e    n          a       g           t          e     edible
## 1404       e    n          a       g           t          e     edible
## 1405       p    p          s       u           e          e  poisonous
## 1406       e    n          a       g           t          e     edible
## 1407       e    n          a       g           t          e     edible
## 1408       e    n          a       g           t          e     edible
## 1409       e    n          s       g           t          e     edible
## 1410       e    n          s       g           t          e     edible
## 1411       e    n          s       g           t          e     edible
## 1412       e    n          a       g           t          e     edible
## 1413       e    n          a       g           t          e     edible
## 1414       e    n          a       g           t          e     edible
## 1415       e    n          a       g           t          e     edible
## 1416       e    l          s       m           e          c     edible
## 1417       e    n          a       g           t          e     edible
## 1418       e    n          s       g           t          e     edible
## 1419       e    n          a       g           t          e     edible
## 1420       p    p          s       u           e          e  poisonous
## 1421       e    n          s       g           t          e     edible
## 1422       e    n          v       d           t          b     edible
## 1423       e    n          s       g           t          e     edible
## 1424       e    n          a       g           t          e     edible
## 1425       e    n          a       g           t          e     edible
## 1426       e    n          s       g           t          e     edible
## 1427       e    n          s       g           t          e     edible
## 1428       e    l          s       p           e          r     edible
## 1429       p    p          v       u           e          e  poisonous
## 1430       e    n          s       g           t          e     edible
## 1431       e    n          v       d           t          b     edible
## 1432       p    p          s       g           e          e  poisonous
## 1433       p    p          s       u           e          e  poisonous
## 1434       p    p          s       u           e          e  poisonous
## 1435       e    n          y       d           t          b     edible
## 1436       e    l          n       m           e          c     edible
## 1437       p    p          s       g           e          e  poisonous
## 1438       e    n          a       g           t          e     edible
## 1439       e    n          s       g           t          e     edible
## 1440       e    n          y       d           t          b     edible
## 1441       e    n          a       g           t          e     edible
## 1442       e    n          s       g           t          e     edible
## 1443       e    n          s       g           t          e     edible
## 1444       p    p          s       u           e          e  poisonous
## 1445       p    p          v       g           e          e  poisonous
## 1446       e    n          s       g           t          e     edible
## 1447       e    n          s       g           t          e     edible
## 1448       e    n          v       d           t          b     edible
## 1449       e    n          s       g           t          e     edible
## 1450       e    n          a       g           t          e     edible
## 1451       p    p          v       u           e          e  poisonous
## 1452       e    n          a       g           t          e     edible
## 1453       p    p          v       g           e          e  poisonous
## 1454       e    n          a       g           t          e     edible
## 1455       e    n          s       g           t          e     edible
## 1456       e    n          a       g           t          e     edible
## 1457       e    n          y       d           t          b     edible
## 1458       e    n          s       g           t          e     edible
## 1459       p    p          s       u           e          e  poisonous
## 1460       e    n          v       d           t          b     edible
## 1461       e    n          s       g           t          e     edible
## 1462       e    n          s       g           t          e     edible
## 1463       e    a          v       d           t          b     edible
## 1464       e    n          s       g           t          e     edible
## 1465       e    n          v       d           t          b     edible
## 1466       e    n          y       d           t          b     edible
## 1467       e    a          v       d           t          b     edible
## 1468       e    n          a       g           t          e     edible
## 1469       e    n          s       g           t          e     edible
## 1470       e    n          y       d           t          b     edible
## 1471       e    n          a       g           t          e     edible
## 1472       p    p          v       u           e          e  poisonous
## 1473       e    n          s       g           t          e     edible
## 1474       e    n          a       g           t          e     edible
## 1475       e    n          s       g           t          e     edible
## 1476       e    n          a       g           t          e     edible
## 1477       e    n          a       g           t          e     edible
## 1478       p    p          s       g           e          e  poisonous
## 1479       e    n          s       g           t          e     edible
## 1480       e    n          a       g           t          e     edible
## 1481       e    n          s       g           t          e     edible
## 1482       e    n          s       g           t          e     edible
## 1483       e    n          a       g           t          e     edible
## 1484       e    l          y       g           e          r     edible
## 1485       p    p          v       u           e          e  poisonous
## 1486       e    n          a       g           t          e     edible
## 1487       e    n          s       g           t          e     edible
## 1488       e    n          s       g           t          e     edible
## 1489       p    p          s       g           e          e  poisonous
## 1490       e    n          s       g           t          e     edible
## 1491       p    p          s       u           e          e  poisonous
## 1492       e    n          s       g           t          e     edible
## 1493       e    n          s       g           t          e     edible
## 1494       e    n          a       g           t          e     edible
## 1495       e    n          s       g           t          e     edible
## 1496       e    n          s       g           t          e     edible
## 1497       e    n          s       g           t          e     edible
## 1498       e    n          a       g           t          e     edible
## 1499       e    n          s       g           t          e     edible
## 1500       e    n          a       g           t          e     edible
## 1501       e    a          n       m           e          c     edible
## 1502       e    n          s       g           t          e     edible
## 1503       e    n          a       g           t          e     edible
## 1504       e    n          a       g           t          e     edible
## 1505       e    n          y       d           t          b     edible
## 1506       p    p          s       u           e          e  poisonous
## 1507       e    n          y       d           t          b     edible
## 1508       e    n          a       g           t          e     edible
## 1509       e    n          y       d           t          b     edible
## 1510       e    n          a       g           t          e     edible
## 1511       e    n          s       g           t          e     edible
## 1512       e    n          a       g           t          e     edible
## 1513       e    a          s       m           e          c     edible
## 1514       e    a          v       d           t          b     edible
## 1515       e    n          a       g           t          e     edible
## 1516       e    n          a       g           t          e     edible
## 1517       e    n          s       g           t          e     edible
## 1518       e    a          s       g           e          c     edible
## 1519       e    n          s       g           t          e     edible
## 1520       e    l          s       g           e          c     edible
## 1521       e    n          s       g           t          e     edible
## 1522       e    n          a       g           t          e     edible
## 1523       e    n          s       g           t          e     edible
## 1524       e    n          a       g           t          e     edible
## 1525       e    n          s       g           t          e     edible
## 1526       e    n          y       d           t          b     edible
## 1527       e    n          s       g           t          e     edible
## 1528       e    a          n       m           e          c     edible
## 1529       e    n          a       g           t          e     edible
## 1530       p    p          s       u           e          e  poisonous
## 1531       e    n          s       g           t          e     edible
## 1532       p    p          s       u           e          e  poisonous
## 1533       e    n          s       g           t          e     edible
## 1534       e    n          s       g           t          e     edible
## 1535       p    p          s       g           e          e  poisonous
## 1536       e    n          a       g           t          e     edible
## 1537       p    p          s       u           e          e  poisonous
## 1538       e    n          s       g           t          e     edible
## 1539       e    n          s       g           t          e     edible
## 1540       p    p          v       g           e          e  poisonous
## 1541       e    n          a       g           t          e     edible
## 1542       e    n          a       g           t          e     edible
## 1543       e    n          s       g           t          e     edible
## 1544       e    n          a       g           t          e     edible
## 1545       e    n          y       d           t          b     edible
## 1546       p    p          s       u           e          e  poisonous
## 1547       e    n          s       g           t          e     edible
## 1548       e    a          y       g           e          r     edible
## 1549       e    n          a       g           t          e     edible
## 1550       e    n          a       g           t          e     edible
## 1551       e    l          n       m           e          c     edible
## 1552       e    n          a       g           t          e     edible
## 1553       e    n          a       g           t          e     edible
## 1554       e    n          a       g           t          e     edible
## 1555       p    p          s       u           e          e  poisonous
## 1556       e    n          a       g           t          e     edible
## 1557       e    a          n       g           e          c     edible
## 1558       e    n          a       g           t          e     edible
## 1559       e    n          s       g           t          e     edible
## 1560       e    n          a       g           t          e     edible
## 1561       e    n          s       g           t          e     edible
## 1562       e    n          a       g           t          e     edible
## 1563       e    n          v       d           t          b     edible
## 1564       e    l          n       m           e          c     edible
## 1565       e    n          v       d           t          b     edible
## 1566       p    p          s       g           e          e  poisonous
## 1567       e    n          a       g           t          e     edible
## 1568       p    p          v       u           e          e  poisonous
## 1569       e    n          a       g           t          e     edible
## 1570       e    n          a       g           t          e     edible
## 1571       e    n          a       g           t          e     edible
## 1572       e    n          a       g           t          e     edible
## 1573       e    n          s       g           t          e     edible
## 1574       e    l          s       g           e          c     edible
## 1575       e    n          a       g           t          e     edible
## 1576       e    n          s       g           t          e     edible
## 1577       p    p          v       g           e          e  poisonous
## 1578       e    n          a       g           t          e     edible
## 1579       p    p          s       g           e          e  poisonous
## 1580       e    n          a       g           t          e     edible
## 1581       e    n          v       d           t          b     edible
## 1582       e    n          s       g           t          e     edible
## 1583       p    p          v       u           e          e  poisonous
## 1584       e    n          s       g           t          e     edible
## 1585       p    p          v       u           e          e  poisonous
## 1586       e    n          v       d           t          b     edible
## 1587       e    n          s       g           t          e     edible
## 1588       e    a          s       p           e          r     edible
## 1589       e    n          s       g           t          e     edible
## 1590       e    n          a       g           t          e     edible
## 1591       e    n          s       g           t          e     edible
## 1592       e    n          s       g           t          e     edible
## 1593       e    n          a       g           t          e     edible
## 1594       e    n          s       g           t          e     edible
## 1595       e    n          a       g           t          e     edible
## 1596       e    n          v       d           t          b     edible
## 1597       e    n          a       g           t          e     edible
## 1598       e    n          s       g           t          e     edible
## 1599       e    l          s       g           e          r     edible
## 1600       e    n          y       d           t          b     edible
## 1601       e    n          a       g           t          e     edible
## 1602       e    n          s       g           t          e     edible
## 1603       e    n          a       g           t          e     edible
## 1604       e    n          s       g           t          e     edible
## 1605       e    n          a       g           t          e     edible
## 1606       e    n          a       g           t          e     edible
## 1607       e    n          s       g           t          e     edible
## 1608       e    n          y       d           t          b     edible
## 1609       e    n          s       g           t          e     edible
## 1610       e    n          a       g           t          e     edible
## 1611       e    n          a       g           t          e     edible
## 1612       e    n          y       u           e          e     edible
## 1613       p    p          s       u           e          e  poisonous
## 1614       p    p          v       g           e          e  poisonous
## 1615       e    n          v       d           t          b     edible
## 1616       e    n          a       g           t          e     edible
## 1617       e    n          a       g           t          e     edible
## 1618       e    n          s       g           t          e     edible
## 1619       e    n          s       g           t          e     edible
## 1620       e    n          s       g           t          e     edible
## 1621       e    n          a       g           t          e     edible
## 1622       e    n          s       g           t          e     edible
## 1623       e    n          a       g           t          e     edible
## 1624       e    n          v       d           t          b     edible
## 1625       p    p          v       u           e          e  poisonous
## 1626       e    n          s       g           t          e     edible
## 1627       e    n          v       d           t          b     edible
## 1628       p    p          s       u           e          e  poisonous
## 1629       p    p          v       g           e          e  poisonous
## 1630       p    p          s       u           e          e  poisonous
## 1631       e    n          a       g           t          e     edible
## 1632       e    n          s       g           t          e     edible
## 1633       e    n          a       g           t          e     edible
## 1634       e    n          a       g           t          e     edible
## 1635       e    n          a       g           t          e     edible
## 1636       p    p          v       g           e          e  poisonous
## 1637       p    p          v       g           e          e  poisonous
## 1638       e    n          a       g           t          e     edible
## 1639       e    n          a       g           t          e     edible
## 1640       e    n          s       g           t          e     edible
## 1641       e    n          v       d           t          b     edible
## 1642       e    n          v       d           t          b     edible
## 1643       e    n          a       g           t          e     edible
## 1644       e    n          s       g           t          e     edible
## 1645       e    n          a       g           t          e     edible
## 1646       e    l          n       m           e          c     edible
## 1647       e    n          a       g           t          e     edible
## 1648       e    n          s       g           t          e     edible
## 1649       e    n          s       g           t          e     edible
## 1650       e    n          a       g           t          e     edible
## 1651       e    n          s       g           t          e     edible
## 1652       e    n          s       g           t          e     edible
## 1653       e    n          s       g           t          e     edible
## 1654       e    n          s       g           t          e     edible
## 1655       e    n          s       g           t          e     edible
## 1656       e    n          a       g           t          e     edible
## 1657       e    n          s       g           t          e     edible
## 1658       e    n          s       g           t          e     edible
## 1659       e    n          a       g           t          e     edible
## 1660       e    n          s       g           t          e     edible
## 1661       e    n          a       g           t          e     edible
## 1662       e    a          n       g           e          c     edible
## 1663       e    l          n       g           e          c     edible
## 1664       e    n          a       g           t          e     edible
## 1665       p    p          s       g           e          e  poisonous
## 1666       e    n          s       g           t          e     edible
## 1667       p    p          s       u           e          e  poisonous
## 1668       e    n          v       d           t          b     edible
## 1669       p    p          v       u           e          e  poisonous
## 1670       e    l          s       g           e          c     edible
## 1671       e    l          n       m           e          c     edible
## 1672       e    l          y       p           e          r     edible
## 1673       e    n          s       g           t          e     edible
## 1674       e    n          s       g           t          e     edible
## 1675       e    n          a       g           t          e     edible
## 1676       e    n          a       g           t          e     edible
## 1677       e    n          s       g           t          e     edible
## 1678       e    n          a       g           t          e     edible
## 1679       e    n          s       g           t          e     edible
## 1680       e    l          n       g           e          c     edible
## 1681       e    n          s       g           t          e     edible
## 1682       e    l          s       m           e          c     edible
## 1683       p    p          v       g           e          e  poisonous
## 1684       e    n          s       g           t          e     edible
## 1685       e    n          s       g           t          e     edible
## 1686       e    n          s       g           t          e     edible
## 1687       e    n          s       g           t          e     edible
## 1688       e    n          y       d           t          b     edible
## 1689       e    n          y       d           t          b     edible
## 1690       e    a          y       p           e          r     edible
## 1691       e    n          y       d           t          b     edible
## 1692       e    n          a       g           t          e     edible
## 1693       e    n          s       g           t          e     edible
## 1694       e    n          a       g           t          e     edible
## 1695       e    n          a       g           t          e     edible
## 1696       e    n          s       g           t          e     edible
## 1697       e    n          a       g           t          e     edible
## 1698       e    n          a       g           t          e     edible
## 1699       e    n          a       g           t          e     edible
## 1700       e    n          y       d           t          b     edible
## 1701       e    n          s       g           t          e     edible
## 1702       e    n          s       g           t          e     edible
## 1703       p    p          s       g           e          e  poisonous
## 1704       e    n          y       d           t          b     edible
## 1705       e    n          s       g           t          e     edible
## 1706       e    n          s       g           t          e     edible
## 1707       p    p          v       u           e          e  poisonous
## 1708       e    n          s       g           t          e     edible
## 1709       e    n          v       d           t          b     edible
## 1710       e    n          a       g           t          e     edible
## 1711       e    n          s       g           t          e     edible
## 1712       e    n          v       d           t          b     edible
## 1713       e    n          a       g           t          e     edible
## 1714       e    n          a       g           t          e     edible
## 1715       e    n          y       d           t          b     edible
## 1716       e    l          n       g           e          c     edible
## 1717       e    l          n       m           e          c     edible
## 1718       e    n          s       g           t          e     edible
## 1719       e    n          a       g           t          e     edible
## 1720       e    n          s       g           t          e     edible
## 1721       e    n          a       g           t          e     edible
## 1722       e    n          a       g           t          e     edible
## 1723       e    n          s       g           t          e     edible
## 1724       e    a          n       m           e          c     edible
## 1725       p    p          v       g           e          e  poisonous
## 1726       e    n          a       g           t          e     edible
## 1727       e    n          s       g           t          e     edible
## 1728       e    a          s       g           e          r     edible
## 1729       e    n          a       g           t          e     edible
## 1730       e    n          a       g           t          e     edible
## 1731       p    p          v       u           e          e  poisonous
## 1732       e    n          a       g           t          e     edible
## 1733       e    n          s       g           t          e     edible
## 1734       p    p          v       g           e          e  poisonous
## 1735       e    n          a       g           t          e     edible
## 1736       e    n          a       g           t          e     edible
## 1737       e    n          v       d           t          b     edible
## 1738       e    n          s       g           t          e     edible
## 1739       p    p          v       u           e          e  poisonous
## 1740       e    n          a       g           t          e     edible
## 1741       e    n          s       g           t          e     edible
## 1742       e    n          s       g           t          e     edible
## 1743       e    n          a       g           t          e     edible
## 1744       e    l          y       g           e          r     edible
## 1745       p    p          s       g           e          e  poisonous
## 1746       e    n          a       g           t          e     edible
## 1747       e    n          y       u           e          e     edible
## 1748       p    p          s       u           e          e  poisonous
## 1749       e    n          s       g           t          e     edible
## 1750       e    n          s       g           t          e     edible
## 1751       e    a          y       p           e          r     edible
## 1752       e    n          s       g           t          e     edible
## 1753       e    n          a       g           t          e     edible
## 1754       p    p          s       g           e          e  poisonous
## 1755       e    n          s       g           t          e     edible
## 1756       e    n          s       g           t          e     edible
## 1757       e    n          s       g           t          e     edible
## 1758       e    n          v       d           t          b     edible
## 1759       e    n          s       g           t          e     edible
## 1760       e    n          a       g           t          e     edible
## 1761       e    n          s       g           t          e     edible
## 1762       e    n          s       g           t          e     edible
## 1763       e    n          y       d           t          b     edible
## 1764       e    n          s       g           t          e     edible
## 1765       p    p          s       u           e          e  poisonous
## 1766       e    n          a       g           t          e     edible
## 1767       e    n          s       g           t          e     edible
## 1768       e    n          v       d           t          b     edible
## 1769       e    a          y       g           e          r     edible
## 1770       e    n          a       g           t          e     edible
## 1771       e    n          a       g           t          e     edible
## 1772       e    n          a       g           t          e     edible
## 1773       e    a          s       g           e          c     edible
## 1774       e    n          y       d           t          b     edible
## 1775       e    n          a       g           t          e     edible
## 1776       e    n          a       g           t          e     edible
## 1777       p    p          s       u           e          e  poisonous
## 1778       p    p          v       u           e          e  poisonous
## 1779       e    n          a       g           t          e     edible
## 1780       e    n          v       u           e          e     edible
## 1781       e    n          s       g           t          e     edible
## 1782       e    n          a       g           t          e     edible
## 1783       p    p          s       g           e          e  poisonous
## 1784       e    a          s       g           e          c     edible
## 1785       e    n          a       g           t          e     edible
## 1786       p    p          s       u           e          e  poisonous
## 1787       e    n          a       g           t          e     edible
## 1788       e    n          s       g           t          e     edible
## 1789       e    n          s       g           t          e     edible
## 1790       p    p          v       u           e          e  poisonous
## 1791       e    n          a       g           t          e     edible
## 1792       e    n          a       g           t          e     edible
## 1793       e    n          s       g           t          e     edible
## 1794       e    n          a       g           t          e     edible
## 1795       p    p          v       g           e          e  poisonous
## 1796       e    n          s       g           t          e     edible
## 1797       e    n          a       g           t          e     edible
## 1798       p    p          v       u           e          e  poisonous
## 1799       e    n          a       g           t          e     edible
## 1800       e    n          v       d           t          b     edible
## 1801       e    n          a       g           t          e     edible
## 1802       e    n          v       d           t          b     edible
## 1803       e    n          v       d           t          b     edible
## 1804       e    n          y       d           t          b     edible
## 1805       e    n          v       d           t          b     edible
## 1806       e    n          s       g           t          e     edible
## 1807       e    n          y       d           t          b     edible
## 1808       e    n          y       d           t          b     edible
## 1809       e    n          s       g           t          e     edible
## 1810       p    p          s       g           e          e  poisonous
## 1811       e    n          v       d           t          b     edible
## 1812       p    p          v       g           e          e  poisonous
## 1813       e    a          s       g           e          c     edible
## 1814       e    n          a       g           t          e     edible
## 1815       e    a          s       g           e          c     edible
## 1816       p    f          y       g           e          b  poisonous
## 1817       e    n          a       g           t          e     edible
## 1818       e    n          s       g           t          e     edible
## 1819       e    n          v       d           t          b     edible
## 1820       e    n          s       g           t          e     edible
## 1821       e    n          s       g           t          e     edible
## 1822       p    p          v       u           e          e  poisonous
## 1823       e    n          y       d           t          b     edible
## 1824       e    l          n       g           e          c     edible
## 1825       e    n          s       g           t          e     edible
## 1826       e    n          v       d           t          b     edible
## 1827       e    n          s       g           t          e     edible
## 1828       e    n          a       g           t          e     edible
## 1829       e    n          v       d           t          b     edible
## 1830       e    n          y       d           t          b     edible
## 1831       e    n          v       d           t          b     edible
## 1832       e    n          a       g           t          e     edible
## 1833       e    n          v       d           t          b     edible
## 1834       e    n          v       d           t          b     edible
## 1835       e    n          v       d           t          b     edible
## 1836       e    n          y       d           t          b     edible
## 1837       e    n          s       g           t          e     edible
## 1838       e    n          y       d           t          b     edible
## 1839       e    n          s       g           t          e     edible
## 1840       e    n          a       g           t          e     edible
## 1841       e    n          a       g           t          e     edible
## 1842       e    n          v       d           t          b     edible
## 1843       p    p          s       u           e          e  poisonous
## 1844       e    n          v       d           t          b     edible
## 1845       e    n          s       g           t          e     edible
## 1846       e    n          a       g           t          e     edible
## 1847       e    n          v       d           t          b     edible
## 1848       e    n          v       d           t          b     edible
## 1849       e    n          v       d           t          b     edible
## 1850       e    n          v       d           t          b     edible
## 1851       e    n          a       g           t          e     edible
## 1852       e    n          v       d           t          b     edible
## 1853       e    n          v       d           t          b     edible
## 1854       e    n          y       d           t          b     edible
## 1855       e    n          y       d           t          b     edible
## 1856       e    a          v       d           t          b     edible
## 1857       e    n          v       d           t          b     edible
## 1858       p    p          v       g           e          e  poisonous
## 1859       e    n          s       g           t          e     edible
## 1860       e    n          y       d           t          b     edible
## 1861       e    n          v       d           t          b     edible
## 1862       e    n          a       g           t          e     edible
## 1863       e    n          y       d           t          b     edible
## 1864       e    n          s       g           t          e     edible
## 1865       e    n          y       d           t          b     edible
## 1866       e    n          v       d           t          b     edible
## 1867       e    n          a       g           t          e     edible
## 1868       e    n          a       g           t          e     edible
## 1869       e    n          s       g           t          e     edible
## 1870       e    n          s       g           t          e     edible
## 1871       e    n          y       d           t          b     edible
## 1872       e    n          a       g           t          e     edible
## 1873       e    n          a       g           t          e     edible
## 1874       e    n          v       d           t          b     edible
## 1875       e    n          y       d           t          b     edible
## 1876       e    n          v       d           t          b     edible
## 1877       e    n          y       d           t          b     edible
## 1878       e    n          s       g           t          e     edible
## 1879       e    n          a       g           t          e     edible
## 1880       e    n          a       g           t          e     edible
## 1881       e    n          a       g           t          e     edible
## 1882       e    n          v       d           t          b     edible
## 1883       e    n          y       d           t          b     edible
## 1884       e    n          v       d           t          b     edible
## 1885       e    l          v       d           t          b     edible
## 1886       e    n          a       g           t          e     edible
## 1887       p    p          s       g           e          e  poisonous
## 1888       e    n          v       d           t          b     edible
## 1889       e    n          v       d           t          b     edible
## 1890       e    n          a       g           t          e     edible
## 1891       e    n          a       g           t          e     edible
## 1892       e    n          a       g           t          e     edible
## 1893       e    n          a       g           t          e     edible
## 1894       e    n          a       g           t          e     edible
## 1895       e    n          v       d           t          b     edible
## 1896       e    n          y       d           t          b     edible
## 1897       e    n          s       g           t          e     edible
## 1898       e    n          a       g           t          e     edible
## 1899       e    n          s       g           t          e     edible
## 1900       e    n          y       d           t          b     edible
## 1901       e    n          a       g           t          e     edible
## 1902       e    n          a       g           t          e     edible
## 1903       e    n          s       g           t          e     edible
## 1904       e    n          s       g           t          e     edible
## 1905       e    n          a       g           t          e     edible
## 1906       e    n          a       g           t          e     edible
## 1907       e    n          v       d           t          b     edible
## 1908       e    n          a       g           t          e     edible
## 1909       e    n          s       g           t          e     edible
## 1910       e    n          v       d           t          b     edible
## 1911       e    n          v       d           t          b     edible
## 1912       e    n          v       d           t          b     edible
## 1913       e    n          s       g           t          e     edible
## 1914       e    n          a       g           t          e     edible
## 1915       e    l          y       g           e          r     edible
## 1916       p    p          v       u           e          e  poisonous
## 1917       e    n          a       g           t          e     edible
## 1918       e    n          s       g           t          e     edible
## 1919       e    n          v       d           t          b     edible
## 1920       e    n          y       d           t          b     edible
## 1921       e    n          a       g           t          e     edible
## 1922       e    n          s       g           t          e     edible
## 1923       e    n          s       g           t          e     edible
## 1924       e    n          v       d           t          b     edible
## 1925       e    n          v       d           t          b     edible
## 1926       e    n          s       g           t          e     edible
## 1927       e    n          a       g           t          e     edible
## 1928       e    n          s       g           t          e     edible
## 1929       e    n          s       g           t          e     edible
## 1930       p    p          s       u           e          e  poisonous
## 1931       e    a          s       g           e          c     edible
## 1932       e    n          v       d           t          b     edible
## 1933       e    n          a       g           t          e     edible
## 1934       e    n          s       g           t          e     edible
## 1935       e    n          s       g           t          e     edible
## 1936       e    l          v       d           t          b     edible
## 1937       e    n          a       g           t          e     edible
## 1938       e    n          a       g           t          e     edible
## 1939       e    n          s       g           t          e     edible
## 1940       e    n          v       d           t          b     edible
## 1941       e    n          v       d           t          b     edible
## 1942       e    n          v       d           t          b     edible
## 1943       e    n          s       g           t          e     edible
## 1944       e    n          s       g           t          e     edible
## 1945       p    p          v       u           e          e  poisonous
## 1946       e    n          s       g           t          e     edible
## 1947       e    n          y       d           t          b     edible
## 1948       e    n          v       d           t          b     edible
## 1949       e    n          a       g           t          e     edible
## 1950       e    n          v       d           t          b     edible
## 1951       e    n          v       d           t          b     edible
## 1952       e    n          y       d           t          b     edible
## 1953       e    n          v       d           t          b     edible
## 1954       e    n          v       d           t          b     edible
## 1955       p    p          v       g           e          e  poisonous
## 1956       e    n          s       g           t          e     edible
## 1957       e    n          v       d           t          b     edible
## 1958       e    n          y       d           t          b     edible
## 1959       p    p          s       g           e          e  poisonous
## 1960       e    n          y       d           t          b     edible
## 1961       e    n          s       g           t          e     edible
## 1962       e    n          v       d           t          b     edible
## 1963       e    n          s       g           t          e     edible
## 1964       e    n          a       g           t          e     edible
## 1965       e    n          s       g           t          e     edible
## 1966       e    n          v       d           t          b     edible
## 1967       e    n          s       g           t          e     edible
## 1968       e    n          v       d           t          b     edible
## 1969       e    n          s       g           t          e     edible
## 1970       e    n          a       g           t          e     edible
## 1971       e    n          s       g           t          e     edible
## 1972       p    p          v       u           e          e  poisonous
## 1973       e    n          y       d           t          b     edible
## 1974       e    n          s       g           t          e     edible
## 1975       p    p          s       g           e          e  poisonous
## 1976       e    n          v       d           t          b     edible
## 1977       e    n          y       d           t          b     edible
## 1978       e    n          a       g           t          e     edible
## 1979       e    n          v       d           t          b     edible
## 1980       e    n          s       g           t          e     edible
## 1981       e    n          s       g           t          e     edible
## 1982       e    l          n       m           e          c     edible
## 1983       e    n          s       g           t          e     edible
## 1984       e    n          v       d           t          b     edible
## 1985       e    n          y       d           t          b     edible
## 1986       e    n          a       g           t          e     edible
## 1987       p    p          s       u           e          e  poisonous
## 1988       e    n          v       d           t          b     edible
## 1989       p    p          s       u           e          e  poisonous
## 1990       p    p          v       g           e          e  poisonous
## 1991       e    n          v       d           t          b     edible
## 1992       e    n          a       g           t          e     edible
## 1993       e    n          y       d           t          b     edible
## 1994       e    n          a       g           t          e     edible
## 1995       e    n          y       d           t          b     edible
## 1996       e    n          s       g           t          e     edible
## 1997       e    n          a       g           t          e     edible
## 1998       e    n          a       g           t          e     edible
## 1999       e    n          s       g           t          e     edible
## 2000       e    n          v       d           t          b     edible
## 2001       e    n          v       d           t          b     edible
## 2002       e    n          a       g           t          e     edible
## 2003       e    n          y       d           t          b     edible
## 2004       p    p          v       u           e          e  poisonous
## 2005       e    l          s       g           e          r     edible
## 2006       p    p          s       g           e          e  poisonous
## 2007       e    n          s       g           t          e     edible
## 2008       e    n          a       g           t          e     edible
## 2009       p    p          v       g           e          e  poisonous
## 2010       e    n          a       g           t          e     edible
## 2011       e    n          s       g           t          e     edible
## 2012       e    n          v       d           t          b     edible
## 2013       e    n          a       g           t          e     edible
## 2014       e    n          s       g           t          e     edible
## 2015       e    n          a       g           t          e     edible
## 2016       e    n          s       g           t          e     edible
## 2017       e    a          v       d           t          b     edible
## 2018       e    a          v       d           t          b     edible
## 2019       e    n          a       g           t          e     edible
## 2020       e    n          y       d           t          b     edible
## 2021       e    n          y       d           t          b     edible
## 2022       e    n          y       d           t          b     edible
## 2023       e    n          s       g           t          e     edible
## 2024       e    n          y       d           t          b     edible
## 2025       e    n          v       d           t          b     edible
## 2026       e    n          a       g           t          e     edible
## 2027       e    n          v       d           t          b     edible
## 2028       e    n          a       g           t          e     edible
## 2029       e    l          s       m           e          c     edible
## 2030       e    n          v       d           t          b     edible
## 2031       e    n          s       g           t          e     edible
## 2032       e    n          y       d           t          b     edible
## 2033       e    n          y       d           t          b     edible
## 2034       e    n          v       d           t          b     edible
## 2035       e    n          a       g           t          e     edible
## 2036       e    n          s       g           t          e     edible
## 2037       e    n          a       g           t          e     edible
## 2038       e    n          a       g           t          e     edible
## 2039       e    n          y       d           t          b     edible
## 2040       e    n          y       d           t          b     edible
## 2041       e    n          y       d           t          b     edible
## 2042       e    n          s       g           t          e     edible
## 2043       e    n          s       g           t          e     edible
## 2044       e    n          s       g           t          e     edible
## 2045       e    a          s       p           e          r     edible
## 2046       e    n          v       d           t          b     edible
## 2047       e    n          s       g           t          e     edible
## 2048       e    n          v       d           t          b     edible
## 2049       e    n          y       d           t          b     edible
## 2050       e    n          a       g           t          e     edible
## 2051       e    a          s       m           e          c     edible
## 2052       e    n          s       g           t          e     edible
## 2053       e    n          a       g           t          e     edible
## 2054       e    n          v       d           t          b     edible
## 2055       e    n          s       g           t          e     edible
## 2056       e    n          v       d           t          b     edible
## 2057       e    n          y       d           t          b     edible
## 2058       e    n          a       g           t          e     edible
## 2059       e    a          n       m           e          c     edible
## 2060       e    n          s       g           t          e     edible
## 2061       p    p          v       g           e          e  poisonous
## 2062       e    n          s       g           t          e     edible
## 2063       e    n          v       d           t          b     edible
## 2064       e    n          s       g           t          e     edible
## 2065       e    n          v       d           t          b     edible
## 2066       e    n          v       d           t          b     edible
## 2067       p    p          v       u           e          e  poisonous
## 2068       e    n          a       g           t          e     edible
## 2069       e    n          y       d           t          b     edible
## 2070       e    n          y       d           t          b     edible
## 2071       e    n          v       d           t          b     edible
## 2072       e    n          y       d           t          b     edible
## 2073       e    n          y       d           t          b     edible
## 2074       p    p          v       u           e          e  poisonous
## 2075       e    l          n       m           e          c     edible
## 2076       e    n          v       d           t          b     edible
## 2077       e    n          y       d           t          b     edible
## 2078       e    n          s       g           t          e     edible
## 2079       e    n          y       d           t          b     edible
## 2080       e    n          s       g           t          e     edible
## 2081       e    n          s       g           t          e     edible
## 2082       e    n          v       d           t          b     edible
## 2083       e    n          v       d           t          b     edible
## 2084       e    n          s       g           t          e     edible
## 2085       e    n          s       g           t          e     edible
## 2086       e    n          s       g           t          e     edible
## 2087       e    n          y       d           t          b     edible
## 2088       e    n          y       d           t          b     edible
## 2089       p    p          s       u           e          e  poisonous
## 2090       e    n          v       d           t          b     edible
## 2091       e    n          a       g           t          e     edible
## 2092       e    a          s       m           e          c     edible
## 2093       e    n          s       g           t          e     edible
## 2094       e    n          s       g           t          e     edible
## 2095       e    n          y       d           t          b     edible
## 2096       e    n          v       d           t          b     edible
## 2097       e    n          s       g           t          e     edible
## 2098       p    p          s       g           e          e  poisonous
## 2099       e    n          a       g           t          e     edible
## 2100       e    n          y       d           t          b     edible
## 2101       e    n          v       d           t          b     edible
## 2102       e    n          v       d           t          b     edible
## 2103       e    n          y       d           t          b     edible
## 2104       e    n          y       d           t          b     edible
## 2105       e    n          y       d           t          b     edible
## 2106       e    n          v       d           t          b     edible
## 2107       e    n          y       d           t          b     edible
## 2108       e    n          v       d           t          b     edible
## 2109       e    n          v       d           t          b     edible
## 2110       e    n          v       d           t          b     edible
## 2111       e    n          v       d           t          b     edible
## 2112       p    p          v       g           e          e  poisonous
## 2113       e    n          v       d           t          b     edible
## 2114       e    n          v       d           t          b     edible
## 2115       e    n          y       d           t          b     edible
## 2116       e    n          y       d           t          b     edible
## 2117       e    n          v       d           t          b     edible
## 2118       e    n          v       d           t          b     edible
## 2119       e    n          v       d           t          b     edible
## 2120       e    n          y       d           t          b     edible
## 2121       e    n          y       d           t          b     edible
## 2122       e    n          v       d           t          b     edible
## 2123       e    n          v       d           t          b     edible
## 2124       e    n          v       d           t          b     edible
## 2125       e    n          v       d           t          b     edible
## 2126       e    n          y       d           t          b     edible
## 2127       e    n          v       d           t          b     edible
## 2128       p    f          y       g           e          b  poisonous
## 2129       p    p          s       g           e          e  poisonous
## 2130       e    n          v       d           t          b     edible
## 2131       e    n          s       g           t          e     edible
## 2132       e    n          v       d           t          b     edible
## 2133       e    n          y       d           t          b     edible
## 2134       e    n          v       d           t          b     edible
## 2135       e    n          y       d           t          b     edible
## 2136       e    n          v       d           t          b     edible
## 2137       e    n          v       d           t          b     edible
## 2138       e    n          y       d           t          b     edible
## 2139       e    n          y       d           t          b     edible
## 2140       e    n          v       d           t          b     edible
## 2141       e    n          v       d           t          b     edible
## 2142       e    n          y       d           t          b     edible
## 2143       e    n          y       d           t          b     edible
## 2144       e    n          v       d           t          b     edible
## 2145       e    n          v       d           t          b     edible
## 2146       e    n          v       d           t          b     edible
## 2147       p    p          v       u           e          e  poisonous
## 2148       e    n          y       d           t          b     edible
## 2149       p    p          s       g           e          e  poisonous
## 2150       e    n          y       d           t          b     edible
## 2151       e    n          y       d           t          b     edible
## 2152       e    n          v       d           t          b     edible
## 2153       e    n          v       d           t          b     edible
## 2154       e    n          y       d           t          b     edible
## 2155       e    n          v       d           t          b     edible
## 2156       e    n          y       d           t          b     edible
## 2157       e    n          v       d           t          b     edible
## 2158       e    n          y       d           t          b     edible
## 2159       e    n          v       d           t          b     edible
## 2160       e    n          y       d           t          b     edible
## 2161       e    n          y       d           t          b     edible
## 2162       e    n          v       d           t          b     edible
## 2163       e    n          y       d           t          b     edible
## 2164       e    n          y       d           t          b     edible
## 2165       e    n          y       d           t          b     edible
## 2166       e    n          y       d           t          b     edible
## 2167       e    n          y       d           t          b     edible
## 2168       e    n          y       d           t          b     edible
## 2169       e    n          v       d           t          b     edible
## 2170       e    n          v       d           t          b     edible
## 2171       e    n          v       d           t          b     edible
## 2172       e    n          v       d           t          b     edible
## 2173       e    n          v       d           t          b     edible
## 2174       e    n          y       d           t          b     edible
## 2175       e    n          v       d           t          b     edible
## 2176       e    n          y       d           t          b     edible
## 2177       e    n          v       d           t          b     edible
## 2178       p    f          y       d           e          b  poisonous
## 2179       e    n          y       d           t          b     edible
## 2180       e    n          y       d           t          b     edible
## 2181       e    n          v       d           t          b     edible
## 2182       e    n          y       d           t          b     edible
## 2183       e    n          v       d           t          b     edible
## 2184       e    n          v       d           t          b     edible
## 2185       e    n          y       d           t          b     edible
## 2186       e    n          y       d           t          b     edible
## 2187       e    n          y       d           t          b     edible
## 2188       e    n          v       d           t          b     edible
## 2189       e    n          v       d           t          b     edible
## 2190       e    n          v       d           t          b     edible
## 2191       e    n          y       d           t          b     edible
## 2192       e    n          s       g           t          e     edible
## 2193       e    n          y       d           t          b     edible
## 2194       e    n          y       d           t          b     edible
## 2195       e    n          v       d           t          b     edible
## 2196       e    n          v       d           t          b     edible
## 2197       e    n          y       d           t          b     edible
## 2198       e    n          v       d           t          b     edible
## 2199       e    n          y       d           t          b     edible
## 2200       e    n          a       g           t          e     edible
## 2201       e    n          y       d           t          b     edible
## 2202       e    n          v       d           t          b     edible
## 2203       e    n          y       d           t          b     edible
## 2204       e    n          y       d           t          b     edible
## 2205       e    n          v       d           t          b     edible
## 2206       e    n          v       d           t          b     edible
## 2207       e    n          y       d           t          b     edible
## 2208       e    n          y       d           t          b     edible
## 2209       e    n          v       d           t          b     edible
## 2210       p    c          s       d           e          b  poisonous
## 2211       e    n          y       d           t          b     edible
## 2212       e    n          v       d           t          b     edible
## 2213       e    n          y       d           t          b     edible
## 2214       e    n          v       d           t          b     edible
## 2215       e    n          v       d           t          b     edible
## 2216       e    n          y       d           t          b     edible
## 2217       e    n          v       d           t          b     edible
## 2218       e    n          v       d           t          b     edible
## 2219       e    n          v       d           t          b     edible
## 2220       e    n          v       d           t          b     edible
## 2221       e    n          v       d           t          b     edible
## 2222       e    n          v       d           t          b     edible
## 2223       e    n          v       d           t          b     edible
## 2224       e    n          y       d           t          b     edible
## 2225       e    n          v       d           t          b     edible
## 2226       e    n          y       d           t          b     edible
## 2227       e    n          s       g           t          e     edible
## 2228       e    n          y       d           t          b     edible
## 2229       e    n          v       d           t          b     edible
## 2230       e    n          v       d           t          b     edible
## 2231       e    n          v       d           t          b     edible
## 2232       e    n          y       d           t          b     edible
## 2233       e    n          v       d           t          b     edible
## 2234       e    n          v       d           t          b     edible
## 2235       e    n          y       d           t          b     edible
## 2236       e    n          y       d           t          b     edible
## 2237       e    n          s       g           t          e     edible
## 2238       p    f          y       p           e          b  poisonous
## 2239       e    n          y       d           t          b     edible
## 2240       e    n          y       d           t          b     edible
## 2241       p    p          v       g           e          e  poisonous
## 2242       e    n          y       d           t          b     edible
## 2243       e    n          y       d           t          b     edible
## 2244       e    n          v       d           t          b     edible
## 2245       e    n          v       d           t          b     edible
## 2246       e    n          v       d           t          b     edible
## 2247       e    n          a       g           t          e     edible
## 2248       e    n          y       d           t          b     edible
## 2249       e    n          y       d           t          b     edible
## 2250       e    n          y       d           t          b     edible
## 2251       e    n          y       d           t          b     edible
## 2252       e    n          s       g           t          e     edible
## 2253       e    n          v       d           t          b     edible
## 2254       e    n          v       d           t          b     edible
## 2255       e    n          y       d           t          b     edible
## 2256       e    n          y       d           t          b     edible
## 2257       e    n          v       d           t          b     edible
## 2258       e    n          v       d           t          b     edible
## 2259       e    n          v       d           t          b     edible
## 2260       e    n          a       g           t          e     edible
## 2261       e    n          y       d           t          b     edible
## 2262       e    n          y       d           t          b     edible
## 2263       e    n          y       d           t          b     edible
## 2264       e    n          y       d           t          b     edible
## 2265       e    n          y       d           t          b     edible
## 2266       e    n          a       g           t          e     edible
## 2267       e    n          v       d           t          b     edible
## 2268       e    n          y       d           t          b     edible
## 2269       e    n          v       d           t          b     edible
## 2270       e    n          v       d           t          b     edible
## 2271       e    n          s       g           t          e     edible
## 2272       e    n          v       d           t          b     edible
## 2273       e    n          y       d           t          b     edible
## 2274       e    n          v       d           t          b     edible
## 2275       e    n          y       d           t          b     edible
## 2276       e    n          y       d           t          b     edible
## 2277       e    n          y       d           t          b     edible
## 2278       e    n          v       d           t          b     edible
## 2279       e    n          v       d           t          b     edible
## 2280       e    n          y       d           t          b     edible
## 2281       e    n          y       d           t          b     edible
## 2282       e    n          v       d           t          b     edible
## 2283       e    n          y       d           t          b     edible
## 2284       e    n          y       d           t          b     edible
## 2285       p    c          v       d           e          b  poisonous
## 2286       e    n          y       d           t          b     edible
## 2287       e    n          y       d           t          b     edible
## 2288       p    p          s       u           e          e  poisonous
## 2289       e    n          y       d           t          b     edible
## 2290       e    n          y       d           t          b     edible
## 2291       e    n          v       d           t          b     edible
## 2292       e    n          v       d           t          b     edible
## 2293       e    n          v       d           t          b     edible
## 2294       e    n          y       d           t          b     edible
## 2295       e    n          s       g           t          e     edible
## 2296       e    n          v       d           t          b     edible
## 2297       e    n          s       g           t          e     edible
## 2298       e    n          y       d           t          b     edible
## 2299       e    n          v       d           t          b     edible
## 2300       e    n          v       d           t          b     edible
## 2301       e    n          v       d           t          b     edible
## 2302       e    n          v       d           t          b     edible
## 2303       e    n          y       d           t          b     edible
## 2304       e    n          v       d           t          b     edible
## 2305       e    n          y       d           t          b     edible
## 2306       e    n          v       d           t          b     edible
## 2307       e    n          v       d           t          b     edible
## 2308       e    n          y       d           t          b     edible
## 2309       e    n          v       d           t          b     edible
## 2310       e    n          y       d           t          b     edible
## 2311       e    n          v       d           t          b     edible
## 2312       e    n          y       d           t          b     edible
## 2313       e    n          v       d           t          b     edible
## 2314       e    n          y       d           t          b     edible
## 2315       e    n          v       d           t          b     edible
## 2316       e    n          v       d           t          b     edible
## 2317       e    n          y       d           t          b     edible
## 2318       e    n          y       d           t          b     edible
## 2319       e    n          v       d           t          b     edible
## 2320       e    n          y       d           t          b     edible
## 2321       e    n          v       d           t          b     edible
## 2322       e    n          y       d           t          b     edible
## 2323       e    n          y       d           t          b     edible
## 2324       e    n          y       d           t          b     edible
## 2325       e    n          v       d           t          b     edible
## 2326       e    n          y       d           t          b     edible
## 2327       e    n          v       d           t          b     edible
## 2328       e    n          v       d           t          b     edible
## 2329       e    n          y       d           t          b     edible
## 2330       e    n          v       d           t          b     edible
## 2331       e    n          v       d           t          b     edible
## 2332       e    n          y       d           t          b     edible
## 2333       e    n          y       d           t          b     edible
## 2334       e    n          y       d           t          b     edible
## 2335       e    n          v       d           t          b     edible
## 2336       e    n          v       d           t          b     edible
## 2337       e    n          v       d           t          b     edible
## 2338       e    n          y       d           t          b     edible
## 2339       e    n          y       d           t          b     edible
## 2340       e    n          v       d           t          b     edible
## 2341       e    n          y       d           t          b     edible
## 2342       e    n          v       d           t          b     edible
## 2343       e    n          v       d           t          b     edible
## 2344       e    n          y       d           t          b     edible
## 2345       e    n          v       d           t          b     edible
## 2346       e    n          s       g           t          e     edible
## 2347       e    n          y       d           t          b     edible
## 2348       e    n          s       g           t          e     edible
## 2349       e    n          y       d           t          b     edible
## 2350       e    n          y       d           t          b     edible
## 2351       p    p          s       u           e          e  poisonous
## 2352       e    n          v       d           t          b     edible
## 2353       e    n          y       d           t          b     edible
## 2354       e    n          y       d           t          b     edible
## 2355       e    n          v       d           t          b     edible
## 2356       e    n          v       d           t          b     edible
## 2357       e    n          y       d           t          b     edible
## 2358       e    n          y       d           t          b     edible
## 2359       e    n          v       d           t          b     edible
## 2360       e    n          y       d           t          b     edible
## 2361       e    n          y       d           t          b     edible
## 2362       e    n          y       d           t          b     edible
## 2363       e    n          y       d           t          b     edible
## 2364       e    n          v       d           t          b     edible
## 2365       e    n          y       d           t          b     edible
## 2366       e    n          v       d           t          b     edible
## 2367       e    n          a       g           t          e     edible
## 2368       e    n          v       d           t          b     edible
## 2369       e    n          y       d           t          b     edible
## 2370       e    n          y       d           t          b     edible
## 2371       e    n          y       d           t          b     edible
## 2372       e    n          y       d           t          b     edible
## 2373       e    n          v       d           t          b     edible
## 2374       e    n          y       d           t          b     edible
## 2375       p    p          v       u           e          e  poisonous
## 2376       e    n          v       d           t          b     edible
## 2377       e    n          s       g           t          e     edible
## 2378       e    n          s       g           t          e     edible
## 2379       e    n          v       d           t          b     edible
## 2380       e    n          y       d           t          b     edible
## 2381       e    n          v       d           t          b     edible
## 2382       e    n          v       d           t          b     edible
## 2383       e    n          y       d           t          b     edible
## 2384       e    n          v       d           t          b     edible
## 2385       p    f          y       d           e          b  poisonous
## 2386       e    n          y       d           t          b     edible
## 2387       e    n          a       g           t          e     edible
## 2388       p    p          v       g           e          e  poisonous
## 2389       e    n          y       d           t          b     edible
## 2390       e    n          v       d           t          b     edible
## 2391       e    n          y       d           t          b     edible
## 2392       e    n          v       d           t          b     edible
## 2393       e    n          v       d           t          b     edible
## 2394       e    n          v       d           t          b     edible
## 2395       e    n          y       d           t          b     edible
## 2396       e    n          v       d           t          b     edible
## 2397       e    n          y       d           t          b     edible
## 2398       e    n          y       d           t          b     edible
## 2399       e    n          y       d           t          b     edible
## 2400       p    p          v       g           e          e  poisonous
## 2401       e    n          v       d           t          b     edible
## 2402       e    n          v       d           t          b     edible
## 2403       e    n          v       d           t          b     edible
## 2404       e    n          v       d           t          b     edible
## 2405       e    n          v       d           t          b     edible
## 2406       e    n          y       d           t          b     edible
## 2407       e    n          y       d           t          b     edible
## 2408       e    n          y       d           t          b     edible
## 2409       e    n          y       d           t          b     edible
## 2410       e    n          v       d           t          b     edible
## 2411       e    n          v       d           t          b     edible
## 2412       e    n          v       d           t          b     edible
## 2413       e    n          v       d           t          b     edible
## 2414       e    n          v       d           t          b     edible
## 2415       e    n          y       d           t          b     edible
## 2416       e    n          v       d           t          b     edible
## 2417       e    n          y       d           t          b     edible
## 2418       e    n          y       d           t          b     edible
## 2419       e    n          v       d           t          b     edible
## 2420       e    n          y       d           t          b     edible
## 2421       e    n          v       d           t          b     edible
## 2422       e    n          y       d           t          b     edible
## 2423       e    n          y       d           t          b     edible
## 2424       e    n          y       d           t          b     edible
## 2425       e    n          v       d           t          b     edible
## 2426       p    c          v       d           e          b  poisonous
## 2427       e    n          y       d           t          b     edible
## 2428       e    n          y       d           t          b     edible
## 2429       e    n          y       d           t          b     edible
## 2430       e    n          v       d           t          b     edible
## 2431       e    n          y       d           t          b     edible
## 2432       e    n          y       d           t          b     edible
## 2433       e    n          y       d           t          b     edible
## 2434       e    n          v       d           t          b     edible
## 2435       e    n          y       d           t          b     edible
## 2436       e    n          y       d           t          b     edible
## 2437       e    n          v       d           t          b     edible
## 2438       e    n          y       d           t          b     edible
## 2439       e    n          v       d           t          b     edible
## 2440       e    n          y       d           t          b     edible
## 2441       e    n          y       d           t          b     edible
## 2442       e    n          y       d           t          b     edible
## 2443       p    f          y       g           e          b  poisonous
## 2444       e    n          v       d           t          b     edible
## 2445       e    n          y       d           t          b     edible
## 2446       e    n          v       d           t          b     edible
## 2447       e    n          y       d           t          b     edible
## 2448       e    n          v       d           t          b     edible
## 2449       e    n          y       d           t          b     edible
## 2450       e    n          y       d           t          b     edible
## 2451       e    n          y       d           t          b     edible
## 2452       e    n          a       g           t          e     edible
## 2453       e    n          y       d           t          b     edible
## 2454       e    n          y       d           t          b     edible
## 2455       e    n          v       d           t          b     edible
## 2456       e    n          y       d           t          b     edible
## 2457       e    n          v       d           t          b     edible
## 2458       e    n          y       d           t          b     edible
## 2459       e    n          v       d           t          b     edible
## 2460       e    n          v       d           t          b     edible
## 2461       e    n          y       d           t          b     edible
## 2462       e    n          y       d           t          b     edible
## 2463       e    n          v       d           t          b     edible
## 2464       e    n          y       d           t          b     edible
## 2465       e    n          v       d           t          b     edible
## 2466       e    n          v       d           t          b     edible
## 2467       e    n          v       d           t          b     edible
## 2468       e    n          y       d           t          b     edible
## 2469       e    n          v       d           t          b     edible
## 2470       e    n          v       d           t          b     edible
## 2471       e    n          v       d           t          b     edible
## 2472       e    n          v       d           t          b     edible
## 2473       e    n          v       d           t          b     edible
## 2474       e    n          y       d           t          b     edible
## 2475       e    n          v       d           t          b     edible
## 2476       e    n          v       d           t          b     edible
## 2477       e    n          y       d           t          b     edible
## 2478       p    p          s       u           e          e  poisonous
## 2479       e    n          s       g           t          e     edible
## 2480       e    n          v       d           t          b     edible
## 2481       e    n          y       d           t          b     edible
## 2482       p    c          s       d           e          b  poisonous
## 2483       e    n          y       d           t          b     edible
## 2484       e    n          v       d           t          b     edible
## 2485       e    n          y       d           t          b     edible
## 2486       e    n          v       d           t          b     edible
## 2487       e    n          s       g           t          e     edible
## 2488       e    n          v       d           t          b     edible
## 2489       e    n          v       d           t          b     edible
## 2490       e    n          v       d           t          b     edible
## 2491       e    n          y       d           t          b     edible
## 2492       e    n          v       d           t          b     edible
## 2493       e    n          v       d           t          b     edible
## 2494       e    n          y       d           t          b     edible
## 2495       p    p          v       u           e          e  poisonous
## 2496       e    n          y       d           t          b     edible
## 2497       e    n          y       d           t          b     edible
## 2498       e    n          v       d           t          b     edible
## 2499       e    n          v       d           t          b     edible
## 2500       e    n          s       g           t          e     edible
## 2501       e    n          a       g           t          e     edible
## 2502       e    n          v       d           t          b     edible
## 2503       e    n          v       d           t          b     edible
## 2504       e    n          y       d           t          b     edible
## 2505       e    n          y       d           t          b     edible
## 2506       e    n          y       d           t          b     edible
## 2507       e    n          y       d           t          b     edible
## 2508       e    n          v       d           t          b     edible
## 2509       e    n          v       d           t          b     edible
## 2510       e    n          y       d           t          b     edible
## 2511       e    n          v       d           t          b     edible
## 2512       p    c          s       d           e          b  poisonous
## 2513       e    n          y       d           t          b     edible
## 2514       e    n          y       d           t          b     edible
## 2515       e    n          v       d           t          b     edible
## 2516       e    n          v       d           t          b     edible
## 2517       e    n          y       d           t          b     edible
## 2518       e    n          s       g           t          e     edible
## 2519       e    n          y       d           t          b     edible
## 2520       e    n          v       d           t          b     edible
## 2521       e    n          v       d           t          b     edible
## 2522       e    n          v       d           t          b     edible
## 2523       e    n          y       d           t          b     edible
## 2524       e    n          y       d           t          b     edible
## 2525       e    n          v       d           t          b     edible
## 2526       e    n          y       d           t          b     edible
## 2527       e    n          y       d           t          b     edible
## 2528       e    n          v       d           t          b     edible
## 2529       e    n          y       d           t          b     edible
## 2530       e    n          v       d           t          b     edible
## 2531       e    n          y       d           t          b     edible
## 2532       e    n          y       d           t          b     edible
## 2533       p    f          y       p           e          b  poisonous
## 2534       e    n          v       d           t          b     edible
## 2535       e    n          v       d           t          b     edible
## 2536       p    f          v       d           e          b  poisonous
## 2537       e    n          v       d           t          b     edible
## 2538       e    n          v       d           t          b     edible
## 2539       p    f          y       d           e          b  poisonous
## 2540       p    c          s       d           e          b  poisonous
## 2541       e    n          v       d           t          b     edible
## 2542       e    n          y       d           t          b     edible
## 2543       e    n          v       d           t          b     edible
## 2544       e    n          y       d           t          b     edible
## 2545       e    n          v       d           t          b     edible
## 2546       e    n          y       d           t          b     edible
## 2547       e    n          y       d           t          b     edible
## 2548       e    n          v       d           t          b     edible
## 2549       e    n          y       d           t          b     edible
## 2550       e    n          v       d           t          b     edible
## 2551       e    n          y       d           t          b     edible
## 2552       e    n          v       d           t          b     edible
## 2553       e    n          y       d           t          b     edible
## 2554       e    n          y       d           t          b     edible
## 2555       e    n          v       d           t          b     edible
## 2556       e    n          v       d           t          b     edible
## 2557       e    n          v       d           t          b     edible
## 2558       e    n          v       d           t          b     edible
## 2559       e    n          y       d           t          b     edible
## 2560       p    c          v       d           e          b  poisonous
## 2561       e    n          y       d           t          b     edible
## 2562       e    n          v       d           t          b     edible
## 2563       e    n          y       d           t          b     edible
## 2564       e    n          v       d           t          b     edible
## 2565       e    n          y       d           t          b     edible
## 2566       p    f          y       d           e          b  poisonous
## 2567       e    n          y       d           t          b     edible
## 2568       e    n          v       d           t          b     edible
## 2569       e    n          v       d           t          b     edible
## 2570       e    n          v       d           t          b     edible
## 2571       p    f          v       g           e          b  poisonous
## 2572       e    n          y       d           t          b     edible
## 2573       e    n          v       d           t          b     edible
## 2574       e    n          v       d           t          b     edible
## 2575       e    n          y       d           t          b     edible
## 2576       e    n          y       d           t          b     edible
## 2577       e    n          y       d           t          b     edible
## 2578       e    n          y       d           t          b     edible
## 2579       e    n          y       d           t          b     edible
## 2580       e    n          v       d           t          b     edible
## 2581       e    n          v       d           t          b     edible
## 2582       e    n          v       d           t          b     edible
## 2583       e    n          v       d           t          b     edible
## 2584       e    n          v       d           t          b     edible
## 2585       e    n          v       d           t          b     edible
## 2586       e    n          y       d           t          b     edible
## 2587       e    n          v       d           t          b     edible
## 2588       e    n          v       d           t          b     edible
## 2589       e    n          v       d           t          b     edible
## 2590       e    n          y       d           t          b     edible
## 2591       e    n          v       d           t          b     edible
## 2592       e    n          y       d           t          b     edible
## 2593       e    n          v       d           t          b     edible
## 2594       p    f          v       p           e          b  poisonous
## 2595       e    n          y       d           t          b     edible
## 2596       e    n          y       d           t          b     edible
## 2597       e    n          y       d           t          b     edible
## 2598       e    n          y       d           t          b     edible
## 2599       e    n          v       d           t          b     edible
## 2600       e    n          y       d           t          b     edible
## 2601       e    n          y       d           t          b     edible
## 2602       e    n          v       d           t          b     edible
## 2603       e    n          y       d           t          b     edible
## 2604       e    n          v       d           t          b     edible
## 2605       p    f          v       p           e          b  poisonous
## 2606       e    n          v       d           t          b     edible
## 2607       e    n          v       d           t          b     edible
## 2608       e    n          y       d           t          b     edible
## 2609       e    n          v       d           t          b     edible
## 2610       e    n          y       d           t          b     edible
## 2611       e    n          v       d           t          b     edible
## 2612       e    n          y       d           t          b     edible
## 2613       e    n          y       d           t          b     edible
## 2614       e    n          v       d           t          b     edible
## 2615       e    n          y       d           t          b     edible
## 2616       e    n          y       d           t          b     edible
## 2617       e    n          y       d           t          b     edible
## 2618       e    n          y       d           t          b     edible
## 2619       e    n          y       d           t          b     edible
## 2620       e    n          v       d           t          b     edible
## 2621       e    n          v       d           t          b     edible
## 2622       e    n          y       d           t          b     edible
## 2623       e    n          y       d           t          b     edible
## 2624       e    n          v       d           t          b     edible
## 2625       e    n          v       d           t          b     edible
## 2626       e    n          v       d           t          b     edible
## 2627       p    c          v       d           e          b  poisonous
## 2628       e    n          v       d           t          b     edible
## 2629       e    n          y       d           t          b     edible
## 2630       e    n          a       g           t          e     edible
## 2631       e    n          v       d           t          b     edible
## 2632       e    n          y       d           t          b     edible
## 2633       e    n          v       d           t          b     edible
## 2634       e    n          v       d           t          b     edible
## 2635       e    n          v       d           t          b     edible
## 2636       e    n          y       d           t          b     edible
## 2637       e    n          v       d           t          b     edible
## 2638       e    n          v       d           t          b     edible
## 2639       e    n          v       d           t          b     edible
## 2640       e    n          y       d           t          b     edible
## 2641       e    n          v       d           t          b     edible
## 2642       e    n          v       d           t          b     edible
## 2643       e    n          v       d           t          b     edible
## 2644       e    n          y       d           t          b     edible
## 2645       e    n          y       d           t          b     edible
## 2646       e    n          y       d           t          b     edible
## 2647       e    n          s       g           t          e     edible
## 2648       e    n          v       d           t          b     edible
## 2649       e    n          y       d           t          b     edible
## 2650       e    n          y       d           t          b     edible
## 2651       e    n          v       d           t          b     edible
## 2652       e    n          y       d           t          b     edible
## 2653       e    n          y       d           t          b     edible
## 2654       e    n          v       d           t          b     edible
## 2655       e    n          v       d           t          b     edible
## 2656       e    n          y       d           t          b     edible
## 2657       e    n          v       d           t          b     edible
## 2658       e    n          v       d           t          b     edible
## 2659       e    n          y       d           t          b     edible
## 2660       e    n          v       d           t          b     edible
## 2661       e    n          v       d           t          b     edible
## 2662       e    n          y       d           t          b     edible
## 2663       e    n          v       d           t          b     edible
## 2664       e    n          v       d           t          b     edible
## 2665       e    n          y       d           t          b     edible
## 2666       e    n          v       d           t          b     edible
## 2667       e    n          y       d           t          b     edible
## 2668       e    n          y       d           t          b     edible
## 2669       e    n          y       d           t          b     edible
## 2670       e    n          v       d           t          b     edible
## 2671       e    n          y       d           t          b     edible
## 2672       e    n          v       d           t          b     edible
## 2673       e    n          y       d           t          b     edible
## 2674       e    n          v       d           t          b     edible
## 2675       e    n          v       d           t          b     edible
## 2676       e    n          v       d           t          b     edible
## 2677       e    n          v       d           t          b     edible
## 2678       e    n          y       d           t          b     edible
## 2679       e    n          y       d           t          b     edible
## 2680       e    n          v       d           t          b     edible
## 2681       e    n          y       d           t          b     edible
## 2682       e    n          v       d           t          b     edible
## 2683       p    c          v       d           e          b  poisonous
## 2684       e    n          y       d           t          b     edible
## 2685       e    n          v       d           t          b     edible
## 2686       e    n          y       d           t          b     edible
## 2687       e    n          v       d           t          b     edible
## 2688       e    n          y       d           t          b     edible
## 2689       e    n          v       d           t          b     edible
## 2690       e    n          a       g           t          e     edible
## 2691       e    n          y       d           t          b     edible
## 2692       e    n          v       d           t          b     edible
## 2693       e    n          v       d           t          b     edible
## 2694       e    n          v       d           t          b     edible
## 2695       e    n          y       d           t          b     edible
## 2696       e    n          y       d           t          b     edible
## 2697       p    f          y       g           e          b  poisonous
## 2698       e    n          v       d           t          b     edible
## 2699       e    n          v       d           t          b     edible
## 2700       e    n          v       d           t          b     edible
## 2701       e    n          y       d           t          b     edible
## 2702       e    n          v       d           t          b     edible
## 2703       e    n          y       d           t          b     edible
## 2704       e    n          v       d           t          b     edible
## 2705       e    n          v       d           t          b     edible
## 2706       e    n          y       d           t          b     edible
## 2707       e    n          v       d           t          b     edible
## 2708       e    n          y       d           t          b     edible
## 2709       e    n          v       d           t          b     edible
## 2710       e    n          v       d           t          b     edible
## 2711       e    n          y       d           t          b     edible
## 2712       e    n          y       d           t          b     edible
## 2713       e    n          y       d           t          b     edible
## 2714       e    n          v       d           t          b     edible
## 2715       e    n          y       d           t          b     edible
## 2716       e    n          y       d           t          b     edible
## 2717       e    n          v       d           t          b     edible
## 2718       e    n          y       d           t          b     edible
## 2719       e    n          v       d           t          b     edible
## 2720       e    n          v       d           t          b     edible
## 2721       e    n          y       d           t          b     edible
## 2722       e    n          y       d           t          b     edible
## 2723       e    n          v       d           t          b     edible
## 2724       e    n          v       d           t          b     edible
## 2725       e    n          y       d           t          b     edible
## 2726       e    n          y       d           t          b     edible
## 2727       e    n          y       d           t          b     edible
## 2728       e    n          v       d           t          b     edible
## 2729       e    n          y       d           t          b     edible
## 2730       e    n          s       g           t          e     edible
## 2731       e    n          y       d           t          b     edible
## 2732       e    n          y       d           t          b     edible
## 2733       e    n          y       d           t          b     edible
## 2734       e    n          y       d           t          b     edible
## 2735       e    n          v       d           t          b     edible
## 2736       e    n          y       d           t          b     edible
## 2737       e    n          y       d           t          b     edible
## 2738       e    n          y       d           t          b     edible
## 2739       e    n          y       d           t          b     edible
## 2740       e    n          y       d           t          b     edible
## 2741       e    n          y       d           t          b     edible
## 2742       e    n          y       d           t          b     edible
## 2743       e    n          v       d           t          b     edible
## 2744       e    n          v       d           t          b     edible
## 2745       e    n          y       d           t          b     edible
## 2746       e    n          v       d           t          b     edible
## 2747       e    n          y       d           t          b     edible
## 2748       e    n          y       d           t          b     edible
## 2749       p    c          v       d           e          b  poisonous
## 2750       e    n          y       d           t          b     edible
## 2751       e    n          y       d           t          b     edible
## 2752       e    n          y       d           t          b     edible
## 2753       e    n          v       d           t          b     edible
## 2754       e    n          v       d           t          b     edible
## 2755       e    n          v       d           t          b     edible
## 2756       e    n          y       d           t          b     edible
## 2757       e    n          v       d           t          b     edible
## 2758       e    n          y       d           t          b     edible
## 2759       e    n          y       d           t          b     edible
## 2760       e    n          y       d           t          b     edible
## 2761       e    n          y       d           t          b     edible
## 2762       e    n          y       d           t          b     edible
## 2763       e    n          v       d           t          b     edible
## 2764       e    n          v       d           t          b     edible
## 2765       e    n          v       d           t          b     edible
## 2766       p    f          v       d           e          b  poisonous
## 2767       e    n          v       d           t          b     edible
## 2768       e    n          y       d           t          b     edible
## 2769       e    n          y       d           t          b     edible
## 2770       p    f          y       d           e          b  poisonous
## 2771       e    n          v       d           t          b     edible
## 2772       e    n          v       d           t          b     edible
## 2773       e    n          v       d           t          b     edible
## 2774       e    n          v       d           t          b     edible
## 2775       e    n          y       d           t          b     edible
## 2776       e    n          v       d           t          b     edible
## 2777       e    n          v       d           t          b     edible
## 2778       e    n          v       d           t          b     edible
## 2779       e    n          v       d           t          b     edible
## 2780       e    n          y       d           t          b     edible
## 2781       e    n          v       d           t          b     edible
## 2782       e    n          y       d           t          b     edible
## 2783       e    n          y       d           t          b     edible
## 2784       e    n          v       d           t          b     edible
## 2785       e    n          y       d           t          b     edible
## 2786       e    n          y       d           t          b     edible
## 2787       e    n          y       d           t          b     edible
## 2788       e    n          s       g           t          e     edible
## 2789       e    n          y       d           t          b     edible
## 2790       e    n          y       d           t          b     edible
## 2791       e    n          y       d           t          b     edible
## 2792       e    n          v       d           t          b     edible
## 2793       e    n          y       d           t          b     edible
## 2794       e    n          v       d           t          b     edible
## 2795       e    n          v       d           t          b     edible
## 2796       e    n          v       d           t          b     edible
## 2797       p    c          s       d           e          b  poisonous
## 2798       e    n          y       d           t          b     edible
## 2799       e    n          v       d           t          b     edible
## 2800       e    n          y       d           t          b     edible
## 2801       e    n          s       g           t          e     edible
## 2802       e    n          y       d           t          b     edible
## 2803       e    n          v       d           t          b     edible
## 2804       e    n          y       d           t          b     edible
## 2805       e    n          y       d           t          b     edible
## 2806       e    n          y       d           t          b     edible
## 2807       e    n          v       d           t          b     edible
## 2808       e    n          v       d           t          b     edible
## 2809       e    n          v       d           t          b     edible
## 2810       e    n          v       d           t          b     edible
## 2811       e    n          v       d           t          b     edible
## 2812       e    n          v       d           t          b     edible
## 2813       e    n          y       d           t          b     edible
## 2814       e    n          v       d           t          b     edible
## 2815       e    n          v       d           t          b     edible
## 2816       e    n          y       d           t          b     edible
## 2817       e    n          s       g           t          e     edible
## 2818       e    n          y       d           t          b     edible
## 2819       e    n          y       d           t          b     edible
## 2820       e    n          v       d           t          b     edible
## 2821       e    n          y       d           t          b     edible
## 2822       e    n          y       d           t          b     edible
## 2823       e    n          v       d           t          b     edible
## 2824       e    n          y       d           t          b     edible
## 2825       e    n          v       d           t          b     edible
## 2826       e    n          v       d           t          b     edible
## 2827       e    n          v       d           t          b     edible
## 2828       e    n          y       d           t          b     edible
## 2829       e    n          y       d           t          b     edible
## 2830       e    n          v       d           t          b     edible
## 2831       e    n          y       d           t          b     edible
## 2832       e    n          v       d           t          b     edible
## 2833       e    n          y       d           t          b     edible
## 2834       e    n          v       d           t          b     edible
## 2835       e    n          y       d           t          b     edible
## 2836       e    n          v       d           t          b     edible
## 2837       e    n          y       d           t          b     edible
## 2838       e    n          y       d           t          b     edible
## 2839       e    n          y       d           t          b     edible
## 2840       e    n          v       d           t          b     edible
## 2841       p    c          v       d           e          b  poisonous
## 2842       e    n          y       d           t          b     edible
## 2843       e    n          v       d           t          b     edible
## 2844       e    n          s       g           t          e     edible
## 2845       e    n          y       d           t          b     edible
## 2846       e    n          y       d           t          b     edible
## 2847       e    n          y       d           t          b     edible
## 2848       e    n          y       d           t          b     edible
## 2849       e    n          v       d           t          b     edible
## 2850       e    n          y       d           t          b     edible
## 2851       e    n          y       d           t          b     edible
## 2852       e    n          v       d           t          b     edible
## 2853       e    n          v       d           t          b     edible
## 2854       e    n          y       d           t          b     edible
## 2855       e    n          v       d           t          b     edible
## 2856       e    n          y       d           t          b     edible
## 2857       e    n          v       d           t          b     edible
## 2858       e    n          y       d           t          b     edible
## 2859       e    n          y       d           t          b     edible
## 2860       p    c          s       d           e          b  poisonous
## 2861       e    n          v       d           t          b     edible
## 2862       e    n          v       d           t          b     edible
## 2863       e    n          y       d           t          b     edible
## 2864       e    n          v       d           t          b     edible
## 2865       e    n          y       d           t          b     edible
## 2866       e    n          y       d           t          b     edible
## 2867       e    n          y       d           t          b     edible
## 2868       e    n          y       d           t          b     edible
## 2869       e    n          v       d           t          b     edible
## 2870       e    n          v       d           t          b     edible
## 2871       e    n          v       d           t          b     edible
## 2872       e    n          y       d           t          b     edible
## 2873       e    n          y       d           t          b     edible
## 2874       e    n          y       d           t          b     edible
## 2875       e    n          y       d           t          b     edible
## 2876       e    n          y       d           t          b     edible
## 2877       e    n          y       d           t          b     edible
## 2878       e    n          y       d           t          b     edible
## 2879       e    n          y       d           t          b     edible
## 2880       e    n          v       d           t          b     edible
## 2881       e    n          s       g           t          e     edible
## 2882       e    n          v       d           t          b     edible
## 2883       e    n          y       d           t          b     edible
## 2884       e    n          v       d           t          b     edible
## 2885       e    n          y       d           t          b     edible
## 2886       e    n          v       d           t          b     edible
## 2887       p    c          v       d           e          b  poisonous
## 2888       e    n          v       d           t          b     edible
## 2889       e    n          v       d           t          b     edible
## 2890       e    n          a       g           t          e     edible
## 2891       e    n          y       d           t          b     edible
## 2892       p    c          v       d           e          b  poisonous
## 2893       e    n          v       d           t          b     edible
## 2894       e    n          v       d           t          b     edible
## 2895       e    n          v       d           t          b     edible
## 2896       e    n          v       d           t          b     edible
## 2897       e    n          v       d           t          b     edible
## 2898       e    n          y       d           t          b     edible
## 2899       e    n          v       d           t          b     edible
## 2900       e    n          y       d           t          b     edible
## 2901       e    n          y       d           t          b     edible
## 2902       e    n          v       d           t          b     edible
## 2903       p    f          y       p           e          b  poisonous
## 2904       e    n          y       d           t          b     edible
## 2905       e    n          v       d           t          b     edible
## 2906       e    n          y       d           t          b     edible
## 2907       e    n          y       d           t          b     edible
## 2908       e    n          y       d           t          b     edible
## 2909       e    n          y       d           t          b     edible
## 2910       e    n          y       d           t          b     edible
## 2911       e    n          y       d           t          b     edible
## 2912       e    n          v       d           t          b     edible
## 2913       e    n          v       d           t          b     edible
## 2914       e    n          y       d           t          b     edible
## 2915       e    n          v       d           t          b     edible
## 2916       e    n          y       d           t          b     edible
## 2917       e    n          y       d           t          b     edible
## 2918       e    n          y       d           t          b     edible
## 2919       e    n          v       d           t          b     edible
## 2920       e    n          y       d           t          b     edible
## 2921       e    n          v       d           t          b     edible
## 2922       e    n          y       d           t          b     edible
## 2923       e    n          y       d           t          b     edible
## 2924       e    n          y       d           t          b     edible
## 2925       e    n          y       d           t          b     edible
## 2926       p    f          y       p           e          b  poisonous
## 2927       e    n          v       d           t          b     edible
## 2928       e    n          y       d           t          b     edible
## 2929       e    n          v       d           t          b     edible
## 2930       e    n          v       d           t          b     edible
## 2931       e    n          y       d           t          b     edible
## 2932       e    n          y       d           t          b     edible
## 2933       e    n          v       d           t          b     edible
## 2934       e    n          v       d           t          b     edible
## 2935       e    n          v       d           t          b     edible
## 2936       e    n          v       d           t          b     edible
## 2937       p    f          v       p           e          b  poisonous
## 2938       e    n          y       d           t          b     edible
## 2939       e    n          y       d           t          b     edible
## 2940       e    n          v       d           t          b     edible
## 2941       e    n          v       d           t          b     edible
## 2942       e    n          y       d           t          b     edible
## 2943       e    n          v       d           t          b     edible
## 2944       e    n          v       d           t          b     edible
## 2945       e    n          y       d           t          b     edible
## 2946       e    n          y       d           t          b     edible
## 2947       e    n          v       d           t          b     edible
## 2948       e    n          v       d           t          b     edible
## 2949       e    n          v       d           t          b     edible
## 2950       e    n          y       d           t          b     edible
## 2951       e    n          v       d           t          b     edible
## 2952       e    n          y       d           t          b     edible
## 2953       e    n          y       d           t          b     edible
## 2954       e    n          y       d           t          b     edible
## 2955       e    n          v       d           t          b     edible
## 2956       e    n          y       d           t          b     edible
## 2957       e    n          y       d           t          b     edible
## 2958       e    n          y       d           t          b     edible
## 2959       e    n          v       d           t          b     edible
## 2960       e    n          v       d           t          b     edible
## 2961       e    n          y       d           t          b     edible
## 2962       e    n          y       d           t          b     edible
## 2963       e    n          y       d           t          b     edible
## 2964       e    n          y       d           t          b     edible
## 2965       e    n          v       d           t          b     edible
## 2966       e    n          s       g           t          e     edible
## 2967       e    n          v       d           t          b     edible
## 2968       e    n          y       d           t          b     edible
## 2969       e    n          y       d           t          b     edible
## 2970       e    n          y       d           t          b     edible
## 2971       e    n          v       d           t          b     edible
## 2972       e    n          v       d           t          b     edible
## 2973       e    n          y       d           t          b     edible
## 2974       e    n          y       d           t          b     edible
## 2975       e    n          y       d           t          b     edible
## 2976       e    n          v       d           t          b     edible
## 2977       e    n          y       d           t          b     edible
## 2978       e    n          y       d           t          b     edible
## 2979       e    n          v       d           t          b     edible
## 2980       e    n          v       d           t          b     edible
## 2981       e    n          v       d           t          b     edible
## 2982       e    n          v       d           t          b     edible
## 2983       e    n          v       d           t          b     edible
## 2984       e    n          y       d           t          b     edible
## 2985       e    n          y       d           t          b     edible
## 2986       e    n          y       d           t          b     edible
## 2987       e    n          v       d           t          b     edible
## 2988       e    n          y       d           t          b     edible
## 2989       e    n          v       d           t          b     edible
## 2990       p    f          v       d           e          b  poisonous
## 2991       e    n          v       d           t          b     edible
## 2992       e    n          y       d           t          b     edible
## 2993       e    n          y       d           t          b     edible
## 2994       e    n          v       d           t          b     edible
## 2995       e    n          v       d           t          b     edible
## 2996       e    n          y       d           t          b     edible
## 2997       e    n          y       d           t          b     edible
## 2998       e    n          v       d           t          b     edible
## 2999       e    n          v       d           t          b     edible
## 3000       e    n          v       d           t          b     edible
## 3001       p    f          v       p           e          b  poisonous
## 3002       e    n          y       d           t          b     edible
## 3003       p    f          y       d           e          b  poisonous
## 3004       p    c          s       d           e          b  poisonous
## 3005       e    n          y       d           t          b     edible
## 3006       e    n          v       d           t          b     edible
## 3007       e    n          y       d           t          b     edible
## 3008       e    n          y       d           t          b     edible
## 3009       p    f          y       p           e          b  poisonous
## 3010       e    n          v       d           t          b     edible
## 3011       e    n          y       d           t          b     edible
## 3012       e    n          y       d           t          b     edible
## 3013       p    c          s       d           e          b  poisonous
## 3014       e    n          y       d           t          b     edible
## 3015       e    n          v       d           t          b     edible
## 3016       p    f          v       g           e          b  poisonous
## 3017       p    f          y       p           e          b  poisonous
## 3018       e    n          v       d           t          b     edible
## 3019       e    n          v       d           t          b     edible
## 3020       e    n          v       d           t          b     edible
## 3021       e    n          v       d           t          b     edible
## 3022       e    n          y       d           t          b     edible
## 3023       e    n          v       d           t          b     edible
## 3024       e    n          y       d           t          b     edible
## 3025       e    n          v       d           t          b     edible
## 3026       p    c          s       d           e          b  poisonous
## 3027       p    f          y       d           e          b  poisonous
## 3028       e    n          y       d           t          b     edible
## 3029       e    n          v       d           t          b     edible
## 3030       e    n          v       d           t          b     edible
## 3031       e    n          y       d           t          b     edible
## 3032       e    n          y       d           t          b     edible
## 3033       e    n          v       d           t          b     edible
## 3034       p    f          v       p           e          b  poisonous
## 3035       e    n          y       d           t          b     edible
## 3036       e    n          v       d           t          b     edible
## 3037       p    c          s       d           e          b  poisonous
## 3038       e    n          y       d           t          b     edible
## 3039       e    n          v       d           t          b     edible
## 3040       p    f          v       g           e          b  poisonous
## 3041       p    f          v       d           e          b  poisonous
## 3042       e    n          v       d           t          b     edible
## 3043       e    n          v       d           t          b     edible
## 3044       e    n          v       d           t          b     edible
## 3045       e    n          v       d           t          b     edible
## 3046       e    n          v       d           t          b     edible
## 3047       p    c          v       d           e          b  poisonous
## 3048       e    n          y       d           t          b     edible
## 3049       e    n          v       d           t          b     edible
## 3050       e    n          y       d           t          b     edible
## 3051       e    n          v       d           t          b     edible
## 3052       p    c          v       d           e          b  poisonous
## 3053       e    n          v       d           t          b     edible
## 3054       e    n          y       d           t          b     edible
## 3055       e    n          v       d           t          b     edible
## 3056       e    n          v       d           t          b     edible
## 3057       p    c          s       d           e          b  poisonous
## 3058       p    c          s       d           e          b  poisonous
## 3059       e    n          y       d           t          b     edible
## 3060       p    f          y       d           e          b  poisonous
## 3061       p    c          v       d           e          b  poisonous
## 3062       p    f          v       p           e          b  poisonous
## 3063       e    n          v       d           t          b     edible
## 3064       p    f          y       p           e          b  poisonous
## 3065       e    n          v       d           t          b     edible
## 3066       e    n          y       d           t          b     edible
## 3067       e    n          y       d           t          b     edible
## 3068       p    c          s       d           e          b  poisonous
## 3069       p    f          v       p           e          b  poisonous
## 3070       e    n          v       d           t          b     edible
## 3071       e    n          y       d           t          b     edible
## 3072       e    n          y       d           t          b     edible
## 3073       p    f          v       p           e          b  poisonous
## 3074       e    n          y       d           t          b     edible
## 3075       p    f          y       p           e          b  poisonous
## 3076       e    n          y       d           t          b     edible
## 3077       e    n          v       d           t          b     edible
## 3078       p    f          v       p           e          b  poisonous
## 3079       e    n          v       d           t          b     edible
## 3080       e    n          y       d           t          b     edible
## 3081       e    n          y       d           t          b     edible
## 3082       p    f          v       p           e          b  poisonous
## 3083       e    n          v       d           t          b     edible
## 3084       e    n          v       d           t          b     edible
## 3085       p    f          v       g           e          b  poisonous
## 3086       e    n          y       d           t          b     edible
## 3087       p    f          y       d           e          b  poisonous
## 3088       e    n          y       d           t          b     edible
## 3089       p    f          y       g           e          b  poisonous
## 3090       p    f          y       p           e          b  poisonous
## 3091       p    f          y       g           e          b  poisonous
## 3092       e    n          y       d           t          b     edible
## 3093       p    f          v       g           e          b  poisonous
## 3094       e    n          v       d           t          b     edible
## 3095       p    c          v       d           e          b  poisonous
## 3096       e    n          v       d           t          b     edible
## 3097       p    c          s       d           e          b  poisonous
## 3098       e    n          y       d           t          b     edible
## 3099       e    n          y       d           t          b     edible
## 3100       e    n          y       d           t          b     edible
## 3101       e    n          y       d           t          b     edible
## 3102       p    f          y       g           e          b  poisonous
## 3103       p    f          y       p           e          b  poisonous
## 3104       p    c          s       d           e          b  poisonous
## 3105       e    n          v       d           t          b     edible
## 3106       e    n          y       d           t          b     edible
## 3107       e    n          v       d           t          b     edible
## 3108       e    n          y       d           t          b     edible
## 3109       p    f          v       g           e          b  poisonous
## 3110       p    c          v       d           e          b  poisonous
## 3111       e    n          y       d           t          b     edible
## 3112       e    n          v       d           t          b     edible
## 3113       e    n          v       d           t          b     edible
## 3114       e    n          v       d           t          b     edible
## 3115       e    n          y       d           t          b     edible
## 3116       e    n          y       d           t          b     edible
## 3117       e    n          v       d           t          b     edible
## 3118       p    c          v       d           e          b  poisonous
## 3119       p    c          v       d           e          b  poisonous
## 3120       e    n          y       d           t          b     edible
## 3121       e    n          y       d           t          b     edible
## 3122       p    f          y       d           e          b  poisonous
## 3123       e    n          v       d           t          b     edible
## 3124       p    c          s       d           e          b  poisonous
## 3125       e    n          y       d           t          b     edible
## 3126       e    n          y       d           t          b     edible
## 3127       e    n          v       d           t          b     edible
## 3128       e    n          v       d           t          b     edible
## 3129       e    n          y       d           t          b     edible
## 3130       e    n          v       d           t          b     edible
## 3131       e    n          y       d           t          b     edible
## 3132       e    n          y       d           t          b     edible
## 3133       e    n          v       d           t          b     edible
## 3134       e    n          y       d           t          b     edible
## 3135       e    n          y       d           t          b     edible
## 3136       e    n          v       d           t          b     edible
## 3137       e    n          v       d           t          b     edible
## 3138       p    f          v       p           e          b  poisonous
## 3139       e    n          y       d           t          b     edible
## 3140       e    n          v       d           t          b     edible
## 3141       p    f          y       d           e          b  poisonous
## 3142       e    n          y       d           t          b     edible
## 3143       e    n          y       d           t          b     edible
## 3144       e    n          y       d           t          b     edible
## 3145       e    n          y       d           t          b     edible
## 3146       e    n          v       d           t          b     edible
## 3147       p    c          s       d           e          b  poisonous
## 3148       p    c          s       d           e          b  poisonous
## 3149       e    n          v       d           t          b     edible
## 3150       e    n          y       d           t          b     edible
## 3151       e    n          y       d           t          b     edible
## 3152       p    f          y       d           e          b  poisonous
## 3153       e    n          v       d           t          b     edible
## 3154       e    n          y       d           t          b     edible
## 3155       e    n          y       d           t          b     edible
## 3156       p    c          s       d           e          b  poisonous
## 3157       e    n          v       d           t          b     edible
## 3158       e    n          v       d           t          b     edible
## 3159       p    f          y       d           e          b  poisonous
## 3160       e    n          y       d           t          b     edible
## 3161       p    f          v       p           e          b  poisonous
## 3162       p    c          s       d           e          b  poisonous
## 3163       e    n          v       d           t          b     edible
## 3164       p    f          v       p           e          b  poisonous
## 3165       p    c          s       d           e          b  poisonous
## 3166       p    f          v       p           e          b  poisonous
## 3167       e    n          v       d           t          b     edible
## 3168       p    f          v       p           e          b  poisonous
## 3169       p    c          s       d           e          b  poisonous
## 3170       e    n          y       d           t          b     edible
## 3171       e    n          v       d           t          b     edible
## 3172       e    n          y       d           t          b     edible
## 3173       p    f          v       p           e          b  poisonous
## 3174       p    c          v       d           e          b  poisonous
## 3175       e    n          v       d           t          b     edible
## 3176       e    n          y       d           t          b     edible
## 3177       e    n          y       d           t          b     edible
## 3178       e    n          v       d           t          b     edible
## 3179       p    f          v       g           e          b  poisonous
## 3180       e    n          v       d           t          b     edible
## 3181       p    c          v       d           e          b  poisonous
## 3182       p    c          s       d           e          b  poisonous
## 3183       e    n          y       d           t          b     edible
## 3184       e    n          y       d           t          b     edible
## 3185       e    n          v       d           t          b     edible
## 3186       e    n          v       d           t          b     edible
## 3187       p    f          v       d           e          b  poisonous
## 3188       p    f          y       p           e          b  poisonous
## 3189       e    n          y       d           t          b     edible
## 3190       p    f          v       g           e          b  poisonous
## 3191       p    c          s       d           e          b  poisonous
## 3192       e    n          y       d           t          b     edible
## 3193       p    f          v       d           e          b  poisonous
## 3194       e    n          y       d           t          b     edible
## 3195       e    n          v       d           t          b     edible
## 3196       e    n          y       d           t          b     edible
## 3197       e    n          v       d           t          b     edible
## 3198       e    n          v       d           t          b     edible
## 3199       p    f          v       g           e          b  poisonous
## 3200       e    n          y       d           t          b     edible
## 3201       p    f          y       p           e          b  poisonous
## 3202       e    n          y       d           t          b     edible
## 3203       e    n          v       d           t          b     edible
## 3204       e    n          y       d           t          b     edible
## 3205       p    f          y       g           e          b  poisonous
## 3206       e    n          v       d           t          b     edible
## 3207       e    n          y       d           t          b     edible
## 3208       p    f          v       g           e          b  poisonous
## 3209       p    c          s       d           e          b  poisonous
## 3210       e    n          v       d           t          b     edible
## 3211       p    f          v       d           e          b  poisonous
## 3212       e    n          y       d           t          b     edible
## 3213       e    n          v       d           t          b     edible
## 3214       e    n          v       d           t          b     edible
## 3215       e    n          v       d           t          b     edible
## 3216       e    n          v       d           t          b     edible
## 3217       e    n          v       d           t          b     edible
## 3218       p    c          v       d           e          b  poisonous
## 3219       e    n          y       d           t          b     edible
## 3220       e    n          y       d           t          b     edible
## 3221       e    n          y       d           t          b     edible
## 3222       e    n          y       d           t          b     edible
## 3223       e    n          y       d           t          b     edible
## 3224       e    n          v       d           t          b     edible
## 3225       e    n          y       d           t          b     edible
## 3226       p    f          y       p           e          b  poisonous
## 3227       p    c          v       d           e          b  poisonous
## 3228       e    n          v       d           t          b     edible
## 3229       e    n          v       d           t          b     edible
## 3230       e    n          v       d           t          b     edible
## 3231       p    f          y       p           e          b  poisonous
## 3232       p    c          s       d           e          b  poisonous
## 3233       p    f          y       p           e          b  poisonous
## 3234       e    n          y       d           t          b     edible
## 3235       p    f          v       g           e          b  poisonous
## 3236       e    n          y       d           t          b     edible
## 3237       e    n          y       d           t          b     edible
## 3238       e    n          v       d           t          b     edible
## 3239       p    f          v       d           e          b  poisonous
## 3240       e    n          y       d           t          b     edible
## 3241       e    n          v       d           t          b     edible
## 3242       p    c          s       d           e          b  poisonous
## 3243       p    f          y       g           e          b  poisonous
## 3244       e    n          y       d           t          b     edible
## 3245       p    f          y       d           e          b  poisonous
## 3246       p    f          y       d           e          b  poisonous
## 3247       e    n          v       d           t          b     edible
## 3248       p    f          y       g           e          b  poisonous
## 3249       e    n          y       d           t          b     edible
## 3250       e    n          y       d           t          b     edible
## 3251       e    n          v       d           t          b     edible
## 3252       e    n          y       d           t          b     edible
## 3253       p    c          s       d           e          b  poisonous
## 3254       e    n          v       d           t          b     edible
## 3255       e    n          v       d           t          b     edible
## 3256       e    n          v       d           t          b     edible
## 3257       e    n          v       d           t          b     edible
## 3258       p    c          v       d           e          b  poisonous
## 3259       p    f          y       g           e          b  poisonous
## 3260       e    n          y       d           t          b     edible
## 3261       e    n          y       d           t          b     edible
## 3262       p    c          v       d           e          b  poisonous
## 3263       e    n          y       d           t          b     edible
## 3264       p    f          y       p           e          b  poisonous
## 3265       p    f          y       p           e          b  poisonous
## 3266       e    n          y       d           t          b     edible
## 3267       e    n          v       d           t          b     edible
## 3268       p    c          v       d           e          b  poisonous
## 3269       p    f          v       d           e          b  poisonous
## 3270       p    c          s       d           e          b  poisonous
## 3271       e    n          v       d           t          b     edible
## 3272       e    n          v       d           t          b     edible
## 3273       e    n          y       d           t          b     edible
## 3274       p    f          y       g           e          b  poisonous
## 3275       e    n          y       d           t          b     edible
## 3276       p    c          v       d           e          b  poisonous
## 3277       p    f          v       d           e          b  poisonous
## 3278       e    n          y       d           t          b     edible
## 3279       e    n          y       d           t          b     edible
## 3280       p    f          v       p           e          b  poisonous
## 3281       p    f          v       p           e          b  poisonous
## 3282       p    c          v       d           e          b  poisonous
## 3283       e    n          v       d           t          b     edible
## 3284       p    f          v       d           e          b  poisonous
## 3285       e    n          y       d           t          b     edible
## 3286       e    n          v       d           t          b     edible
## 3287       e    n          y       d           t          b     edible
## 3288       e    n          y       d           t          b     edible
## 3289       e    n          y       d           t          b     edible
## 3290       e    n          y       d           t          b     edible
## 3291       e    n          y       d           t          b     edible
## 3292       p    c          s       d           e          b  poisonous
## 3293       e    n          v       d           t          b     edible
## 3294       e    n          v       d           t          b     edible
## 3295       p    c          s       d           e          b  poisonous
## 3296       e    n          y       d           t          b     edible
## 3297       e    n          v       d           t          b     edible
## 3298       p    f          v       g           e          b  poisonous
## 3299       e    n          v       d           t          b     edible
## 3300       p    f          y       g           e          b  poisonous
## 3301       e    n          y       d           t          b     edible
## 3302       e    n          y       d           t          b     edible
## 3303       e    n          v       d           t          b     edible
## 3304       p    f          v       g           e          b  poisonous
## 3305       e    n          v       d           t          b     edible
## 3306       p    c          s       d           e          b  poisonous
## 3307       e    n          y       d           t          b     edible
## 3308       e    n          y       d           t          b     edible
## 3309       e    n          y       d           t          b     edible
## 3310       e    n          v       d           t          b     edible
## 3311       e    n          y       d           t          b     edible
## 3312       e    n          v       d           t          b     edible
## 3313       p    f          y       d           e          b  poisonous
## 3314       e    n          y       d           t          b     edible
## 3315       e    n          v       d           t          b     edible
## 3316       e    n          y       d           t          b     edible
## 3317       e    n          v       d           t          b     edible
## 3318       e    n          y       d           t          b     edible
## 3319       e    n          y       d           t          b     edible
## 3320       e    n          v       d           t          b     edible
## 3321       e    n          v       d           t          b     edible
## 3322       p    c          s       d           e          b  poisonous
## 3323       p    f          v       d           e          b  poisonous
## 3324       e    n          v       d           t          b     edible
## 3325       e    n          v       d           t          b     edible
## 3326       p    c          s       d           e          b  poisonous
## 3327       p    c          v       d           e          b  poisonous
## 3328       p    f          y       p           e          b  poisonous
## 3329       e    n          v       d           t          b     edible
## 3330       e    n          v       d           t          b     edible
## 3331       p    c          s       d           e          b  poisonous
## 3332       e    n          y       d           t          b     edible
## 3333       e    n          y       d           t          b     edible
## 3334       p    f          v       g           e          b  poisonous
## 3335       e    n          v       d           t          b     edible
## 3336       e    n          y       d           t          b     edible
## 3337       p    c          v       d           e          b  poisonous
## 3338       e    n          y       d           t          b     edible
## 3339       p    f          v       d           e          b  poisonous
## 3340       e    n          y       d           t          b     edible
## 3341       p    f          y       p           e          b  poisonous
## 3342       e    n          v       d           t          b     edible
## 3343       e    n          y       d           t          b     edible
## 3344       e    n          v       d           t          b     edible
## 3345       e    n          v       d           t          b     edible
## 3346       p    c          v       d           e          b  poisonous
## 3347       e    n          y       d           t          b     edible
## 3348       e    n          v       d           t          b     edible
## 3349       p    f          y       p           e          b  poisonous
## 3350       e    n          v       d           t          b     edible
## 3351       p    c          s       d           e          b  poisonous
## 3352       p    f          v       g           e          b  poisonous
## 3353       e    n          v       d           t          b     edible
## 3354       e    n          v       d           t          b     edible
## 3355       e    n          v       d           t          b     edible
## 3356       e    n          y       d           t          b     edible
## 3357       p    c          v       d           e          b  poisonous
## 3358       p    f          v       g           e          b  poisonous
## 3359       p    c          v       d           e          b  poisonous
## 3360       e    n          v       d           t          b     edible
## 3361       e    n          v       d           t          b     edible
## 3362       p    f          y       d           e          b  poisonous
## 3363       p    f          y       g           e          b  poisonous
## 3364       e    n          y       d           t          b     edible
## 3365       p    c          s       d           e          b  poisonous
## 3366       p    c          s       d           e          b  poisonous
## 3367       e    n          v       d           t          b     edible
## 3368       e    n          y       d           t          b     edible
## 3369       e    n          y       d           t          b     edible
## 3370       e    n          v       d           t          b     edible
## 3371       p    c          v       d           e          b  poisonous
## 3372       p    f          y       d           e          b  poisonous
## 3373       e    n          v       d           t          b     edible
## 3374       e    n          v       d           t          b     edible
## 3375       e    n          v       d           t          b     edible
## 3376       e    n          y       d           t          b     edible
## 3377       e    n          y       d           t          b     edible
## 3378       e    n          v       d           t          b     edible
## 3379       p    f          v       p           e          b  poisonous
## 3380       e    n          y       d           t          b     edible
## 3381       p    c          s       d           e          b  poisonous
## 3382       e    n          y       d           t          b     edible
## 3383       e    n          y       d           t          b     edible
## 3384       e    n          v       d           t          b     edible
## 3385       e    n          v       d           t          b     edible
## 3386       e    n          v       d           t          b     edible
## 3387       e    n          v       d           t          b     edible
## 3388       p    c          v       d           e          b  poisonous
## 3389       p    f          y       d           e          b  poisonous
## 3390       p    c          v       d           e          b  poisonous
## 3391       e    n          y       d           t          b     edible
## 3392       e    n          v       d           t          b     edible
## 3393       p    c          s       d           e          b  poisonous
## 3394       e    n          y       d           t          b     edible
## 3395       p    c          v       d           e          b  poisonous
## 3396       e    n          y       d           t          b     edible
## 3397       p    c          s       d           e          b  poisonous
## 3398       e    n          v       d           t          b     edible
## 3399       p    f          y       g           e          b  poisonous
## 3400       p    c          s       d           e          b  poisonous
## 3401       e    n          y       d           t          b     edible
## 3402       p    f          y       g           e          b  poisonous
## 3403       p    c          v       d           e          b  poisonous
## 3404       e    n          y       d           t          b     edible
## 3405       p    c          s       d           e          b  poisonous
## 3406       e    n          v       d           t          b     edible
## 3407       e    n          y       d           t          b     edible
## 3408       e    n          y       d           t          b     edible
## 3409       e    n          v       d           t          b     edible
## 3410       e    n          y       d           t          b     edible
## 3411       p    c          s       d           e          b  poisonous
## 3412       e    n          v       d           t          b     edible
## 3413       e    n          v       d           t          b     edible
## 3414       e    n          y       d           t          b     edible
## 3415       e    n          y       d           t          b     edible
## 3416       e    n          v       d           t          b     edible
## 3417       p    f          y       g           e          b  poisonous
## 3418       p    c          s       d           e          b  poisonous
## 3419       e    n          y       d           t          b     edible
## 3420       e    n          y       d           t          b     edible
## 3421       p    c          v       d           e          b  poisonous
## 3422       e    n          y       d           t          b     edible
## 3423       e    n          y       d           t          b     edible
## 3424       e    n          v       d           t          b     edible
## 3425       p    f          v       p           e          b  poisonous
## 3426       p    c          v       d           e          b  poisonous
## 3427       e    n          y       d           t          b     edible
## 3428       e    n          y       d           t          b     edible
## 3429       e    n          y       d           t          b     edible
## 3430       e    n          v       d           t          b     edible
## 3431       e    n          v       d           t          b     edible
## 3432       p    f          v       p           e          b  poisonous
## 3433       e    n          y       d           t          b     edible
## 3434       e    n          v       d           t          b     edible
## 3435       p    c          v       d           e          b  poisonous
## 3436       e    n          v       d           t          b     edible
## 3437       p    f          y       p           e          b  poisonous
## 3438       e    n          y       d           t          b     edible
## 3439       p    f          v       p           e          b  poisonous
## 3440       e    n          v       d           t          b     edible
## 3441       p    c          s       d           e          b  poisonous
## 3442       e    n          v       d           t          b     edible
## 3443       p    c          v       d           e          b  poisonous
## 3444       p    c          s       d           e          b  poisonous
## 3445       e    n          v       d           t          b     edible
## 3446       p    c          v       d           e          b  poisonous
## 3447       p    f          y       d           e          b  poisonous
## 3448       e    n          v       d           t          b     edible
## 3449       e    n          y       d           t          b     edible
## 3450       e    n          y       d           t          b     edible
## 3451       p    f          y       g           e          b  poisonous
## 3452       p    c          v       d           e          b  poisonous
## 3453       p    f          v       p           e          b  poisonous
## 3454       p    c          s       d           e          b  poisonous
## 3455       e    n          y       d           t          b     edible
## 3456       e    n          y       d           t          b     edible
## 3457       p    c          s       d           e          b  poisonous
## 3458       e    n          y       d           t          b     edible
## 3459       e    n          v       d           t          b     edible
## 3460       e    n          y       d           t          b     edible
## 3461       e    n          y       d           t          b     edible
## 3462       e    n          y       d           t          b     edible
## 3463       p    c          s       d           e          b  poisonous
## 3464       e    n          y       d           t          b     edible
## 3465       p    f          y       d           e          b  poisonous
## 3466       e    n          v       d           t          b     edible
## 3467       e    n          v       d           t          b     edible
## 3468       p    c          v       d           e          b  poisonous
## 3469       p    c          v       d           e          b  poisonous
## 3470       e    n          y       d           t          b     edible
## 3471       e    n          v       d           t          b     edible
## 3472       e    n          y       d           t          b     edible
## 3473       p    f          v       p           e          b  poisonous
## 3474       e    n          v       d           t          b     edible
## 3475       e    n          y       d           t          b     edible
## 3476       e    n          y       d           t          b     edible
## 3477       p    c          s       d           e          b  poisonous
## 3478       e    n          v       d           t          b     edible
## 3479       p    f          v       p           e          b  poisonous
## 3480       e    n          v       d           t          b     edible
## 3481       e    n          v       d           t          b     edible
## 3482       e    n          y       d           t          b     edible
## 3483       p    c          v       d           e          b  poisonous
## 3484       p    c          s       d           e          b  poisonous
## 3485       e    n          v       d           t          b     edible
## 3486       e    n          v       d           t          b     edible
## 3487       e    n          y       d           t          b     edible
## 3488       p    f          v       g           e          b  poisonous
## 3489       e    n          y       d           t          b     edible
## 3490       p    f          y       p           e          b  poisonous
## 3491       e    n          y       d           t          b     edible
## 3492       p    f          v       g           e          b  poisonous
## 3493       e    n          v       d           t          b     edible
## 3494       e    n          y       d           t          b     edible
## 3495       e    n          v       d           t          b     edible
## 3496       p    f          y       d           e          b  poisonous
## 3497       e    n          y       d           t          b     edible
## 3498       e    n          v       d           t          b     edible
## 3499       e    n          v       d           t          b     edible
## 3500       p    c          s       d           e          b  poisonous
## 3501       e    n          y       d           t          b     edible
## 3502       e    n          y       d           t          b     edible
## 3503       e    n          y       d           t          b     edible
## 3504       e    n          v       d           t          b     edible
## 3505       e    n          v       d           t          b     edible
## 3506       p    f          v       g           e          b  poisonous
## 3507       e    n          v       d           t          b     edible
## 3508       p    f          y       d           e          b  poisonous
## 3509       e    n          v       d           t          b     edible
## 3510       e    n          y       d           t          b     edible
## 3511       p    f          v       d           e          b  poisonous
## 3512       e    n          y       d           t          b     edible
## 3513       p    f          v       d           e          b  poisonous
## 3514       e    n          y       d           t          b     edible
## 3515       p    c          v       d           e          b  poisonous
## 3516       e    n          v       d           t          b     edible
## 3517       e    n          y       d           t          b     edible
## 3518       e    n          v       d           t          b     edible
## 3519       e    n          v       d           t          b     edible
## 3520       e    n          v       d           t          b     edible
## 3521       p    c          s       d           e          b  poisonous
## 3522       p    f          v       d           e          b  poisonous
## 3523       e    n          v       d           t          b     edible
## 3524       e    n          y       d           t          b     edible
## 3525       p    c          v       d           e          b  poisonous
## 3526       e    n          y       d           t          b     edible
## 3527       e    n          v       d           t          b     edible
## 3528       e    n          y       d           t          b     edible
## 3529       e    n          y       d           t          b     edible
## 3530       e    n          y       d           t          b     edible
## 3531       p    c          v       d           e          b  poisonous
## 3532       e    n          y       d           t          b     edible
## 3533       p    f          v       d           e          b  poisonous
## 3534       e    n          v       d           t          b     edible
## 3535       e    n          v       d           t          b     edible
## 3536       p    c          s       d           e          b  poisonous
## 3537       e    n          y       d           t          b     edible
## 3538       e    n          v       d           t          b     edible
## 3539       p    f          y       d           e          b  poisonous
## 3540       e    n          y       d           t          b     edible
## 3541       e    n          v       d           t          b     edible
## 3542       e    n          v       d           t          b     edible
## 3543       p    c          s       d           e          b  poisonous
## 3544       p    f          v       d           e          b  poisonous
## 3545       e    n          v       d           t          b     edible
## 3546       e    n          v       d           t          b     edible
## 3547       p    c          v       d           e          b  poisonous
## 3548       e    n          y       d           t          b     edible
## 3549       e    n          y       d           t          b     edible
## 3550       e    n          v       d           t          b     edible
## 3551       e    n          v       d           t          b     edible
## 3552       e    n          y       d           t          b     edible
## 3553       e    n          y       d           t          b     edible
## 3554       p    c          v       d           e          b  poisonous
## 3555       e    n          v       d           t          b     edible
## 3556       p    f          y       d           e          b  poisonous
## 3557       p    c          v       d           e          b  poisonous
## 3558       e    n          v       d           t          b     edible
## 3559       p    f          v       d           e          b  poisonous
## 3560       p    c          s       d           e          b  poisonous
## 3561       e    n          y       d           t          b     edible
## 3562       e    n          v       d           t          b     edible
## 3563       e    n          v       d           t          b     edible
## 3564       e    n          y       d           t          b     edible
## 3565       p    f          v       g           e          b  poisonous
## 3566       e    n          y       d           t          b     edible
## 3567       p    f          v       p           e          b  poisonous
## 3568       e    n          v       d           t          b     edible
## 3569       e    n          y       d           t          b     edible
## 3570       p    f          y       d           e          b  poisonous
## 3571       e    n          v       d           t          b     edible
## 3572       p    f          y       p           e          b  poisonous
## 3573       e    n          v       d           t          b     edible
## 3574       e    n          v       d           t          b     edible
## 3575       e    n          v       d           t          b     edible
## 3576       e    n          v       d           t          b     edible
## 3577       e    n          y       d           t          b     edible
## 3578       e    n          v       d           t          b     edible
## 3579       e    n          v       d           t          b     edible
## 3580       e    n          v       d           t          b     edible
## 3581       p    f          v       g           e          b  poisonous
## 3582       e    n          y       d           t          b     edible
## 3583       p    c          v       d           e          b  poisonous
## 3584       e    n          v       d           t          b     edible
## 3585       e    n          v       d           t          b     edible
## 3586       e    n          y       d           t          b     edible
## 3587       e    n          y       d           t          b     edible
## 3588       e    n          v       d           t          b     edible
## 3589       e    n          v       d           t          b     edible
## 3590       p    c          s       d           e          b  poisonous
## 3591       e    n          y       d           t          b     edible
## 3592       e    n          v       d           t          b     edible
## 3593       e    n          y       d           t          b     edible
## 3594       p    f          y       g           e          b  poisonous
## 3595       e    n          v       d           t          b     edible
## 3596       e    n          y       d           t          b     edible
## 3597       p    f          y       g           e          b  poisonous
## 3598       e    n          y       d           t          b     edible
## 3599       p    f          v       g           e          b  poisonous
## 3600       e    n          y       d           t          b     edible
## 3601       e    n          y       d           t          b     edible
## 3602       e    n          y       d           t          b     edible
## 3603       e    n          v       d           t          b     edible
## 3604       p    f          v       d           e          b  poisonous
## 3605       p    c          v       d           e          b  poisonous
## 3606       p    f          v       g           e          b  poisonous
## 3607       p    f          v       p           e          b  poisonous
## 3608       p    f          y       p           e          b  poisonous
## 3609       e    n          v       d           t          b     edible
## 3610       p    f          v       d           e          b  poisonous
## 3611       e    n          v       d           t          b     edible
## 3612       e    n          v       d           t          b     edible
## 3613       e    n          y       d           t          b     edible
## 3614       p    f          y       d           e          b  poisonous
## 3615       e    n          y       d           t          b     edible
## 3616       p    c          s       d           e          b  poisonous
## 3617       e    n          y       d           t          b     edible
## 3618       e    n          y       d           t          b     edible
## 3619       e    n          v       d           t          b     edible
## 3620       e    n          y       d           t          b     edible
## 3621       p    f          y       g           e          b  poisonous
## 3622       p    f          v       p           e          b  poisonous
## 3623       e    n          v       d           t          b     edible
## 3624       e    n          v       d           t          b     edible
## 3625       p    f          v       d           e          b  poisonous
## 3626       e    n          y       d           t          b     edible
## 3627       p    c          s       d           e          b  poisonous
## 3628       e    n          v       d           t          b     edible
## 3629       e    n          y       d           t          b     edible
## 3630       p    f          y       p           e          b  poisonous
## 3631       e    n          y       d           t          b     edible
## 3632       p    c          s       d           e          b  poisonous
## 3633       p    f          v       g           e          b  poisonous
## 3634       e    n          v       d           t          b     edible
## 3635       p    f          v       d           e          b  poisonous
## 3636       e    n          v       d           t          b     edible
## 3637       e    n          y       d           t          b     edible
## 3638       e    n          y       d           t          b     edible
## 3639       e    n          y       d           t          b     edible
## 3640       e    n          y       d           t          b     edible
## 3641       e    n          y       d           t          b     edible
## 3642       e    n          y       d           t          b     edible
## 3643       e    n          y       d           t          b     edible
## 3644       p    f          y       g           e          b  poisonous
## 3645       e    n          y       d           t          b     edible
## 3646       e    n          v       d           t          b     edible
## 3647       p    f          y       g           e          b  poisonous
## 3648       p    f          v       d           e          b  poisonous
## 3649       p    f          y       p           e          b  poisonous
## 3650       e    n          y       d           t          b     edible
## 3651       e    n          v       d           t          b     edible
## 3652       p    f          y       d           e          b  poisonous
## 3653       p    f          v       p           e          b  poisonous
## 3654       p    f          v       p           e          b  poisonous
## 3655       e    n          v       d           t          b     edible
## 3656       p    c          s       d           e          b  poisonous
## 3657       e    n          v       d           t          b     edible
## 3658       p    f          y       d           e          b  poisonous
## 3659       e    n          v       d           t          b     edible
## 3660       e    n          y       d           t          b     edible
## 3661       p    f          y       p           e          b  poisonous
## 3662       e    n          y       d           t          b     edible
## 3663       p    c          v       d           e          b  poisonous
## 3664       e    n          v       d           t          b     edible
## 3665       e    n          v       d           t          b     edible
## 3666       e    n          y       d           t          b     edible
## 3667       p    f          v       d           e          b  poisonous
## 3668       e    n          v       d           t          b     edible
## 3669       e    n          y       d           t          b     edible
## 3670       p    c          s       d           e          b  poisonous
## 3671       e    n          v       d           t          b     edible
## 3672       e    n          y       d           t          b     edible
## 3673       e    n          y       d           t          b     edible
## 3674       e    n          v       d           t          b     edible
## 3675       p    f          v       p           e          b  poisonous
## 3676       e    n          y       d           t          b     edible
## 3677       e    n          v       d           t          b     edible
## 3678       e    n          y       d           t          b     edible
## 3679       p    c          s       d           e          b  poisonous
## 3680       e    n          y       d           t          b     edible
## 3681       e    n          v       d           t          b     edible
## 3682       e    n          y       d           t          b     edible
## 3683       p    c          s       d           e          b  poisonous
## 3684       p    f          v       p           e          b  poisonous
## 3685       e    n          v       d           t          b     edible
## 3686       p    f          v       g           e          b  poisonous
## 3687       p    c          s       d           e          b  poisonous
## 3688       e    n          y       d           t          b     edible
## 3689       e    n          v       d           t          b     edible
## 3690       e    n          v       d           t          b     edible
## 3691       e    n          v       d           t          b     edible
## 3692       p    c          v       d           e          b  poisonous
## 3693       e    n          v       d           t          b     edible
## 3694       p    f          v       g           e          b  poisonous
## 3695       e    n          y       d           t          b     edible
## 3696       e    n          v       d           t          b     edible
## 3697       p    c          v       d           e          b  poisonous
## 3698       e    n          y       d           t          b     edible
## 3699       p    c          v       d           e          b  poisonous
## 3700       e    n          y       d           t          b     edible
## 3701       p    f          y       g           e          b  poisonous
## 3702       e    n          y       d           t          b     edible
## 3703       p    c          s       d           e          b  poisonous
## 3704       p    f          v       p           e          b  poisonous
## 3705       e    n          y       d           t          b     edible
## 3706       e    n          y       d           t          b     edible
## 3707       p    c          s       d           e          b  poisonous
## 3708       p    f          v       g           e          b  poisonous
## 3709       e    n          y       d           t          b     edible
## 3710       p    f          v       d           e          b  poisonous
## 3711       e    n          v       d           t          b     edible
## 3712       e    n          v       d           t          b     edible
## 3713       p    f          y       d           e          b  poisonous
## 3714       e    n          y       d           t          b     edible
## 3715       e    n          v       d           t          b     edible
## 3716       e    n          y       d           t          b     edible
## 3717       e    n          v       d           t          b     edible
## 3718       p    f          v       d           e          b  poisonous
## 3719       e    n          v       d           t          b     edible
## 3720       e    n          y       d           t          b     edible
## 3721       e    n          v       d           t          b     edible
## 3722       e    n          y       d           t          b     edible
## 3723       e    n          v       d           t          b     edible
## 3724       p    f          v       d           e          b  poisonous
## 3725       p    c          v       d           e          b  poisonous
## 3726       p    f          v       p           e          b  poisonous
## 3727       e    n          v       d           t          b     edible
## 3728       e    n          y       d           t          b     edible
## 3729       e    n          y       d           t          b     edible
## 3730       e    n          y       d           t          b     edible
## 3731       e    n          v       d           t          b     edible
## 3732       e    n          y       d           t          b     edible
## 3733       e    n          v       d           t          b     edible
## 3734       p    f          y       g           e          b  poisonous
## 3735       e    n          y       d           t          b     edible
## 3736       e    n          y       d           t          b     edible
## 3737       p    f          v       d           e          b  poisonous
## 3738       p    c          s       d           e          b  poisonous
## 3739       p    c          v       d           e          b  poisonous
## 3740       e    n          y       d           t          b     edible
## 3741       p    f          v       p           e          b  poisonous
## 3742       p    c          v       d           e          b  poisonous
## 3743       e    n          v       d           t          b     edible
## 3744       e    n          y       d           t          b     edible
## 3745       e    n          v       d           t          b     edible
## 3746       p    f          v       d           e          b  poisonous
## 3747       e    n          v       d           t          b     edible
## 3748       e    n          v       d           t          b     edible
## 3749       e    n          v       d           t          b     edible
## 3750       p    f          v       p           e          b  poisonous
## 3751       p    c          v       d           e          b  poisonous
## 3752       e    n          v       d           t          b     edible
## 3753       p    c          s       d           e          b  poisonous
## 3754       p    c          v       d           e          b  poisonous
## 3755       p    f          y       g           e          b  poisonous
## 3756       e    n          v       d           t          b     edible
## 3757       e    n          v       d           t          b     edible
## 3758       p    f          y       p           e          b  poisonous
## 3759       e    n          y       d           t          b     edible
## 3760       e    n          v       d           t          b     edible
## 3761       e    n          v       d           t          b     edible
## 3762       e    n          y       d           t          b     edible
## 3763       e    n          v       d           t          b     edible
## 3764       e    n          y       d           t          b     edible
## 3765       e    n          v       d           t          b     edible
## 3766       e    n          v       d           t          b     edible
## 3767       e    n          y       d           t          b     edible
## 3768       e    n          y       d           t          b     edible
## 3769       e    n          y       d           t          b     edible
## 3770       e    n          y       d           t          b     edible
## 3771       e    n          y       d           t          b     edible
## 3772       e    n          v       d           t          b     edible
## 3773       e    n          y       d           t          b     edible
## 3774       e    n          y       d           t          b     edible
## 3775       p    f          y       p           e          b  poisonous
## 3776       e    n          y       d           t          b     edible
## 3777       e    n          y       d           t          b     edible
## 3778       e    n          v       d           t          b     edible
## 3779       e    n          y       d           t          b     edible
## 3780       e    n          y       d           t          b     edible
## 3781       p    f          v       d           e          b  poisonous
## 3782       e    n          v       d           t          b     edible
## 3783       p    f          v       d           e          b  poisonous
## 3784       e    n          y       d           t          b     edible
## 3785       e    n          v       d           t          b     edible
## 3786       e    n          y       d           t          b     edible
## 3787       p    f          v       p           e          b  poisonous
## 3788       e    n          v       d           t          b     edible
## 3789       e    n          y       d           t          b     edible
## 3790       p    f          v       d           e          b  poisonous
## 3791       e    n          v       d           t          b     edible
## 3792       p    c          s       d           e          b  poisonous
## 3793       e    n          y       d           t          b     edible
## 3794       p    c          s       d           e          b  poisonous
## 3795       e    n          v       d           t          b     edible
## 3796       p    c          v       d           e          b  poisonous
## 3797       e    n          y       d           t          b     edible
## 3798       e    n          v       d           t          b     edible
## 3799       e    n          y       d           t          b     edible
## 3800       e    n          y       d           t          b     edible
## 3801       p    c          s       d           e          b  poisonous
## 3802       e    n          y       d           t          b     edible
## 3803       e    n          v       d           t          b     edible
## 3804       p    c          v       d           e          b  poisonous
## 3805       e    n          y       d           t          b     edible
## 3806       p    c          v       d           e          b  poisonous
## 3807       e    n          y       d           t          b     edible
## 3808       p    f          y       g           e          b  poisonous
## 3809       e    n          y       d           t          b     edible
## 3810       p    f          y       g           e          b  poisonous
## 3811       e    n          v       d           t          b     edible
## 3812       e    n          v       d           t          b     edible
## 3813       e    n          v       d           t          b     edible
## 3814       p    c          s       d           e          b  poisonous
## 3815       p    f          y       p           e          b  poisonous
## 3816       e    n          v       d           t          b     edible
## 3817       e    n          v       d           t          b     edible
## 3818       e    n          v       d           t          b     edible
## 3819       e    n          y       d           t          b     edible
## 3820       e    n          v       d           t          b     edible
## 3821       e    n          y       d           t          b     edible
## 3822       p    f          y       d           e          b  poisonous
## 3823       e    n          y       d           t          b     edible
## 3824       e    n          y       d           t          b     edible
## 3825       e    n          y       d           t          b     edible
## 3826       p    c          v       d           e          b  poisonous
## 3827       e    n          y       d           t          b     edible
## 3828       e    n          y       d           t          b     edible
## 3829       p    f          y       g           e          b  poisonous
## 3830       e    n          y       d           t          b     edible
## 3831       p    c          v       d           e          b  poisonous
## 3832       e    n          v       d           t          b     edible
## 3833       p    c          s       d           e          b  poisonous
## 3834       p    f          v       d           e          b  poisonous
## 3835       p    f          y       d           e          b  poisonous
## 3836       e    n          v       d           t          b     edible
## 3837       e    n          v       d           t          b     edible
## 3838       e    n          y       d           t          b     edible
## 3839       e    n          y       d           t          b     edible
## 3840       p    f          v       p           e          b  poisonous
## 3841       e    n          y       d           t          b     edible
## 3842       e    n          y       d           t          b     edible
## 3843       p    f          v       g           e          b  poisonous
## 3844       e    n          y       d           t          b     edible
## 3845       p    c          s       d           e          b  poisonous
## 3846       e    n          y       d           t          b     edible
## 3847       e    n          y       d           t          b     edible
## 3848       e    n          y       d           t          b     edible
## 3849       e    n          y       d           t          b     edible
## 3850       e    n          y       d           t          b     edible
## 3851       e    n          y       d           t          b     edible
## 3852       p    c          s       d           e          b  poisonous
## 3853       e    n          v       d           t          b     edible
## 3854       p    f          y       g           e          b  poisonous
## 3855       e    n          v       d           t          b     edible
## 3856       e    n          v       d           t          b     edible
## 3857       e    n          v       d           t          b     edible
## 3858       p    c          v       d           e          b  poisonous
## 3859       p    c          v       d           e          b  poisonous
## 3860       e    n          v       d           t          b     edible
## 3861       e    n          v       d           t          b     edible
## 3862       e    n          v       d           t          b     edible
## 3863       e    n          y       d           t          b     edible
## 3864       p    f          v       d           e          b  poisonous
## 3865       p    c          v       d           e          b  poisonous
## 3866       e    n          y       d           t          b     edible
## 3867       e    n          v       d           t          b     edible
## 3868       p    c          v       d           e          b  poisonous
## 3869       p    c          s       d           e          b  poisonous
## 3870       e    n          v       d           t          b     edible
## 3871       p    f          v       d           e          b  poisonous
## 3872       p    c          v       d           e          b  poisonous
## 3873       p    f          v       d           e          b  poisonous
## 3874       p    c          v       d           e          b  poisonous
## 3875       e    n          v       d           t          b     edible
## 3876       p    c          s       d           e          b  poisonous
## 3877       e    n          v       d           t          b     edible
## 3878       p    c          v       d           e          b  poisonous
## 3879       p    c          s       d           e          b  poisonous
## 3880       e    n          y       d           t          b     edible
## 3881       p    c          s       d           e          b  poisonous
## 3882       p    c          v       d           e          b  poisonous
## 3883       e    n          y       d           t          b     edible
## 3884       e    n          y       d           t          b     edible
## 3885       p    c          s       d           e          b  poisonous
## 3886       e    n          v       d           t          b     edible
## 3887       p    c          s       d           e          b  poisonous
## 3888       e    n          v       d           t          b     edible
## 3889       p    f          v       d           e          b  poisonous
## 3890       p    f          y       g           e          b  poisonous
## 3891       e    n          v       d           t          b     edible
## 3892       p    f          v       g           e          b  poisonous
## 3893       e    n          v       d           t          b     edible
## 3894       p    f          y       g           e          b  poisonous
## 3895       p    f          y       p           e          b  poisonous
## 3896       e    n          v       d           t          b     edible
## 3897       e    n          v       d           t          b     edible
## 3898       p    c          v       d           e          b  poisonous
## 3899       e    n          y       d           t          b     edible
## 3900       p    f          y       p           e          b  poisonous
## 3901       p    f          v       d           e          b  poisonous
## 3902       p    f          y       p           e          b  poisonous
## 3903       p    f          v       g           e          b  poisonous
## 3904       p    c          v       d           e          b  poisonous
## 3905       p    f          y       d           e          b  poisonous
## 3906       p    f          v       d           e          b  poisonous
## 3907       p    f          v       p           e          b  poisonous
## 3908       p    f          v       d           e          b  poisonous
## 3909       p    f          y       d           e          b  poisonous
## 3910       e    n          y       d           t          b     edible
## 3911       p    f          y       g           e          b  poisonous
## 3912       p    f          y       p           e          b  poisonous
## 3913       p    f          y       g           e          b  poisonous
## 3914       e    n          y       d           t          b     edible
## 3915       e    n          v       d           t          b     edible
## 3916       e    n          v       d           t          b     edible
## 3917       p    f          v       g           e          b  poisonous
## 3918       p    f          v       g           e          b  poisonous
## 3919       p    f          v       d           e          b  poisonous
## 3920       e    n          y       d           t          b     edible
## 3921       p    f          v       g           e          b  poisonous
## 3922       e    n          v       d           t          b     edible
## 3923       e    n          v       d           t          b     edible
## 3924       e    n          v       d           t          b     edible
## 3925       p    f          y       d           e          b  poisonous
## 3926       p    f          y       g           e          b  poisonous
## 3927       p    f          y       g           e          b  poisonous
## 3928       e    n          v       d           t          b     edible
## 3929       p    f          y       d           e          b  poisonous
## 3930       p    f          y       p           e          b  poisonous
## 3931       p    f          v       g           e          b  poisonous
## 3932       p    f          v       d           e          b  poisonous
## 3933       p    f          y       p           e          b  poisonous
## 3934       p    f          v       p           e          b  poisonous
## 3935       p    c          s       d           e          b  poisonous
## 3936       p    f          v       g           e          b  poisonous
## 3937       e    n          v       d           t          b     edible
## 3938       e    n          y       d           t          b     edible
## 3939       p    c          v       d           e          b  poisonous
## 3940       p    f          v       g           e          b  poisonous
## 3941       p    f          v       g           e          b  poisonous
## 3942       e    n          y       d           t          b     edible
## 3943       e    n          y       d           t          b     edible
## 3944       p    f          v       d           e          b  poisonous
## 3945       e    n          v       d           t          b     edible
## 3946       p    f          v       d           e          b  poisonous
## 3947       p    f          y       g           e          b  poisonous
## 3948       e    n          v       d           t          b     edible
## 3949       p    f          v       g           e          b  poisonous
## 3950       p    f          y       g           e          b  poisonous
## 3951       p    f          v       g           e          b  poisonous
## 3952       p    f          y       g           e          b  poisonous
## 3953       p    c          s       d           e          b  poisonous
## 3954       p    c          s       d           e          b  poisonous
## 3955       p    f          v       p           e          b  poisonous
## 3956       p    f          y       p           e          b  poisonous
## 3957       p    f          v       d           e          b  poisonous
## 3958       e    n          v       d           t          b     edible
## 3959       p    f          v       u           t          b  poisonous
## 3960       p    f          y       d           e          b  poisonous
## 3961       e    n          v       d           t          b     edible
## 3962       p    f          y       d           e          b  poisonous
## 3963       p    f          y       p           e          b  poisonous
## 3964       p    f          v       p           e          b  poisonous
## 3965       p    f          y       g           e          b  poisonous
## 3966       p    f          y       g           e          b  poisonous
## 3967       p    f          y       p           e          b  poisonous
## 3968       p    f          y       p           e          b  poisonous
## 3969       p    c          v       d           e          b  poisonous
## 3970       p    f          v       p           e          b  poisonous
## 3971       p    f          y       p           e          b  poisonous
## 3972       e    n          v       d           t          b     edible
## 3973       e    n          v       d           t          b     edible
## 3974       p    f          y       p           e          b  poisonous
## 3975       p    c          s       d           e          b  poisonous
## 3976       p    f          v       g           e          b  poisonous
## 3977       p    f          v       g           e          b  poisonous
## 3978       p    c          v       d           e          b  poisonous
## 3979       e    n          v       d           t          b     edible
## 3980       p    f          v       g           e          b  poisonous
## 3981       p    c          v       d           e          b  poisonous
## 3982       p    f          v       g           t          b  poisonous
## 3983       p    f          v       p           e          b  poisonous
## 3984       e    n          c       w           e          ?     edible
## 3985       p    f          y       g           e          b  poisonous
## 3986       p    f          y       g           e          b  poisonous
## 3987       p    f          y       g           e          b  poisonous
## 3988       p    f          y       g           e          b  poisonous
## 3989       e    n          y       d           t          b     edible
## 3990       p    f          v       d           e          b  poisonous
## 3991       p    f          v       d           e          b  poisonous
## 3992       p    f          y       g           e          b  poisonous
## 3993       p    c          s       d           e          b  poisonous
## 3994       p    c          v       d           e          b  poisonous
## 3995       p    f          v       g           e          b  poisonous
## 3996       p    f          s       g           t          b  poisonous
## 3997       p    f          v       g           e          b  poisonous
## 3998       e    n          y       d           t          b     edible
## 3999       p    f          v       d           e          b  poisonous
## 4000       e    n          v       d           t          b     edible
## 4001       p    f          y       p           e          b  poisonous
## 4002       e    n          v       d           t          b     edible
## 4003       e    n          y       d           t          b     edible
## 4004       p    f          y       p           e          b  poisonous
## 4005       p    f          y       d           e          b  poisonous
## 4006       e    n          v       d           t          b     edible
## 4007       p    f          v       p           e          b  poisonous
## 4008       e    n          y       d           t          b     edible
## 4009       e    n          y       d           t          b     edible
## 4010       e    n          v       d           t          b     edible
## 4011       p    f          y       p           e          b  poisonous
## 4012       e    n          v       d           t          b     edible
## 4013       p    f          v       d           e          b  poisonous
## 4014       p    f          v       p           e          b  poisonous
## 4015       p    f          v       d           e          b  poisonous
## 4016       p    f          v       p           e          b  poisonous
## 4017       p    f          v       d           e          b  poisonous
## 4018       e    n          v       d           t          b     edible
## 4019       e    n          v       d           t          b     edible
## 4020       p    f          v       g           e          b  poisonous
## 4021       p    f          y       d           e          b  poisonous
## 4022       p    f          y       p           e          b  poisonous
## 4023       p    y          v       p           t          ?  poisonous
## 4024       p    f          y       p           e          b  poisonous
## 4025       p    f          v       g           e          b  poisonous
## 4026       p    c          v       d           e          b  poisonous
## 4027       p    f          v       g           e          b  poisonous
## 4028       p    f          s       g           t          b  poisonous
## 4029       p    f          v       d           e          b  poisonous
## 4030       p    f          y       d           e          b  poisonous
## 4031       p    c          s       d           e          b  poisonous
## 4032       p    f          v       d           e          b  poisonous
## 4033       e    n          v       d           t          b     edible
## 4034       p    f          y       g           e          b  poisonous
## 4035       p    f          v       d           e          b  poisonous
## 4036       p    f          v       p           e          b  poisonous
## 4037       p    f          v       g           e          b  poisonous
## 4038       p    f          y       d           e          b  poisonous
## 4039       e    n          v       d           t          b     edible
## 4040       p    f          y       d           e          b  poisonous
## 4041       e    n          y       d           t          b     edible
## 4042       p    f          v       d           e          b  poisonous
## 4043       p    f          y       p           e          b  poisonous
## 4044       p    f          v       d           e          b  poisonous
## 4045       p    c          v       d           e          b  poisonous
## 4046       p    f          y       d           e          b  poisonous
## 4047       e    n          v       d           t          b     edible
## 4048       p    c          s       d           e          b  poisonous
## 4049       p    f          v       d           e          b  poisonous
## 4050       p    f          y       d           e          b  poisonous
## 4051       p    c          v       d           e          b  poisonous
## 4052       p    f          y       d           e          b  poisonous
## 4053       p    f          v       p           e          b  poisonous
## 4054       e    n          v       d           t          b     edible
## 4055       p    f          v       p           e          b  poisonous
## 4056       p    f          v       p           e          b  poisonous
## 4057       p    c          s       d           e          b  poisonous
## 4058       p    c          v       d           e          b  poisonous
## 4059       e    n          v       d           t          b     edible
## 4060       p    f          v       g           e          b  poisonous
## 4061       e    n          y       d           t          b     edible
## 4062       e    n          y       d           t          b     edible
## 4063       p    f          y       d           e          b  poisonous
## 4064       p    f          y       g           e          b  poisonous
## 4065       p    f          v       d           e          b  poisonous
## 4066       p    f          y       d           e          b  poisonous
## 4067       p    f          y       p           e          b  poisonous
## 4068       e    n          y       d           t          b     edible
## 4069       p    f          v       p           e          b  poisonous
## 4070       p    f          v       p           e          b  poisonous
## 4071       p    f          v       p           e          b  poisonous
## 4072       p    f          y       p           e          b  poisonous
## 4073       e    n          v       d           t          b     edible
## 4074       e    n          v       d           t          b     edible
## 4075       p    f          y       g           e          b  poisonous
## 4076       e    n          y       d           e          ?     edible
## 4077       e    n          y       d           t          b     edible
## 4078       p    f          v       g           e          b  poisonous
## 4079       p    f          v       g           e          b  poisonous
## 4080       p    f          y       d           e          b  poisonous
## 4081       p    f          y       p           e          b  poisonous
## 4082       p    f          v       p           e          b  poisonous
## 4083       p    f          y       d           e          b  poisonous
## 4084       p    f          v       p           e          b  poisonous
## 4085       p    f          v       p           e          b  poisonous
## 4086       p    f          y       p           e          b  poisonous
## 4087       e    n          v       d           t          b     edible
## 4088       p    f          y       d           e          b  poisonous
## 4089       e    n          v       d           t          b     edible
## 4090       p    f          v       d           e          b  poisonous
## 4091       p    f          v       d           e          b  poisonous
## 4092       e    n          y       d           t          b     edible
## 4093       e    n          y       d           t          b     edible
## 4094       p    f          v       g           e          b  poisonous
## 4095       e    n          v       d           t          b     edible
## 4096       e    n          y       d           t          b     edible
## 4097       p    f          v       p           e          b  poisonous
## 4098       p    c          v       d           e          b  poisonous
## 4099       p    f          y       d           e          b  poisonous
## 4100       p    y          v       d           t          ?  poisonous
## 4101       p    f          v       p           e          b  poisonous
## 4102       p    f          y       d           e          b  poisonous
## 4103       e    n          y       d           t          b     edible
## 4104       p    f          v       l           t          ?  poisonous
## 4105       e    n          v       d           t          b     edible
## 4106       p    n          v       m           e          b  poisonous
## 4107       e    n          y       d           t          b     edible
## 4108       p    f          v       g           e          b  poisonous
## 4109       e    n          y       d           t          b     edible
## 4110       p    f          y       p           e          b  poisonous
## 4111       p    f          y       g           e          b  poisonous
## 4112       p    f          v       g           e          b  poisonous
## 4113       e    n          v       d           t          b     edible
## 4114       p    f          y       p           e          b  poisonous
## 4115       p    f          v       g           e          b  poisonous
## 4116       p    f          v       d           e          b  poisonous
## 4117       p    f          y       p           e          b  poisonous
## 4118       p    f          v       g           e          b  poisonous
## 4119       p    f          v       g           e          b  poisonous
## 4120       p    f          v       p           e          b  poisonous
## 4121       e    n          v       d           t          b     edible
## 4122       p    f          v       d           e          b  poisonous
## 4123       p    f          v       g           e          b  poisonous
## 4124       e    n          v       d           t          b     edible
## 4125       p    f          v       p           e          b  poisonous
## 4126       p    f          v       p           e          b  poisonous
## 4127       e    n          y       d           t          b     edible
## 4128       p    f          y       p           e          b  poisonous
## 4129       e    n          y       d           t          b     edible
## 4130       p    f          v       g           e          b  poisonous
## 4131       p    f          v       d           e          b  poisonous
## 4132       p    f          v       d           e          b  poisonous
## 4133       p    c          s       d           e          b  poisonous
## 4134       e    n          v       d           t          b     edible
## 4135       p    f          y       g           e          b  poisonous
## 4136       p    f          y       d           e          b  poisonous
## 4137       p    f          v       p           e          b  poisonous
## 4138       e    n          v       d           t          b     edible
## 4139       p    f          y       d           e          b  poisonous
## 4140       p    f          y       d           e          b  poisonous
## 4141       e    n          v       d           t          b     edible
## 4142       e    n          v       d           t          b     edible
## 4143       p    f          v       u           t          b  poisonous
## 4144       p    f          y       p           e          b  poisonous
## 4145       p    f          v       p           e          b  poisonous
## 4146       p    f          v       p           e          b  poisonous
## 4147       p    f          v       d           e          b  poisonous
## 4148       p    f          v       d           e          b  poisonous
## 4149       p    f          v       p           e          b  poisonous
## 4150       e    n          y       d           t          b     edible
## 4151       p    f          v       g           e          b  poisonous
## 4152       p    f          v       g           e          b  poisonous
## 4153       p    f          y       p           e          b  poisonous
## 4154       e    n          v       d           t          b     edible
## 4155       e    n          v       d           t          b     edible
## 4156       e    n          y       d           t          b     edible
## 4157       p    f          v       g           e          b  poisonous
## 4158       p    f          y       p           e          b  poisonous
## 4159       e    n          y       d           t          b     edible
## 4160       p    f          y       g           e          b  poisonous
## 4161       e    n          v       d           t          b     edible
## 4162       p    f          v       p           e          b  poisonous
## 4163       p    f          v       d           e          b  poisonous
## 4164       p    f          v       d           e          b  poisonous
## 4165       e    n          v       l           e          b     edible
## 4166       p    f          v       d           e          b  poisonous
## 4167       p    f          y       g           e          b  poisonous
## 4168       p    f          v       g           e          b  poisonous
## 4169       p    f          y       g           e          b  poisonous
## 4170       p    f          s       u           t          b  poisonous
## 4171       p    f          v       d           e          b  poisonous
## 4172       p    f          v       g           e          b  poisonous
## 4173       p    f          y       p           e          b  poisonous
## 4174       p    f          v       p           e          b  poisonous
## 4175       p    f          y       d           e          b  poisonous
## 4176       e    n          y       d           t          b     edible
## 4177       p    f          y       p           e          b  poisonous
## 4178       p    f          y       p           e          b  poisonous
## 4179       e    n          y       d           t          b     edible
## 4180       p    f          v       p           e          b  poisonous
## 4181       p    f          y       d           e          b  poisonous
## 4182       p    f          y       d           e          b  poisonous
## 4183       e    n          y       d           t          b     edible
## 4184       p    f          v       g           e          b  poisonous
## 4185       p    f          y       p           e          b  poisonous
## 4186       e    n          y       d           t          b     edible
## 4187       e    n          v       d           t          b     edible
## 4188       p    f          v       d           e          b  poisonous
## 4189       p    f          v       p           e          b  poisonous
## 4190       p    f          v       d           e          b  poisonous
## 4191       p    f          v       p           e          b  poisonous
## 4192       p    f          y       p           e          b  poisonous
## 4193       p    f          y       g           e          b  poisonous
## 4194       p    f          s       u           t          b  poisonous
## 4195       e    n          y       d           t          b     edible
## 4196       p    y          v       d           t          ?  poisonous
## 4197       e    n          v       d           t          b     edible
## 4198       p    c          v       d           e          b  poisonous
## 4199       p    c          v       d           e          b  poisonous
## 4200       p    y          v       l           t          ?  poisonous
## 4201       p    f          y       p           e          b  poisonous
## 4202       p    f          v       g           e          b  poisonous
## 4203       p    f          s       u           t          b  poisonous
## 4204       p    f          y       p           e          b  poisonous
## 4205       p    f          y       d           e          b  poisonous
## 4206       p    f          y       p           e          b  poisonous
## 4207       p    f          y       d           e          b  poisonous
## 4208       p    f          y       d           e          b  poisonous
## 4209       p    f          y       g           e          b  poisonous
## 4210       p    f          y       g           e          b  poisonous
## 4211       p    f          y       g           e          b  poisonous
## 4212       p    f          v       g           e          b  poisonous
## 4213       p    f          v       g           e          b  poisonous
## 4214       p    f          y       g           e          b  poisonous
## 4215       p    f          v       g           e          b  poisonous
## 4216       p    f          v       u           t          b  poisonous
## 4217       p    f          y       g           e          b  poisonous
## 4218       p    f          y       g           e          b  poisonous
## 4219       p    f          y       d           e          b  poisonous
## 4220       p    f          y       d           e          b  poisonous
## 4221       p    f          v       d           e          b  poisonous
## 4222       p    f          v       p           e          b  poisonous
## 4223       p    f          y       p           e          b  poisonous
## 4224       e    n          v       d           t          b     edible
## 4225       p    f          v       d           e          b  poisonous
## 4226       p    f          y       d           e          b  poisonous
## 4227       p    f          v       p           e          b  poisonous
## 4228       p    f          v       g           e          b  poisonous
## 4229       p    f          v       p           e          b  poisonous
## 4230       p    f          y       d           e          b  poisonous
## 4231       p    f          y       p           e          b  poisonous
## 4232       p    f          s       u           t          b  poisonous
## 4233       p    f          v       g           e          b  poisonous
## 4234       p    f          v       d           e          b  poisonous
## 4235       p    f          y       p           e          b  poisonous
## 4236       p    f          y       d           e          b  poisonous
## 4237       p    f          v       d           e          b  poisonous
## 4238       p    f          v       p           e          b  poisonous
## 4239       p    f          y       g           e          b  poisonous
## 4240       p    f          y       p           e          b  poisonous
## 4241       p    f          v       g           e          b  poisonous
## 4242       p    f          y       d           e          b  poisonous
## 4243       p    f          v       d           e          b  poisonous
## 4244       p    f          v       d           e          b  poisonous
## 4245       p    f          s       g           t          b  poisonous
## 4246       p    f          y       g           e          b  poisonous
## 4247       p    f          s       g           t          b  poisonous
## 4248       p    f          v       d           e          b  poisonous
## 4249       p    f          v       d           e          b  poisonous
## 4250       p    f          y       g           e          b  poisonous
## 4251       p    f          y       g           e          b  poisonous
## 4252       p    f          v       g           e          b  poisonous
## 4253       e    n          y       d           t          b     edible
## 4254       p    f          y       p           e          b  poisonous
## 4255       p    f          y       p           e          b  poisonous
## 4256       p    f          v       g           e          b  poisonous
## 4257       p    f          v       p           e          b  poisonous
## 4258       p    f          y       d           e          b  poisonous
## 4259       p    f          v       p           e          b  poisonous
## 4260       p    f          y       g           e          b  poisonous
## 4261       p    f          y       p           e          b  poisonous
## 4262       p    c          s       d           e          b  poisonous
## 4263       p    f          y       d           e          b  poisonous
## 4264       p    f          y       g           e          b  poisonous
## 4265       p    f          y       g           e          b  poisonous
## 4266       p    f          v       g           e          b  poisonous
## 4267       p    f          v       g           e          b  poisonous
## 4268       p    f          v       d           e          b  poisonous
## 4269       p    f          y       g           e          b  poisonous
## 4270       p    f          v       p           e          b  poisonous
## 4271       p    f          y       d           e          b  poisonous
## 4272       p    f          v       d           e          b  poisonous
## 4273       p    f          y       p           e          b  poisonous
## 4274       p    f          v       d           e          b  poisonous
## 4275       p    f          y       p           e          b  poisonous
## 4276       e    n          v       l           e          b     edible
## 4277       p    f          y       p           e          b  poisonous
## 4278       p    f          y       g           e          b  poisonous
## 4279       p    f          y       g           e          b  poisonous
## 4280       p    f          v       d           e          b  poisonous
## 4281       p    f          y       p           e          b  poisonous
## 4282       p    f          v       g           e          b  poisonous
## 4283       e    n          c       w           e          ?     edible
## 4284       p    f          v       p           e          b  poisonous
## 4285       p    f          y       d           e          b  poisonous
## 4286       p    f          y       d           e          b  poisonous
## 4287       p    f          y       p           e          b  poisonous
## 4288       p    f          v       d           e          b  poisonous
## 4289       p    f          y       g           e          b  poisonous
## 4290       p    f          v       g           e          b  poisonous
## 4291       e    n          c       w           e          ?     edible
## 4292       p    f          v       d           e          b  poisonous
## 4293       p    f          v       p           e          b  poisonous
## 4294       p    f          y       p           e          b  poisonous
## 4295       p    f          v       g           e          b  poisonous
## 4296       p    f          y       p           e          b  poisonous
## 4297       p    f          y       p           e          b  poisonous
## 4298       p    f          y       g           e          b  poisonous
## 4299       p    f          y       g           e          b  poisonous
## 4300       p    f          y       d           e          b  poisonous
## 4301       p    f          v       d           e          b  poisonous
## 4302       p    f          v       g           e          b  poisonous
## 4303       p    f          y       d           e          b  poisonous
## 4304       p    f          y       g           e          b  poisonous
## 4305       e    n          y       d           t          b     edible
## 4306       p    f          y       d           e          b  poisonous
## 4307       p    f          v       d           e          b  poisonous
## 4308       p    f          v       g           e          b  poisonous
## 4309       p    f          v       g           e          b  poisonous
## 4310       p    f          y       g           e          b  poisonous
## 4311       p    f          y       p           e          b  poisonous
## 4312       p    f          y       d           e          b  poisonous
## 4313       p    f          v       g           e          b  poisonous
## 4314       p    f          y       p           e          b  poisonous
## 4315       p    f          v       g           e          b  poisonous
## 4316       p    f          v       d           e          b  poisonous
## 4317       p    f          v       g           e          b  poisonous
## 4318       p    f          y       d           e          b  poisonous
## 4319       p    f          y       g           e          b  poisonous
## 4320       p    f          v       g           e          b  poisonous
## 4321       p    f          y       g           e          b  poisonous
## 4322       p    f          y       p           e          b  poisonous
## 4323       p    f          y       g           e          b  poisonous
## 4324       p    f          y       g           e          b  poisonous
## 4325       p    f          v       p           e          b  poisonous
## 4326       e    n          v       d           e          ?     edible
## 4327       p    f          y       g           e          b  poisonous
## 4328       p    f          y       d           e          b  poisonous
## 4329       p    s          v       p           t          ?  poisonous
## 4330       p    f          v       d           e          b  poisonous
## 4331       p    n          v       d           e          ?  poisonous
## 4332       p    f          y       d           e          b  poisonous
## 4333       p    f          v       d           e          b  poisonous
## 4334       p    f          y       g           e          b  poisonous
## 4335       p    f          y       g           e          b  poisonous
## 4336       p    f          v       d           e          b  poisonous
## 4337       p    f          v       d           e          b  poisonous
## 4338       p    f          v       d           e          b  poisonous
## 4339       p    f          y       g           e          b  poisonous
## 4340       p    f          y       g           e          b  poisonous
## 4341       e    n          y       d           t          b     edible
## 4342       p    f          y       p           e          b  poisonous
## 4343       p    f          v       g           e          b  poisonous
## 4344       p    f          v       g           e          b  poisonous
## 4345       p    f          v       p           e          b  poisonous
## 4346       p    f          y       g           e          b  poisonous
## 4347       p    f          v       g           e          b  poisonous
## 4348       p    f          y       g           e          b  poisonous
## 4349       p    f          s       u           t          b  poisonous
## 4350       p    f          v       g           e          b  poisonous
## 4351       p    f          v       p           e          b  poisonous
## 4352       p    f          v       p           e          b  poisonous
## 4353       p    f          y       d           e          b  poisonous
## 4354       p    f          v       d           e          b  poisonous
## 4355       p    f          y       g           e          b  poisonous
## 4356       p    f          v       g           e          b  poisonous
## 4357       e    n          c       w           e          ?     edible
## 4358       p    f          v       d           e          b  poisonous
## 4359       p    f          y       d           e          b  poisonous
## 4360       p    f          y       d           e          b  poisonous
## 4361       p    f          y       p           e          b  poisonous
## 4362       p    f          v       d           e          b  poisonous
## 4363       p    f          y       g           e          b  poisonous
## 4364       p    n          c       l           e          b  poisonous
## 4365       p    f          v       u           t          b  poisonous
## 4366       p    f          y       p           e          b  poisonous
## 4367       p    f          y       d           e          b  poisonous
## 4368       p    f          v       p           e          b  poisonous
## 4369       p    f          v       p           e          b  poisonous
## 4370       p    f          y       d           e          b  poisonous
## 4371       p    f          v       d           e          b  poisonous
## 4372       p    f          v       g           e          b  poisonous
## 4373       p    f          y       g           e          b  poisonous
## 4374       p    f          s       u           t          b  poisonous
## 4375       e    n          v       d           t          b     edible
## 4376       p    y          v       d           t          ?  poisonous
## 4377       p    f          y       d           e          b  poisonous
## 4378       p    f          y       g           e          b  poisonous
## 4379       e    n          v       d           t          b     edible
## 4380       e    n          c       w           e          ?     edible
## 4381       p    f          y       g           e          b  poisonous
## 4382       p    f          y       d           e          b  poisonous
## 4383       p    f          v       p           e          b  poisonous
## 4384       p    f          y       g           e          b  poisonous
## 4385       p    f          y       g           e          b  poisonous
## 4386       p    f          y       g           e          b  poisonous
## 4387       p    f          y       g           e          b  poisonous
## 4388       p    f          v       g           e          b  poisonous
## 4389       p    f          v       g           e          b  poisonous
## 4390       p    f          y       g           e          b  poisonous
## 4391       p    f          y       p           e          b  poisonous
## 4392       p    f          y       g           e          b  poisonous
## 4393       p    f          y       d           e          b  poisonous
## 4394       p    f          v       d           e          b  poisonous
## 4395       p    f          y       p           e          b  poisonous
## 4396       e    n          y       d           e          ?     edible
## 4397       p    f          v       g           e          b  poisonous
## 4398       p    f          v       g           e          b  poisonous
## 4399       p    f          y       g           e          b  poisonous
## 4400       p    f          v       g           e          b  poisonous
## 4401       p    f          v       g           e          b  poisonous
## 4402       p    f          v       g           e          b  poisonous
## 4403       p    f          y       d           e          b  poisonous
## 4404       p    f          v       g           e          b  poisonous
## 4405       p    f          y       d           e          b  poisonous
## 4406       p    f          v       p           e          b  poisonous
## 4407       p    f          v       p           e          b  poisonous
## 4408       p    f          y       g           e          b  poisonous
## 4409       p    f          y       d           e          b  poisonous
## 4410       e    n          y       d           t          b     edible
## 4411       p    f          v       u           t          b  poisonous
## 4412       p    f          v       d           e          b  poisonous
## 4413       p    f          v       p           e          b  poisonous
## 4414       p    f          y       g           e          b  poisonous
## 4415       p    f          y       p           e          b  poisonous
## 4416       p    f          v       d           e          b  poisonous
## 4417       e    n          v       d           t          b     edible
## 4418       p    f          y       g           e          b  poisonous
## 4419       e    n          c       w           e          ?     edible
## 4420       p    f          y       g           e          b  poisonous
## 4421       p    f          y       d           e          b  poisonous
## 4422       p    f          y       g           e          b  poisonous
## 4423       p    f          v       p           e          b  poisonous
## 4424       e    n          y       d           t          b     edible
## 4425       p    f          v       d           e          b  poisonous
## 4426       p    f          v       g           e          b  poisonous
## 4427       p    f          v       d           e          b  poisonous
## 4428       p    f          v       g           e          b  poisonous
## 4429       p    y          v       d           t          ?  poisonous
## 4430       p    f          v       p           e          b  poisonous
## 4431       p    f          v       g           e          b  poisonous
## 4432       p    f          v       p           e          b  poisonous
## 4433       p    f          v       d           e          b  poisonous
## 4434       p    f          v       p           e          b  poisonous
## 4435       p    f          v       g           e          b  poisonous
## 4436       p    f          v       d           e          b  poisonous
## 4437       p    f          v       g           e          b  poisonous
## 4438       p    c          v       d           e          b  poisonous
## 4439       p    f          y       g           e          b  poisonous
## 4440       p    f          s       u           t          b  poisonous
## 4441       p    f          v       g           e          b  poisonous
## 4442       p    f          y       p           e          b  poisonous
## 4443       p    f          y       d           e          b  poisonous
## 4444       e    n          y       d           t          b     edible
## 4445       p    f          y       d           e          b  poisonous
## 4446       p    f          v       g           e          b  poisonous
## 4447       p    f          y       p           e          b  poisonous
## 4448       p    f          y       g           e          b  poisonous
## 4449       p    f          y       d           e          b  poisonous
## 4450       p    f          y       p           e          b  poisonous
## 4451       e    n          v       d           t          b     edible
## 4452       p    f          y       g           e          b  poisonous
## 4453       p    f          v       g           e          b  poisonous
## 4454       p    f          v       p           e          b  poisonous
## 4455       p    f          y       g           e          b  poisonous
## 4456       p    f          y       p           e          b  poisonous
## 4457       p    f          y       g           e          b  poisonous
## 4458       p    f          y       g           e          b  poisonous
## 4459       e    n          c       w           e          ?     edible
## 4460       p    f          y       p           e          b  poisonous
## 4461       p    s          v       d           t          ?  poisonous
## 4462       p    f          y       p           e          b  poisonous
## 4463       p    f          y       p           e          b  poisonous
## 4464       p    f          v       g           e          b  poisonous
## 4465       p    f          v       d           e          b  poisonous
## 4466       p    f          y       g           e          b  poisonous
## 4467       p    f          y       g           e          b  poisonous
## 4468       p    f          y       d           e          b  poisonous
## 4469       p    f          v       u           t          b  poisonous
## 4470       p    f          v       g           e          b  poisonous
## 4471       p    f          y       p           e          b  poisonous
## 4472       p    f          y       g           e          b  poisonous
## 4473       p    f          v       p           e          b  poisonous
## 4474       p    f          v       g           e          b  poisonous
## 4475       p    f          y       g           e          b  poisonous
## 4476       p    f          v       p           e          b  poisonous
## 4477       p    f          y       p           e          b  poisonous
## 4478       p    f          y       p           e          b  poisonous
## 4479       p    f          v       p           e          b  poisonous
## 4480       e    n          y       d           t          b     edible
## 4481       p    f          v       d           e          b  poisonous
## 4482       p    f          v       p           e          b  poisonous
## 4483       p    f          v       g           e          b  poisonous
## 4484       p    f          v       g           e          b  poisonous
## 4485       p    f          y       d           e          b  poisonous
## 4486       p    f          v       p           e          b  poisonous
## 4487       p    f          v       d           e          b  poisonous
## 4488       p    f          v       d           e          b  poisonous
## 4489       p    f          y       d           e          b  poisonous
## 4490       p    f          y       d           e          b  poisonous
## 4491       e    n          v       l           e          b     edible
## 4492       p    f          v       g           e          b  poisonous
## 4493       p    f          y       p           e          b  poisonous
## 4494       p    n          v       d           e          ?  poisonous
## 4495       p    f          y       p           e          b  poisonous
## 4496       p    f          v       g           t          b  poisonous
## 4497       e    n          c       w           e          ?     edible
## 4498       p    y          v       p           t          ?  poisonous
## 4499       p    c          v       d           e          b  poisonous
## 4500       p    f          y       d           e          b  poisonous
## 4501       p    f          v       g           e          b  poisonous
## 4502       p    f          y       d           e          b  poisonous
## 4503       p    f          v       g           e          b  poisonous
## 4504       p    f          v       g           e          b  poisonous
## 4505       p    f          y       d           e          b  poisonous
## 4506       p    f          y       d           e          b  poisonous
## 4507       p    f          y       g           e          b  poisonous
## 4508       p    f          y       g           e          b  poisonous
## 4509       p    f          v       d           e          b  poisonous
## 4510       p    f          v       p           e          b  poisonous
## 4511       p    f          y       p           e          b  poisonous
## 4512       p    f          y       p           e          b  poisonous
## 4513       p    f          y       d           e          b  poisonous
## 4514       p    f          v       p           e          b  poisonous
## 4515       p    f          v       d           e          b  poisonous
## 4516       p    f          v       g           e          b  poisonous
## 4517       p    f          v       g           e          b  poisonous
## 4518       p    f          v       d           e          b  poisonous
## 4519       e    n          c       w           e          ?     edible
## 4520       p    f          v       d           e          b  poisonous
## 4521       p    f          v       d           e          b  poisonous
## 4522       p    s          v       l           t          ?  poisonous
## 4523       p    f          y       d           e          b  poisonous
## 4524       p    f          v       p           e          b  poisonous
## 4525       p    f          y       d           e          b  poisonous
## 4526       p    f          y       g           e          b  poisonous
## 4527       p    f          v       d           e          b  poisonous
## 4528       p    f          v       g           e          b  poisonous
## 4529       p    f          y       p           e          b  poisonous
## 4530       p    f          v       p           e          b  poisonous
## 4531       p    f          y       g           e          b  poisonous
## 4532       p    f          y       g           e          b  poisonous
## 4533       e    n          v       d           e          ?     edible
## 4534       e    n          c       w           e          ?     edible
## 4535       p    f          y       d           e          b  poisonous
## 4536       p    f          y       p           e          b  poisonous
## 4537       p    f          v       g           e          b  poisonous
## 4538       p    f          y       d           e          b  poisonous
## 4539       p    f          v       g           e          b  poisonous
## 4540       p    f          y       g           e          b  poisonous
## 4541       p    f          v       g           e          b  poisonous
## 4542       p    f          y       g           e          b  poisonous
## 4543       p    f          v       d           e          b  poisonous
## 4544       p    f          v       d           e          b  poisonous
## 4545       p    f          v       g           e          b  poisonous
## 4546       p    f          y       g           e          b  poisonous
## 4547       p    f          v       g           e          b  poisonous
## 4548       p    f          v       g           t          b  poisonous
## 4549       p    n          v       m           e          b  poisonous
## 4550       p    f          y       p           e          b  poisonous
## 4551       p    f          v       p           e          b  poisonous
## 4552       p    f          v       g           e          b  poisonous
## 4553       p    f          v       d           e          b  poisonous
## 4554       p    f          v       p           e          b  poisonous
## 4555       p    f          y       d           e          b  poisonous
## 4556       e    n          v       d           t          b     edible
## 4557       e    n          v       d           e          ?     edible
## 4558       p    f          y       d           e          b  poisonous
## 4559       p    f          v       g           e          b  poisonous
## 4560       p    f          v       d           e          b  poisonous
## 4561       p    f          v       d           e          b  poisonous
## 4562       p    f          y       p           e          b  poisonous
## 4563       p    f          v       d           e          b  poisonous
## 4564       p    f          y       p           e          b  poisonous
## 4565       p    f          v       g           e          b  poisonous
## 4566       p    f          y       p           e          b  poisonous
## 4567       p    f          y       g           e          b  poisonous
## 4568       p    f          v       p           e          b  poisonous
## 4569       p    f          y       p           e          b  poisonous
## 4570       e    n          v       d           t          b     edible
## 4571       p    f          y       d           e          b  poisonous
## 4572       p    f          v       d           e          b  poisonous
## 4573       p    f          y       p           e          b  poisonous
## 4574       p    f          v       p           e          b  poisonous
## 4575       p    f          y       p           e          b  poisonous
## 4576       p    f          y       d           e          b  poisonous
## 4577       p    f          v       g           e          b  poisonous
## 4578       p    f          y       d           e          b  poisonous
## 4579       p    f          v       d           e          b  poisonous
## 4580       p    f          y       d           e          b  poisonous
## 4581       p    f          v       p           e          b  poisonous
## 4582       p    f          y       p           e          b  poisonous
## 4583       p    c          v       d           e          b  poisonous
## 4584       p    f          y       d           e          b  poisonous
## 4585       p    f          v       p           e          b  poisonous
## 4586       p    f          v       d           e          b  poisonous
## 4587       p    f          v       g           e          b  poisonous
## 4588       p    f          v       d           e          b  poisonous
## 4589       p    f          v       d           e          b  poisonous
## 4590       p    f          y       p           e          b  poisonous
## 4591       p    f          v       g           e          b  poisonous
## 4592       p    f          v       g           e          b  poisonous
## 4593       p    f          y       p           e          b  poisonous
## 4594       p    f          v       d           e          b  poisonous
## 4595       p    f          v       g           e          b  poisonous
## 4596       p    f          y       p           e          b  poisonous
## 4597       p    f          y       d           e          b  poisonous
## 4598       p    f          v       g           e          b  poisonous
## 4599       p    f          y       d           e          b  poisonous
## 4600       p    f          y       d           e          b  poisonous
## 4601       p    f          v       g           e          b  poisonous
## 4602       p    f          v       d           e          b  poisonous
## 4603       p    f          y       g           e          b  poisonous
## 4604       p    f          v       d           e          b  poisonous
## 4605       p    f          y       d           e          b  poisonous
## 4606       p    f          v       d           e          b  poisonous
## 4607       p    f          y       d           e          b  poisonous
## 4608       p    f          v       d           e          b  poisonous
## 4609       p    f          v       g           e          b  poisonous
## 4610       p    y          v       d           t          ?  poisonous
## 4611       e    n          c       w           e          ?     edible
## 4612       p    f          v       g           e          b  poisonous
## 4613       p    f          y       d           e          b  poisonous
## 4614       p    f          y       d           e          b  poisonous
## 4615       p    f          y       d           e          b  poisonous
## 4616       p    f          v       p           e          b  poisonous
## 4617       p    f          y       d           e          b  poisonous
## 4618       p    f          v       p           e          b  poisonous
## 4619       p    f          v       p           e          b  poisonous
## 4620       p    f          y       g           e          b  poisonous
## 4621       p    f          y       d           e          b  poisonous
## 4622       p    f          v       p           e          b  poisonous
## 4623       p    f          y       g           e          b  poisonous
## 4624       p    f          y       g           e          b  poisonous
## 4625       p    f          v       d           e          b  poisonous
## 4626       p    f          v       d           e          b  poisonous
## 4627       p    f          v       p           e          b  poisonous
## 4628       p    c          s       d           e          b  poisonous
## 4629       p    f          v       g           t          b  poisonous
## 4630       e    n          v       d           t          b     edible
## 4631       p    f          v       p           e          b  poisonous
## 4632       p    f          y       d           e          b  poisonous
## 4633       p    f          v       g           e          b  poisonous
## 4634       e    n          v       d           t          b     edible
## 4635       p    f          y       d           e          b  poisonous
## 4636       p    f          v       p           e          b  poisonous
## 4637       p    f          y       p           e          b  poisonous
## 4638       p    f          v       p           e          b  poisonous
## 4639       p    f          y       d           e          b  poisonous
## 4640       p    f          v       g           e          b  poisonous
## 4641       p    f          s       u           t          b  poisonous
## 4642       p    f          v       d           e          b  poisonous
## 4643       p    f          v       g           e          b  poisonous
## 4644       p    f          y       p           e          b  poisonous
## 4645       p    f          v       p           e          b  poisonous
## 4646       p    f          v       d           e          b  poisonous
## 4647       e    n          v       d           e          ?     edible
## 4648       p    f          y       d           e          b  poisonous
## 4649       p    f          v       g           e          b  poisonous
## 4650       p    f          y       g           e          b  poisonous
## 4651       p    f          y       g           e          b  poisonous
## 4652       e    n          y       d           t          b     edible
## 4653       p    f          v       p           e          b  poisonous
## 4654       p    f          y       d           e          b  poisonous
## 4655       p    f          y       p           e          b  poisonous
## 4656       p    f          y       g           e          b  poisonous
## 4657       p    f          v       d           e          b  poisonous
## 4658       p    f          v       p           e          b  poisonous
## 4659       p    f          v       p           e          b  poisonous
## 4660       p    f          v       g           e          b  poisonous
## 4661       p    f          s       u           t          b  poisonous
## 4662       e    n          c       w           e          ?     edible
## 4663       e    n          y       d           e          ?     edible
## 4664       p    f          v       g           e          b  poisonous
## 4665       p    f          y       d           e          b  poisonous
## 4666       p    f          y       p           e          b  poisonous
## 4667       p    f          y       d           e          b  poisonous
## 4668       p    f          y       p           e          b  poisonous
## 4669       p    f          y       g           e          b  poisonous
## 4670       p    f          y       g           e          b  poisonous
## 4671       p    f          y       p           e          b  poisonous
## 4672       p    f          y       p           e          b  poisonous
## 4673       e    n          c       w           e          ?     edible
## 4674       p    f          y       p           e          b  poisonous
## 4675       p    f          y       p           e          b  poisonous
## 4676       p    f          y       p           e          b  poisonous
## 4677       p    f          v       g           e          b  poisonous
## 4678       p    f          y       d           e          b  poisonous
## 4679       p    f          y       d           e          b  poisonous
## 4680       p    f          y       p           e          b  poisonous
## 4681       p    f          y       g           e          b  poisonous
## 4682       p    f          y       d           e          b  poisonous
## 4683       p    f          y       p           e          b  poisonous
## 4684       p    f          y       d           e          b  poisonous
## 4685       p    f          y       p           e          b  poisonous
## 4686       p    f          v       p           e          b  poisonous
## 4687       p    f          v       d           e          b  poisonous
## 4688       p    f          y       g           e          b  poisonous
## 4689       p    f          v       d           e          b  poisonous
## 4690       p    f          y       g           e          b  poisonous
## 4691       p    f          v       d           e          b  poisonous
## 4692       p    f          y       p           e          b  poisonous
## 4693       p    f          y       g           e          b  poisonous
## 4694       p    f          v       p           e          b  poisonous
## 4695       p    f          v       p           e          b  poisonous
## 4696       e    n          y       d           t          b     edible
## 4697       p    f          y       d           e          b  poisonous
## 4698       p    f          y       p           e          b  poisonous
## 4699       p    f          s       g           t          b  poisonous
## 4700       p    f          v       p           e          b  poisonous
## 4701       p    f          v       p           e          b  poisonous
## 4702       p    c          s       d           e          b  poisonous
## 4703       p    f          y       d           e          b  poisonous
## 4704       p    f          s       u           t          b  poisonous
## 4705       p    f          y       g           e          b  poisonous
## 4706       p    f          y       d           e          b  poisonous
## 4707       p    f          y       g           e          b  poisonous
## 4708       p    n          v       g           e          b  poisonous
## 4709       p    f          v       u           t          b  poisonous
## 4710       p    f          v       g           e          b  poisonous
## 4711       p    f          y       g           e          b  poisonous
## 4712       p    f          v       g           e          b  poisonous
## 4713       p    f          y       p           e          b  poisonous
## 4714       p    f          v       p           e          b  poisonous
## 4715       p    f          y       p           e          b  poisonous
## 4716       p    f          v       p           e          b  poisonous
## 4717       e    n          v       d           e          ?     edible
## 4718       p    f          y       g           e          b  poisonous
## 4719       e    n          v       d           t          b     edible
## 4720       p    f          y       g           e          b  poisonous
## 4721       p    f          v       g           e          b  poisonous
## 4722       p    f          v       l           t          ?  poisonous
## 4723       p    f          y       g           e          b  poisonous
## 4724       p    f          y       d           e          b  poisonous
## 4725       p    f          y       g           e          b  poisonous
## 4726       p    f          v       p           e          b  poisonous
## 4727       p    f          y       g           e          b  poisonous
## 4728       p    f          y       d           e          b  poisonous
## 4729       p    f          y       g           e          b  poisonous
## 4730       p    f          v       p           e          b  poisonous
## 4731       p    f          y       g           e          b  poisonous
## 4732       e    n          y       d           t          b     edible
## 4733       p    f          v       g           e          b  poisonous
## 4734       e    n          y       d           t          b     edible
## 4735       p    f          y       d           e          b  poisonous
## 4736       p    f          y       p           e          b  poisonous
## 4737       p    f          y       p           e          b  poisonous
## 4738       p    f          y       p           e          b  poisonous
## 4739       p    f          v       d           e          b  poisonous
## 4740       p    f          v       d           e          b  poisonous
## 4741       p    f          y       p           e          b  poisonous
## 4742       p    f          y       g           e          b  poisonous
## 4743       p    f          v       d           e          b  poisonous
## 4744       p    f          y       p           e          b  poisonous
## 4745       p    f          v       d           e          b  poisonous
## 4746       p    f          y       d           e          b  poisonous
## 4747       p    f          y       p           e          b  poisonous
## 4748       p    f          v       d           e          b  poisonous
## 4749       p    c          s       d           e          b  poisonous
## 4750       p    f          v       d           e          b  poisonous
## 4751       p    f          v       d           e          b  poisonous
## 4752       p    f          y       g           e          b  poisonous
## 4753       p    f          v       d           e          b  poisonous
## 4754       p    f          v       p           e          b  poisonous
## 4755       p    f          y       p           e          b  poisonous
## 4756       p    f          v       d           e          b  poisonous
## 4757       p    f          v       d           e          b  poisonous
## 4758       p    f          v       g           e          b  poisonous
## 4759       p    f          y       d           e          b  poisonous
## 4760       p    f          y       d           e          b  poisonous
## 4761       p    f          v       d           e          b  poisonous
## 4762       p    f          y       d           e          b  poisonous
## 4763       p    f          v       d           e          b  poisonous
## 4764       p    f          y       g           e          b  poisonous
## 4765       p    f          v       g           e          b  poisonous
## 4766       p    f          y       d           e          b  poisonous
## 4767       p    f          y       p           e          b  poisonous
## 4768       p    f          v       g           e          b  poisonous
## 4769       p    f          v       p           e          b  poisonous
## 4770       p    f          v       d           e          b  poisonous
## 4771       p    f          y       d           e          b  poisonous
## 4772       p    f          v       p           e          b  poisonous
## 4773       p    f          v       p           e          b  poisonous
## 4774       p    f          v       d           e          b  poisonous
## 4775       p    f          y       d           e          b  poisonous
## 4776       p    f          v       p           e          b  poisonous
## 4777       e    n          c       w           e          ?     edible
## 4778       p    f          v       d           e          b  poisonous
## 4779       p    c          v       d           e          b  poisonous
## 4780       p    f          y       g           e          b  poisonous
## 4781       p    f          y       p           e          b  poisonous
## 4782       p    f          y       g           e          b  poisonous
## 4783       e    n          y       d           t          b     edible
## 4784       p    f          v       d           e          b  poisonous
## 4785       p    f          y       g           e          b  poisonous
## 4786       p    f          v       g           e          b  poisonous
## 4787       p    f          y       g           e          b  poisonous
## 4788       e    n          v       d           t          b     edible
## 4789       p    f          y       p           e          b  poisonous
## 4790       p    f          v       p           e          b  poisonous
## 4791       p    f          v       p           e          b  poisonous
## 4792       p    f          y       d           e          b  poisonous
## 4793       p    f          y       d           e          b  poisonous
## 4794       p    f          v       g           e          b  poisonous
## 4795       p    f          v       g           e          b  poisonous
## 4796       p    f          y       g           e          b  poisonous
## 4797       p    f          y       p           e          b  poisonous
## 4798       p    f          y       g           e          b  poisonous
## 4799       e    n          y       d           t          b     edible
## 4800       p    f          s       g           t          b  poisonous
## 4801       p    f          v       p           t          ?  poisonous
## 4802       p    f          v       g           t          b  poisonous
## 4803       p    f          y       g           e          b  poisonous
## 4804       p    f          v       g           e          b  poisonous
## 4805       p    f          v       d           e          b  poisonous
## 4806       e    n          c       w           e          ?     edible
## 4807       p    f          v       p           e          b  poisonous
## 4808       p    f          v       g           e          b  poisonous
## 4809       p    f          y       d           e          b  poisonous
## 4810       p    f          y       d           e          b  poisonous
## 4811       p    f          y       g           e          b  poisonous
## 4812       e    n          c       w           e          ?     edible
## 4813       p    f          v       g           e          b  poisonous
## 4814       p    n          v       d           e          ?  poisonous
## 4815       p    f          v       d           e          b  poisonous
## 4816       p    f          v       p           e          b  poisonous
## 4817       p    s          v       p           t          ?  poisonous
## 4818       p    f          v       d           e          b  poisonous
## 4819       p    f          y       p           e          b  poisonous
## 4820       p    f          v       g           t          b  poisonous
## 4821       p    f          v       d           e          b  poisonous
## 4822       p    f          y       g           e          b  poisonous
## 4823       p    f          y       g           e          b  poisonous
## 4824       e    n          c       w           e          ?     edible
## 4825       p    f          v       d           e          b  poisonous
## 4826       p    n          v       d           e          ?  poisonous
## 4827       p    f          v       d           e          b  poisonous
## 4828       p    f          s       u           t          b  poisonous
## 4829       p    f          v       d           e          b  poisonous
## 4830       p    f          v       g           e          b  poisonous
## 4831       e    n          c       w           e          ?     edible
## 4832       p    f          v       p           e          b  poisonous
## 4833       p    f          v       p           e          b  poisonous
## 4834       e    n          v       l           e          b     edible
## 4835       p    c          v       d           e          b  poisonous
## 4836       p    f          y       g           e          b  poisonous
## 4837       p    f          v       p           e          b  poisonous
## 4838       p    f          y       d           e          b  poisonous
## 4839       p    f          v       p           e          b  poisonous
## 4840       p    n          v       g           e          b  poisonous
## 4841       p    f          v       g           t          b  poisonous
## 4842       e    n          y       d           t          b     edible
## 4843       p    n          v       m           e          b  poisonous
## 4844       e    n          c       w           e          ?     edible
## 4845       p    f          v       g           t          b  poisonous
## 4846       e    n          c       w           e          ?     edible
## 4847       p    f          y       p           e          b  poisonous
## 4848       p    f          v       u           t          b  poisonous
## 4849       p    f          v       d           e          b  poisonous
## 4850       p    f          v       d           e          b  poisonous
## 4851       p    f          v       d           e          b  poisonous
## 4852       p    f          y       p           e          b  poisonous
## 4853       p    f          v       d           e          b  poisonous
## 4854       p    f          y       d           e          b  poisonous
## 4855       p    f          y       p           e          b  poisonous
## 4856       p    f          y       p           e          b  poisonous
## 4857       p    f          v       p           e          b  poisonous
## 4858       e    n          c       w           e          ?     edible
## 4859       e    n          c       w           e          ?     edible
## 4860       e    n          c       w           e          ?     edible
## 4861       p    f          v       d           e          b  poisonous
## 4862       e    n          v       d           t          b     edible
## 4863       p    f          y       p           e          b  poisonous
## 4864       p    f          y       g           e          b  poisonous
## 4865       p    f          v       g           t          b  poisonous
## 4866       p    f          v       p           e          b  poisonous
## 4867       p    f          y       d           e          b  poisonous
## 4868       p    f          v       g           e          b  poisonous
## 4869       p    f          v       l           t          ?  poisonous
## 4870       p    f          v       p           e          b  poisonous
## 4871       e    n          c       w           e          ?     edible
## 4872       e    n          v       d           t          b     edible
## 4873       p    f          y       g           e          b  poisonous
## 4874       p    f          v       p           e          b  poisonous
## 4875       p    f          y       d           e          b  poisonous
## 4876       e    n          v       d           t          b     edible
## 4877       p    f          v       p           e          b  poisonous
## 4878       p    f          y       p           e          b  poisonous
## 4879       p    f          v       p           e          b  poisonous
## 4880       p    f          y       d           e          b  poisonous
## 4881       p    f          v       d           e          b  poisonous
## 4882       p    n          v       m           e          b  poisonous
## 4883       p    f          y       p           e          b  poisonous
## 4884       p    f          v       d           t          ?  poisonous
## 4885       p    f          y       g           e          b  poisonous
## 4886       p    f          v       g           e          b  poisonous
## 4887       p    f          y       p           e          b  poisonous
## 4888       e    n          c       w           e          ?     edible
## 4889       p    f          s       g           t          b  poisonous
## 4890       p    f          y       g           e          b  poisonous
## 4891       p    f          v       p           e          b  poisonous
## 4892       p    f          v       g           e          b  poisonous
## 4893       p    f          s       u           t          b  poisonous
## 4894       p    c          v       d           e          b  poisonous
## 4895       p    f          y       p           e          b  poisonous
## 4896       p    f          y       g           e          b  poisonous
## 4897       p    f          y       p           e          b  poisonous
## 4898       e    n          y       d           e          ?     edible
## 4899       e    n          v       d           e          ?     edible
## 4900       p    f          v       d           e          b  poisonous
## 4901       p    f          y       p           e          b  poisonous
## 4902       p    f          y       g           e          b  poisonous
## 4903       p    y          v       p           t          ?  poisonous
## 4904       p    y          v       l           t          ?  poisonous
## 4905       p    f          y       d           e          b  poisonous
## 4906       p    f          v       g           e          b  poisonous
## 4907       p    f          y       d           e          b  poisonous
## 4908       p    f          y       g           e          b  poisonous
## 4909       p    f          v       d           e          b  poisonous
## 4910       p    f          y       p           e          b  poisonous
## 4911       e    n          c       w           e          ?     edible
## 4912       p    f          y       p           e          b  poisonous
## 4913       p    f          y       p           e          b  poisonous
## 4914       p    f          s       g           t          b  poisonous
## 4915       p    f          v       g           e          b  poisonous
## 4916       p    f          y       d           e          b  poisonous
## 4917       p    f          y       p           e          b  poisonous
## 4918       p    f          v       u           t          b  poisonous
## 4919       p    f          y       g           e          b  poisonous
## 4920       p    f          v       g           e          b  poisonous
## 4921       p    c          v       d           e          b  poisonous
## 4922       p    f          y       p           e          b  poisonous
## 4923       e    n          y       d           t          b     edible
## 4924       p    f          y       g           e          b  poisonous
## 4925       p    f          y       p           e          b  poisonous
## 4926       e    n          c       w           e          ?     edible
## 4927       p    f          v       g           e          b  poisonous
## 4928       p    f          v       d           e          b  poisonous
## 4929       p    f          y       g           e          b  poisonous
## 4930       e    n          v       l           e          b     edible
## 4931       e    n          c       w           e          ?     edible
## 4932       p    f          v       p           e          b  poisonous
## 4933       p    f          v       g           e          b  poisonous
## 4934       p    f          v       g           t          b  poisonous
## 4935       p    f          y       g           e          b  poisonous
## 4936       p    f          v       p           e          b  poisonous
## 4937       p    f          v       g           e          b  poisonous
## 4938       p    s          v       p           t          ?  poisonous
## 4939       e    n          c       w           e          ?     edible
## 4940       p    f          y       d           e          b  poisonous
## 4941       p    f          v       p           e          b  poisonous
## 4942       p    f          y       p           e          b  poisonous
## 4943       p    f          v       d           e          b  poisonous
## 4944       p    f          v       g           e          b  poisonous
## 4945       e    n          c       w           e          ?     edible
## 4946       p    n          v       d           e          ?  poisonous
## 4947       p    f          y       d           e          b  poisonous
## 4948       p    f          y       d           e          b  poisonous
## 4949       p    f          v       p           e          b  poisonous
## 4950       p    f          v       u           t          b  poisonous
## 4951       e    n          c       w           e          ?     edible
## 4952       p    f          s       u           t          b  poisonous
## 4953       p    f          y       p           e          b  poisonous
## 4954       p    f          v       p           e          b  poisonous
## 4955       p    f          v       p           e          b  poisonous
## 4956       p    f          y       g           e          b  poisonous
## 4957       p    f          v       d           e          b  poisonous
## 4958       p    f          v       u           t          b  poisonous
## 4959       p    f          y       p           e          b  poisonous
## 4960       p    f          y       d           e          b  poisonous
## 4961       p    f          y       g           e          b  poisonous
## 4962       p    f          y       d           e          b  poisonous
## 4963       p    f          s       u           t          b  poisonous
## 4964       e    n          c       w           e          ?     edible
## 4965       e    n          c       w           e          ?     edible
## 4966       e    n          c       w           e          ?     edible
## 4967       p    n          v       g           e          b  poisonous
## 4968       p    f          v       p           e          b  poisonous
## 4969       p    f          v       p           e          b  poisonous
## 4970       p    f          v       g           e          b  poisonous
## 4971       p    f          y       d           e          b  poisonous
## 4972       p    f          y       p           e          b  poisonous
## 4973       p    f          v       d           e          b  poisonous
## 4974       p    f          y       d           e          b  poisonous
## 4975       p    f          v       d           e          b  poisonous
## 4976       p    f          v       g           e          b  poisonous
## 4977       p    f          y       g           e          b  poisonous
## 4978       p    f          v       d           e          b  poisonous
## 4979       p    f          y       p           e          b  poisonous
## 4980       p    f          v       g           e          b  poisonous
## 4981       p    f          y       d           e          b  poisonous
## 4982       p    f          v       p           e          b  poisonous
## 4983       p    f          y       p           e          b  poisonous
## 4984       e    n          y       d           e          ?     edible
## 4985       p    f          v       g           e          b  poisonous
## 4986       p    y          v       l           t          ?  poisonous
## 4987       p    f          v       g           e          b  poisonous
## 4988       p    f          y       p           e          b  poisonous
## 4989       p    f          v       g           e          b  poisonous
## 4990       p    f          v       d           e          b  poisonous
## 4991       p    f          y       d           e          b  poisonous
## 4992       p    f          v       p           e          b  poisonous
## 4993       e    n          c       w           e          ?     edible
## 4994       p    f          y       p           e          b  poisonous
## 4995       p    f          v       d           e          b  poisonous
## 4996       e    n          c       w           e          ?     edible
## 4997       p    f          y       p           e          b  poisonous
## 4998       p    f          v       d           e          b  poisonous
## 4999       p    f          v       p           t          ?  poisonous
## 5000       p    f          v       d           e          b  poisonous
## 5001       p    n          v       d           e          ?  poisonous
## 5002       p    n          v       g           e          b  poisonous
## 5003       p    f          v       d           e          b  poisonous
## 5004       p    f          y       d           e          b  poisonous
## 5005       e    n          y       d           e          ?     edible
## 5006       p    f          v       g           e          b  poisonous
## 5007       p    f          y       g           e          b  poisonous
## 5008       p    f          y       g           e          b  poisonous
## 5009       p    f          y       d           e          b  poisonous
## 5010       e    n          c       w           e          ?     edible
## 5011       p    f          v       g           e          b  poisonous
## 5012       p    f          v       g           e          b  poisonous
## 5013       p    f          v       p           e          b  poisonous
## 5014       p    f          v       p           e          b  poisonous
## 5015       e    n          c       w           e          ?     edible
## 5016       p    f          y       d           e          b  poisonous
## 5017       p    f          v       p           e          b  poisonous
## 5018       p    f          v       d           e          b  poisonous
## 5019       p    f          v       p           e          b  poisonous
## 5020       p    f          v       u           t          b  poisonous
## 5021       p    c          v       d           e          b  poisonous
## 5022       p    f          y       d           e          b  poisonous
## 5023       e    n          v       d           e          ?     edible
## 5024       p    f          y       d           e          b  poisonous
## 5025       p    f          y       d           e          b  poisonous
## 5026       p    f          v       g           e          b  poisonous
## 5027       p    f          v       p           e          b  poisonous
## 5028       p    f          s       u           t          b  poisonous
## 5029       p    f          y       d           e          b  poisonous
## 5030       p    f          y       p           e          b  poisonous
## 5031       p    f          y       d           e          b  poisonous
## 5032       p    f          v       d           e          b  poisonous
## 5033       p    f          v       g           e          b  poisonous
## 5034       p    f          y       d           e          b  poisonous
## 5035       p    f          y       g           e          b  poisonous
## 5036       p    f          y       p           e          b  poisonous
## 5037       p    f          v       g           e          b  poisonous
## 5038       p    f          y       d           e          b  poisonous
## 5039       p    f          y       p           e          b  poisonous
## 5040       p    f          v       p           e          b  poisonous
## 5041       p    s          v       l           t          ?  poisonous
## 5042       p    f          y       p           e          b  poisonous
## 5043       p    f          v       p           e          b  poisonous
## 5044       p    f          v       g           t          b  poisonous
## 5045       p    f          v       d           e          b  poisonous
## 5046       p    f          y       p           e          b  poisonous
## 5047       p    f          y       p           e          b  poisonous
## 5048       p    f          v       d           e          b  poisonous
## 5049       p    f          y       d           e          b  poisonous
## 5050       p    f          v       d           e          b  poisonous
## 5051       p    y          v       l           t          ?  poisonous
## 5052       e    n          c       w           e          ?     edible
## 5053       e    n          c       w           e          ?     edible
## 5054       p    f          y       d           e          b  poisonous
## 5055       p    f          y       p           e          b  poisonous
## 5056       p    f          y       g           e          b  poisonous
## 5057       p    f          y       g           e          b  poisonous
## 5058       p    f          s       u           t          b  poisonous
## 5059       p    f          v       p           e          b  poisonous
## 5060       p    f          s       u           t          b  poisonous
## 5061       p    f          v       p           e          b  poisonous
## 5062       p    f          y       p           e          b  poisonous
## 5063       p    f          s       u           t          b  poisonous
## 5064       p    f          s       g           t          b  poisonous
## 5065       p    f          s       u           t          b  poisonous
## 5066       p    f          y       d           e          b  poisonous
## 5067       p    f          y       p           e          b  poisonous
## 5068       p    f          v       g           e          b  poisonous
## 5069       p    f          v       p           e          b  poisonous
## 5070       e    n          y       d           e          ?     edible
## 5071       e    n          c       w           e          ?     edible
## 5072       p    f          v       g           e          b  poisonous
## 5073       p    f          v       g           e          b  poisonous
## 5074       p    y          v       l           t          ?  poisonous
## 5075       p    f          v       p           e          b  poisonous
## 5076       p    f          y       p           e          b  poisonous
## 5077       p    f          v       p           e          b  poisonous
## 5078       p    f          y       d           e          b  poisonous
## 5079       e    n          y       d           t          b     edible
## 5080       p    f          y       g           e          b  poisonous
## 5081       p    f          v       d           e          b  poisonous
## 5082       p    f          v       p           e          b  poisonous
## 5083       p    f          y       g           e          b  poisonous
## 5084       p    f          y       p           e          b  poisonous
## 5085       p    n          v       d           e          ?  poisonous
## 5086       p    f          y       g           e          b  poisonous
## 5087       e    n          v       l           e          b     edible
## 5088       p    f          v       p           e          b  poisonous
## 5089       p    f          y       p           e          b  poisonous
## 5090       p    f          v       d           e          b  poisonous
## 5091       p    f          v       p           e          b  poisonous
## 5092       p    f          v       g           e          b  poisonous
## 5093       p    f          v       d           e          b  poisonous
## 5094       p    f          y       d           e          b  poisonous
## 5095       p    f          v       p           e          b  poisonous
## 5096       p    f          y       d           e          b  poisonous
## 5097       p    n          v       g           e          b  poisonous
## 5098       e    n          c       w           e          ?     edible
## 5099       p    f          v       p           e          b  poisonous
## 5100       p    f          v       g           e          b  poisonous
## 5101       e    n          c       w           e          ?     edible
## 5102       p    f          y       d           e          b  poisonous
## 5103       p    f          s       u           t          b  poisonous
## 5104       p    s          v       p           t          ?  poisonous
## 5105       p    y          v       d           t          ?  poisonous
## 5106       p    y          v       p           t          ?  poisonous
## 5107       p    n          c       l           e          b  poisonous
## 5108       p    f          v       u           t          b  poisonous
## 5109       e    n          v       l           e          b     edible
## 5110       p    f          y       g           e          b  poisonous
## 5111       p    f          v       d           e          b  poisonous
## 5112       p    f          y       p           e          b  poisonous
## 5113       e    n          c       w           e          ?     edible
## 5114       p    f          v       g           t          b  poisonous
## 5115       p    f          s       g           t          b  poisonous
## 5116       p    y          v       p           t          ?  poisonous
## 5117       e    n          v       l           e          b     edible
## 5118       p    f          s       u           t          b  poisonous
## 5119       p    f          v       g           t          b  poisonous
## 5120       p    f          v       u           t          b  poisonous
## 5121       p    f          v       g           t          b  poisonous
## 5122       e    n          v       l           e          b     edible
## 5123       p    f          v       d           e          b  poisonous
## 5124       p    f          v       g           t          b  poisonous
## 5125       p    f          s       u           t          b  poisonous
## 5126       p    n          c       l           e          b  poisonous
## 5127       p    f          s       u           t          b  poisonous
## 5128       p    n          c       l           e          b  poisonous
## 5129       p    f          v       g           t          b  poisonous
## 5130       p    f          s       u           t          b  poisonous
## 5131       p    n          v       d           e          ?  poisonous
## 5132       p    s          v       d           t          ?  poisonous
## 5133       p    y          v       d           t          ?  poisonous
## 5134       e    n          c       w           e          ?     edible
## 5135       e    n          c       w           e          ?     edible
## 5136       p    f          v       g           t          b  poisonous
## 5137       p    n          v       m           e          b  poisonous
## 5138       p    f          y       p           e          b  poisonous
## 5139       p    f          y       g           e          b  poisonous
## 5140       p    n          v       g           e          b  poisonous
## 5141       p    f          v       p           t          ?  poisonous
## 5142       p    y          v       p           t          ?  poisonous
## 5143       p    f          y       d           e          b  poisonous
## 5144       e    n          c       w           e          ?     edible
## 5145       p    f          v       l           t          ?  poisonous
## 5146       p    f          y       g           e          b  poisonous
## 5147       p    y          v       d           t          ?  poisonous
## 5148       e    n          v       l           e          b     edible
## 5149       p    f          v       p           t          ?  poisonous
## 5150       e    n          c       w           e          ?     edible
## 5151       e    n          c       w           e          ?     edible
## 5152       p    f          y       p           e          b  poisonous
## 5153       p    n          v       m           e          b  poisonous
## 5154       p    n          v       d           e          ?  poisonous
## 5155       p    y          v       l           t          ?  poisonous
## 5156       p    f          s       g           t          b  poisonous
## 5157       p    f          v       g           t          b  poisonous
## 5158       p    f          y       p           e          b  poisonous
## 5159       p    f          v       g           t          b  poisonous
## 5160       p    f          v       l           t          ?  poisonous
## 5161       p    f          v       g           t          b  poisonous
## 5162       p    n          v       d           e          ?  poisonous
## 5163       e    n          c       w           e          ?     edible
## 5164       p    f          s       g           t          b  poisonous
## 5165       p    f          s       g           t          b  poisonous
## 5166       e    n          c       w           e          ?     edible
## 5167       p    f          y       p           e          b  poisonous
## 5168       p    n          v       d           e          ?  poisonous
## 5169       e    n          c       w           e          ?     edible
## 5170       p    f          y       g           e          b  poisonous
## 5171       p    f          v       g           t          b  poisonous
## 5172       p    f          s       g           t          b  poisonous
## 5173       p    f          v       g           e          b  poisonous
## 5174       p    f          v       d           e          b  poisonous
## 5175       e    n          c       w           e          ?     edible
## 5176       e    n          c       w           e          ?     edible
## 5177       p    n          v       g           e          b  poisonous
## 5178       e    n          v       l           e          b     edible
## 5179       e    n          c       w           e          ?     edible
## 5180       p    f          v       u           t          b  poisonous
## 5181       p    f          v       g           t          b  poisonous
## 5182       p    f          y       d           e          b  poisonous
## 5183       p    f          v       u           t          b  poisonous
## 5184       p    f          s       g           t          b  poisonous
## 5185       e    n          v       l           e          b     edible
## 5186       p    y          v       d           t          ?  poisonous
## 5187       p    f          y       d           e          b  poisonous
## 5188       e    n          v       d           e          ?     edible
## 5189       p    f          v       p           e          b  poisonous
## 5190       p    n          v       g           e          b  poisonous
## 5191       p    f          v       u           t          b  poisonous
## 5192       p    s          v       d           t          ?  poisonous
## 5193       e    n          c       w           e          ?     edible
## 5194       p    f          v       l           t          ?  poisonous
## 5195       p    f          v       p           e          b  poisonous
## 5196       p    f          s       u           t          b  poisonous
## 5197       e    n          c       w           e          ?     edible
## 5198       p    f          v       p           e          b  poisonous
## 5199       p    f          v       g           e          b  poisonous
## 5200       p    f          y       d           e          b  poisonous
## 5201       p    f          s       g           t          b  poisonous
## 5202       p    f          v       p           t          ?  poisonous
## 5203       p    f          v       d           e          b  poisonous
## 5204       p    f          v       d           e          b  poisonous
## 5205       p    n          v       d           e          ?  poisonous
## 5206       e    n          c       w           e          ?     edible
## 5207       p    f          v       g           e          b  poisonous
## 5208       p    y          v       l           t          ?  poisonous
## 5209       p    f          s       u           t          b  poisonous
## 5210       e    n          c       w           e          ?     edible
## 5211       p    f          v       p           e          b  poisonous
## 5212       p    y          v       d           t          ?  poisonous
## 5213       p    f          v       u           t          b  poisonous
## 5214       p    f          v       g           t          b  poisonous
## 5215       p    n          v       m           e          b  poisonous
## 5216       e    n          c       w           e          ?     edible
## 5217       p    f          v       u           t          b  poisonous
## 5218       p    y          v       d           t          ?  poisonous
## 5219       e    n          c       w           e          ?     edible
## 5220       p    f          y       d           e          b  poisonous
## 5221       e    n          c       w           e          ?     edible
## 5222       p    f          s       u           t          b  poisonous
## 5223       e    n          c       w           e          ?     edible
## 5224       p    n          v       d           e          ?  poisonous
## 5225       p    f          v       g           t          b  poisonous
## 5226       p    f          v       p           t          ?  poisonous
## 5227       p    f          v       d           t          ?  poisonous
## 5228       p    f          s       u           t          b  poisonous
## 5229       p    f          v       l           t          ?  poisonous
## 5230       e    n          c       w           e          ?     edible
## 5231       e    n          v       l           e          b     edible
## 5232       p    f          v       g           e          b  poisonous
## 5233       e    n          c       w           e          ?     edible
## 5234       p    f          y       p           e          b  poisonous
## 5235       p    f          v       d           e          b  poisonous
## 5236       p    f          v       u           t          b  poisonous
## 5237       p    n          c       l           e          b  poisonous
## 5238       e    n          v       l           e          b     edible
## 5239       p    n          v       d           e          ?  poisonous
## 5240       p    f          s       g           t          b  poisonous
## 5241       p    n          v       d           e          ?  poisonous
## 5242       p    f          v       d           e          b  poisonous
## 5243       e    n          c       w           e          ?     edible
## 5244       p    f          v       p           e          b  poisonous
## 5245       p    y          v       p           t          ?  poisonous
## 5246       p    f          y       d           e          b  poisonous
## 5247       p    f          v       p           e          b  poisonous
## 5248       p    n          v       g           e          b  poisonous
## 5249       p    f          y       g           e          b  poisonous
## 5250       p    f          v       g           t          b  poisonous
## 5251       p    f          v       g           t          b  poisonous
## 5252       e    n          c       w           e          ?     edible
## 5253       p    f          v       p           e          b  poisonous
## 5254       p    f          s       g           t          b  poisonous
## 5255       p    n          v       m           e          b  poisonous
## 5256       p    f          v       g           t          b  poisonous
## 5257       e    n          c       w           e          ?     edible
## 5258       p    f          s       u           t          b  poisonous
## 5259       p    n          v       d           e          ?  poisonous
## 5260       p    f          v       g           t          b  poisonous
## 5261       p    f          y       d           e          b  poisonous
## 5262       p    n          v       d           e          ?  poisonous
## 5263       p    f          s       u           t          b  poisonous
## 5264       e    n          c       w           e          ?     edible
## 5265       p    f          v       d           t          ?  poisonous
## 5266       p    y          v       d           t          ?  poisonous
## 5267       p    y          v       l           t          ?  poisonous
## 5268       p    f          v       u           t          b  poisonous
## 5269       e    n          c       w           e          ?     edible
## 5270       p    f          y       g           e          b  poisonous
## 5271       e    n          c       w           e          ?     edible
## 5272       p    f          s       u           t          b  poisonous
## 5273       e    n          v       l           e          b     edible
## 5274       p    s          v       l           t          ?  poisonous
## 5275       p    f          v       g           t          b  poisonous
## 5276       p    f          v       u           t          b  poisonous
## 5277       p    n          v       d           e          ?  poisonous
## 5278       p    n          v       m           e          b  poisonous
## 5279       p    f          y       p           e          b  poisonous
## 5280       e    n          c       w           e          ?     edible
## 5281       p    n          c       l           e          b  poisonous
## 5282       p    f          v       u           t          b  poisonous
## 5283       e    n          y       d           e          ?     edible
## 5284       e    n          v       d           e          ?     edible
## 5285       e    n          c       w           e          ?     edible
## 5286       p    f          v       g           t          b  poisonous
## 5287       p    y          v       d           t          ?  poisonous
## 5288       p    f          y       p           e          b  poisonous
## 5289       p    f          s       g           t          b  poisonous
## 5290       p    f          s       g           t          b  poisonous
## 5291       e    n          c       w           e          ?     edible
## 5292       p    y          v       d           t          ?  poisonous
## 5293       p    f          y       g           e          b  poisonous
## 5294       p    f          y       d           e          b  poisonous
## 5295       e    n          c       w           e          ?     edible
## 5296       p    f          s       g           t          b  poisonous
## 5297       p    s          v       l           t          ?  poisonous
## 5298       p    f          s       g           t          b  poisonous
## 5299       e    n          v       l           e          b     edible
## 5300       p    f          v       g           t          b  poisonous
## 5301       p    f          v       p           e          b  poisonous
## 5302       e    n          y       d           e          ?     edible
## 5303       p    f          v       p           e          b  poisonous
## 5304       p    f          v       l           t          ?  poisonous
## 5305       p    s          v       l           t          ?  poisonous
## 5306       e    n          c       w           e          ?     edible
## 5307       p    f          v       u           t          b  poisonous
## 5308       e    n          c       w           e          ?     edible
## 5309       e    n          c       w           e          ?     edible
## 5310       p    f          v       p           t          ?  poisonous
## 5311       p    n          v       d           e          ?  poisonous
## 5312       p    s          v       p           t          ?  poisonous
## 5313       e    n          c       w           e          ?     edible
## 5314       p    f          v       g           t          b  poisonous
## 5315       p    f          v       g           e          b  poisonous
## 5316       e    n          c       w           e          ?     edible
## 5317       p    n          v       m           e          b  poisonous
## 5318       e    n          v       l           e          b     edible
## 5319       p    f          v       p           e          b  poisonous
## 5320       p    f          s       g           t          b  poisonous
## 5321       p    s          v       l           t          ?  poisonous
## 5322       p    f          s       u           t          b  poisonous
## 5323       p    f          s       u           t          b  poisonous
## 5324       p    f          v       p           t          ?  poisonous
## 5325       e    n          v       d           e          ?     edible
## 5326       p    s          v       l           t          ?  poisonous
## 5327       p    f          v       g           e          b  poisonous
## 5328       p    y          v       l           t          ?  poisonous
## 5329       p    f          v       g           t          b  poisonous
## 5330       p    f          v       d           e          b  poisonous
## 5331       p    f          s       u           t          b  poisonous
## 5332       p    n          v       d           e          ?  poisonous
## 5333       p    f          v       u           t          b  poisonous
## 5334       p    f          v       u           t          b  poisonous
## 5335       e    n          v       l           e          b     edible
## 5336       p    f          v       u           t          b  poisonous
## 5337       p    s          v       p           t          ?  poisonous
## 5338       p    n          v       g           e          b  poisonous
## 5339       p    f          y       p           e          b  poisonous
## 5340       e    n          c       w           e          ?     edible
## 5341       p    n          v       g           e          b  poisonous
## 5342       p    n          v       d           e          ?  poisonous
## 5343       p    f          y       p           e          b  poisonous
## 5344       e    n          v       l           e          b     edible
## 5345       e    n          v       l           e          b     edible
## 5346       p    y          v       l           t          ?  poisonous
## 5347       p    f          v       u           t          b  poisonous
## 5348       p    f          s       u           t          b  poisonous
## 5349       p    f          v       g           t          b  poisonous
## 5350       p    f          s       g           t          b  poisonous
## 5351       e    n          v       d           e          ?     edible
## 5352       p    f          y       d           e          b  poisonous
## 5353       p    f          s       u           t          b  poisonous
## 5354       p    f          v       p           t          ?  poisonous
## 5355       p    f          y       g           e          b  poisonous
## 5356       p    f          v       u           t          b  poisonous
## 5357       p    f          s       u           t          b  poisonous
## 5358       p    f          y       p           e          b  poisonous
## 5359       p    f          y       p           e          b  poisonous
## 5360       p    f          v       d           t          ?  poisonous
## 5361       p    n          v       d           e          ?  poisonous
## 5362       e    n          c       w           e          ?     edible
## 5363       p    f          y       d           e          b  poisonous
## 5364       p    f          s       u           t          b  poisonous
## 5365       p    y          v       l           t          ?  poisonous
## 5366       p    f          v       d           e          b  poisonous
## 5367       p    f          y       d           e          b  poisonous
## 5368       p    f          s       u           t          b  poisonous
## 5369       p    n          v       m           e          b  poisonous
## 5370       p    f          y       g           e          b  poisonous
## 5371       e    n          c       w           e          ?     edible
## 5372       p    f          s       g           t          b  poisonous
## 5373       p    f          s       g           t          b  poisonous
## 5374       p    f          s       g           t          b  poisonous
## 5375       p    f          v       d           t          ?  poisonous
## 5376       p    n          v       m           e          b  poisonous
## 5377       p    f          s       u           t          b  poisonous
## 5378       e    n          c       w           e          ?     edible
## 5379       p    s          v       p           t          ?  poisonous
## 5380       p    f          v       p           e          b  poisonous
## 5381       p    f          v       u           t          b  poisonous
## 5382       e    n          c       w           e          ?     edible
## 5383       p    f          v       u           t          b  poisonous
## 5384       e    n          v       l           e          b     edible
## 5385       e    n          c       w           e          ?     edible
## 5386       e    n          v       l           e          b     edible
## 5387       e    n          c       w           e          ?     edible
## 5388       p    f          v       u           t          b  poisonous
## 5389       e    n          c       w           e          ?     edible
## 5390       e    n          c       w           e          ?     edible
## 5391       p    f          v       g           t          b  poisonous
## 5392       e    n          c       w           e          ?     edible
## 5393       p    f          v       g           t          b  poisonous
## 5394       p    n          v       d           e          ?  poisonous
## 5395       p    f          s       u           t          b  poisonous
## 5396       p    f          v       g           e          b  poisonous
## 5397       p    f          y       p           e          b  poisonous
## 5398       p    n          v       d           e          ?  poisonous
## 5399       p    f          y       p           e          b  poisonous
## 5400       p    f          v       p           e          b  poisonous
## 5401       e    n          v       l           e          b     edible
## 5402       p    y          v       d           t          ?  poisonous
## 5403       p    f          s       g           t          b  poisonous
## 5404       p    f          v       p           t          ?  poisonous
## 5405       p    n          v       g           e          b  poisonous
## 5406       p    f          y       d           e          b  poisonous
## 5407       p    f          s       g           t          b  poisonous
## 5408       p    f          v       p           e          b  poisonous
## 5409       p    f          s       g           t          b  poisonous
## 5410       p    f          s       u           t          b  poisonous
## 5411       p    y          v       p           t          ?  poisonous
## 5412       p    f          v       p           e          b  poisonous
## 5413       e    n          c       w           e          ?     edible
## 5414       p    f          v       g           e          b  poisonous
## 5415       e    n          c       w           e          ?     edible
## 5416       e    n          c       w           e          ?     edible
## 5417       e    n          c       w           e          ?     edible
## 5418       p    f          v       u           t          b  poisonous
## 5419       p    f          v       d           e          b  poisonous
## 5420       e    n          c       w           e          ?     edible
## 5421       e    n          c       w           e          ?     edible
## 5422       p    f          v       d           e          b  poisonous
## 5423       p    n          v       m           e          b  poisonous
## 5424       p    f          s       u           t          b  poisonous
## 5425       p    f          s       g           t          b  poisonous
## 5426       p    f          s       g           t          b  poisonous
## 5427       p    f          y       p           e          b  poisonous
## 5428       p    f          s       g           t          b  poisonous
## 5429       p    f          s       u           t          b  poisonous
## 5430       e    n          y       d           e          ?     edible
## 5431       p    f          v       g           e          b  poisonous
## 5432       p    f          v       d           t          ?  poisonous
## 5433       p    f          s       g           t          b  poisonous
## 5434       e    n          v       l           e          b     edible
## 5435       p    f          v       u           t          b  poisonous
## 5436       e    n          y       d           e          ?     edible
## 5437       p    f          v       p           e          b  poisonous
## 5438       p    f          v       g           e          b  poisonous
## 5439       p    n          v       m           e          b  poisonous
## 5440       p    y          v       d           t          ?  poisonous
## 5441       p    s          v       l           t          ?  poisonous
## 5442       p    f          v       p           e          b  poisonous
## 5443       e    n          c       w           e          ?     edible
## 5444       p    f          s       g           t          b  poisonous
## 5445       p    f          v       g           t          b  poisonous
## 5446       p    y          v       p           t          ?  poisonous
## 5447       p    f          s       u           t          b  poisonous
## 5448       p    y          v       p           t          ?  poisonous
## 5449       p    f          s       g           t          b  poisonous
## 5450       p    f          v       u           t          b  poisonous
## 5451       p    f          s       g           t          b  poisonous
## 5452       p    f          v       p           e          b  poisonous
## 5453       p    f          v       p           e          b  poisonous
## 5454       p    f          y       g           e          b  poisonous
## 5455       p    f          y       g           e          b  poisonous
## 5456       p    f          s       u           t          b  poisonous
## 5457       p    f          s       u           t          b  poisonous
## 5458       p    f          s       u           t          b  poisonous
## 5459       p    f          y       g           e          b  poisonous
## 5460       p    f          s       g           t          b  poisonous
## 5461       p    s          v       d           t          ?  poisonous
## 5462       p    f          s       g           t          b  poisonous
## 5463       e    n          c       w           e          ?     edible
## 5464       p    n          v       m           e          b  poisonous
## 5465       p    y          v       p           t          ?  poisonous
## 5466       e    n          c       w           e          ?     edible
## 5467       p    f          v       u           t          b  poisonous
## 5468       p    f          v       u           t          b  poisonous
## 5469       p    y          v       d           t          ?  poisonous
## 5470       p    f          s       g           t          b  poisonous
## 5471       p    y          v       l           t          ?  poisonous
## 5472       p    n          v       g           e          b  poisonous
## 5473       p    y          v       d           t          ?  poisonous
## 5474       p    f          v       p           e          b  poisonous
## 5475       p    f          v       d           e          b  poisonous
## 5476       p    f          v       g           e          b  poisonous
## 5477       p    n          v       m           e          b  poisonous
## 5478       p    f          s       g           t          b  poisonous
## 5479       e    n          c       w           e          ?     edible
## 5480       p    f          v       g           t          b  poisonous
## 5481       e    n          c       w           e          ?     edible
## 5482       p    f          s       u           t          b  poisonous
## 5483       p    y          v       p           t          ?  poisonous
## 5484       p    f          v       d           e          b  poisonous
## 5485       p    f          v       p           e          b  poisonous
## 5486       p    f          y       p           e          b  poisonous
## 5487       e    n          c       w           e          ?     edible
## 5488       p    f          v       p           e          b  poisonous
## 5489       p    s          v       d           t          ?  poisonous
## 5490       p    f          v       g           t          b  poisonous
## 5491       p    f          y       d           e          b  poisonous
## 5492       e    n          c       w           e          ?     edible
## 5493       p    n          v       m           e          b  poisonous
## 5494       p    n          v       m           e          b  poisonous
## 5495       p    f          y       p           e          b  poisonous
## 5496       p    f          v       g           e          b  poisonous
## 5497       e    n          v       d           e          ?     edible
## 5498       p    f          s       g           t          b  poisonous
## 5499       p    f          s       g           t          b  poisonous
## 5500       p    f          s       u           t          b  poisonous
## 5501       p    y          v       p           t          ?  poisonous
## 5502       e    n          c       w           e          ?     edible
## 5503       e    n          c       w           e          ?     edible
## 5504       e    n          c       w           e          ?     edible
## 5505       p    f          v       g           t          b  poisonous
## 5506       p    f          y       g           e          b  poisonous
## 5507       p    y          v       l           t          ?  poisonous
## 5508       p    n          c       l           e          b  poisonous
## 5509       p    f          v       g           t          b  poisonous
## 5510       p    f          s       g           t          b  poisonous
## 5511       p    y          v       l           t          ?  poisonous
## 5512       p    f          s       g           t          b  poisonous
## 5513       p    s          v       d           t          ?  poisonous
## 5514       e    n          c       w           e          ?     edible
## 5515       e    n          y       d           e          ?     edible
## 5516       p    f          y       g           e          b  poisonous
## 5517       p    y          v       d           t          ?  poisonous
## 5518       p    f          y       d           e          b  poisonous
## 5519       p    s          v       l           t          ?  poisonous
## 5520       p    f          v       u           t          b  poisonous
## 5521       p    s          v       d           t          ?  poisonous
## 5522       e    n          v       l           e          b     edible
## 5523       p    f          v       u           t          b  poisonous
## 5524       p    f          y       p           e          b  poisonous
## 5525       e    n          c       w           e          ?     edible
## 5526       p    n          v       m           e          b  poisonous
## 5527       p    f          v       p           e          b  poisonous
## 5528       e    n          v       d           e          ?     edible
## 5529       p    f          v       l           t          ?  poisonous
## 5530       p    y          v       p           t          ?  poisonous
## 5531       p    f          v       g           t          b  poisonous
## 5532       p    f          v       d           e          b  poisonous
## 5533       p    f          v       d           t          ?  poisonous
## 5534       e    n          c       w           e          ?     edible
## 5535       p    f          v       l           t          ?  poisonous
## 5536       e    n          c       w           e          ?     edible
## 5537       e    n          c       w           e          ?     edible
## 5538       e    n          c       w           e          ?     edible
## 5539       p    f          v       g           t          b  poisonous
## 5540       e    n          c       w           e          ?     edible
## 5541       p    f          y       g           e          b  poisonous
## 5542       p    f          y       d           e          b  poisonous
## 5543       p    f          y       g           e          b  poisonous
## 5544       e    n          c       w           e          ?     edible
## 5545       p    f          v       u           t          b  poisonous
## 5546       e    n          v       l           e          b     edible
## 5547       e    n          v       l           e          b     edible
## 5548       p    n          v       m           e          b  poisonous
## 5549       p    y          v       p           t          ?  poisonous
## 5550       p    f          s       u           t          b  poisonous
## 5551       e    n          v       d           e          ?     edible
## 5552       p    f          s       g           t          b  poisonous
## 5553       e    n          y       d           e          ?     edible
## 5554       p    y          v       p           t          ?  poisonous
## 5555       p    f          v       u           t          b  poisonous
## 5556       e    n          c       w           e          ?     edible
## 5557       e    n          c       w           e          ?     edible
## 5558       p    s          v       p           t          ?  poisonous
## 5559       p    f          v       p           t          ?  poisonous
## 5560       p    f          v       g           t          b  poisonous
## 5561       p    f          v       p           e          b  poisonous
## 5562       e    n          c       w           e          ?     edible
## 5563       e    n          c       w           e          ?     edible
## 5564       p    f          v       u           t          b  poisonous
## 5565       p    f          v       g           e          b  poisonous
## 5566       p    n          v       m           e          b  poisonous
## 5567       p    f          v       p           e          b  poisonous
## 5568       p    f          v       g           t          b  poisonous
## 5569       e    n          c       w           e          ?     edible
## 5570       e    n          c       w           e          ?     edible
## 5571       p    n          v       m           e          b  poisonous
## 5572       p    f          v       d           e          b  poisonous
## 5573       p    y          v       d           t          ?  poisonous
## 5574       p    f          s       g           t          b  poisonous
## 5575       p    f          v       g           t          b  poisonous
## 5576       p    s          v       p           t          ?  poisonous
## 5577       p    n          v       g           e          b  poisonous
## 5578       e    n          v       l           e          b     edible
## 5579       p    f          v       d           t          ?  poisonous
## 5580       p    f          s       u           t          b  poisonous
## 5581       p    f          v       d           t          ?  poisonous
## 5582       e    n          v       l           e          b     edible
## 5583       p    y          v       p           t          ?  poisonous
## 5584       p    f          s       u           t          b  poisonous
## 5585       p    y          v       d           t          ?  poisonous
## 5586       e    n          y       d           e          ?     edible
## 5587       p    n          v       m           e          b  poisonous
## 5588       e    n          c       w           e          ?     edible
## 5589       p    y          v       l           t          ?  poisonous
## 5590       p    f          v       p           t          ?  poisonous
## 5591       p    f          v       g           t          b  poisonous
## 5592       p    f          v       p           e          b  poisonous
## 5593       p    n          v       m           e          b  poisonous
## 5594       p    s          v       p           t          ?  poisonous
## 5595       p    s          v       d           t          ?  poisonous
## 5596       e    n          c       w           e          ?     edible
## 5597       p    f          v       u           t          b  poisonous
## 5598       e    n          v       l           e          b     edible
## 5599       e    n          y       d           e          ?     edible
## 5600       p    y          v       l           t          ?  poisonous
## 5601       e    n          v       l           e          b     edible
## 5602       p    f          v       d           t          ?  poisonous
## 5603       p    s          v       d           t          ?  poisonous
## 5604       e    n          c       w           e          ?     edible
## 5605       p    n          v       m           e          b  poisonous
## 5606       p    f          v       l           t          ?  poisonous
## 5607       p    f          v       g           e          b  poisonous
## 5608       e    n          v       l           e          b     edible
## 5609       p    f          v       g           t          b  poisonous
## 5610       p    n          v       g           e          b  poisonous
## 5611       p    f          y       g           e          b  poisonous
## 5612       e    n          c       w           e          ?     edible
## 5613       p    f          y       d           e          b  poisonous
## 5614       p    s          v       l           t          ?  poisonous
## 5615       p    y          v       p           t          ?  poisonous
## 5616       p    f          v       g           e          b  poisonous
## 5617       p    n          v       g           e          b  poisonous
## 5618       p    f          v       u           t          b  poisonous
## 5619       e    n          c       w           e          ?     edible
## 5620       e    n          v       l           e          b     edible
## 5621       p    f          v       u           t          b  poisonous
## 5622       e    n          c       w           e          ?     edible
## 5623       e    n          c       w           e          ?     edible
## 5624       e    n          c       w           e          ?     edible
## 5625       p    f          y       g           e          b  poisonous
## 5626       p    f          v       g           t          b  poisonous
## 5627       p    f          v       p           e          b  poisonous
## 5628       e    n          c       w           e          ?     edible
## 5629       p    f          v       g           t          b  poisonous
## 5630       e    n          v       l           e          b     edible
## 5631       p    f          v       d           e          b  poisonous
## 5632       p    f          v       d           e          b  poisonous
## 5633       p    n          v       g           e          b  poisonous
## 5634       p    y          v       p           t          ?  poisonous
## 5635       p    f          y       p           e          b  poisonous
## 5636       p    f          v       p           e          b  poisonous
## 5637       p    n          v       g           e          b  poisonous
## 5638       e    n          c       w           e          ?     edible
## 5639       p    f          v       p           e          b  poisonous
## 5640       e    n          c       w           e          ?     edible
## 5641       p    n          v       d           e          ?  poisonous
## 5642       p    f          y       p           e          b  poisonous
## 5643       p    f          v       g           e          b  poisonous
## 5644       p    y          v       p           t          ?  poisonous
## 5645       e    n          c       w           e          ?     edible
## 5646       p    f          v       u           t          b  poisonous
## 5647       p    f          s       g           t          b  poisonous
## 5648       p    f          y       d           e          b  poisonous
## 5649       e    n          c       w           e          ?     edible
## 5650       p    f          y       g           e          b  poisonous
## 5651       p    f          y       p           e          b  poisonous
## 5652       e    n          c       w           e          ?     edible
## 5653       e    n          c       w           e          ?     edible
## 5654       p    f          v       g           e          b  poisonous
## 5655       p    f          v       g           t          b  poisonous
## 5656       p    f          v       d           e          b  poisonous
## 5657       p    f          s       u           t          b  poisonous
## 5658       p    f          v       g           t          b  poisonous
## 5659       p    n          v       d           e          ?  poisonous
## 5660       p    f          s       g           t          b  poisonous
## 5661       e    n          c       w           e          ?     edible
## 5662       p    f          y       g           e          b  poisonous
## 5663       p    f          s       u           t          b  poisonous
## 5664       e    n          v       l           e          b     edible
## 5665       p    f          y       g           e          b  poisonous
## 5666       e    n          v       l           e          b     edible
## 5667       p    f          y       p           e          b  poisonous
## 5668       p    y          v       p           t          ?  poisonous
## 5669       e    n          c       w           e          ?     edible
## 5670       p    f          v       g           t          b  poisonous
## 5671       p    f          y       d           e          b  poisonous
## 5672       p    f          y       g           e          b  poisonous
## 5673       p    y          v       d           t          ?  poisonous
## 5674       e    n          y       d           e          ?     edible
## 5675       p    f          y       p           e          b  poisonous
## 5676       p    f          v       g           t          b  poisonous
## 5677       p    f          v       g           t          b  poisonous
## 5678       p    f          s       g           t          b  poisonous
## 5679       e    n          c       w           e          ?     edible
## 5680       p    n          v       d           e          ?  poisonous
## 5681       e    n          v       d           e          ?     edible
## 5682       p    y          v       l           t          ?  poisonous
## 5683       e    n          c       w           e          ?     edible
## 5684       p    f          v       u           t          b  poisonous
## 5685       p    f          v       d           e          b  poisonous
## 5686       e    n          c       w           e          ?     edible
## 5687       e    n          v       l           e          b     edible
## 5688       p    f          v       u           t          b  poisonous
## 5689       p    f          v       p           e          b  poisonous
## 5690       p    y          v       l           t          ?  poisonous
## 5691       e    n          c       w           e          ?     edible
## 5692       e    n          c       w           e          ?     edible
## 5693       p    f          v       g           e          b  poisonous
## 5694       p    y          v       d           t          ?  poisonous
## 5695       e    n          c       w           e          ?     edible
## 5696       p    f          y       g           e          b  poisonous
## 5697       p    s          v       d           t          ?  poisonous
## 5698       e    n          c       w           e          ?     edible
## 5699       p    f          v       d           e          b  poisonous
## 5700       p    f          v       p           e          b  poisonous
## 5701       p    f          y       p           e          b  poisonous
## 5702       e    n          v       l           e          b     edible
## 5703       p    n          v       g           e          b  poisonous
## 5704       e    n          c       w           e          ?     edible
## 5705       p    f          v       u           t          b  poisonous
## 5706       p    f          v       g           t          b  poisonous
## 5707       p    f          v       g           e          b  poisonous
## 5708       p    f          s       u           t          b  poisonous
## 5709       p    y          v       p           t          ?  poisonous
## 5710       p    f          v       u           t          b  poisonous
## 5711       e    n          c       w           e          ?     edible
## 5712       p    f          v       g           t          b  poisonous
## 5713       p    y          v       p           t          ?  poisonous
## 5714       e    n          v       d           e          ?     edible
## 5715       e    n          c       w           e          ?     edible
## 5716       p    f          v       u           t          b  poisonous
## 5717       p    n          c       l           e          b  poisonous
## 5718       p    f          s       g           t          b  poisonous
## 5719       p    s          v       p           t          ?  poisonous
## 5720       e    n          c       w           e          ?     edible
## 5721       p    y          v       d           t          ?  poisonous
## 5722       p    s          v       p           t          ?  poisonous
## 5723       p    f          s       g           t          b  poisonous
## 5724       e    n          c       w           e          ?     edible
## 5725       p    f          s       g           t          b  poisonous
## 5726       p    n          v       m           e          b  poisonous
## 5727       e    n          v       l           e          b     edible
## 5728       p    f          v       u           t          b  poisonous
## 5729       p    f          v       g           t          b  poisonous
## 5730       p    f          v       g           e          b  poisonous
## 5731       e    n          c       w           e          ?     edible
## 5732       e    n          c       w           e          ?     edible
## 5733       e    n          v       d           e          ?     edible
## 5734       e    n          c       w           e          ?     edible
## 5735       p    f          v       u           t          b  poisonous
## 5736       p    y          v       d           t          ?  poisonous
## 5737       e    n          c       w           e          ?     edible
## 5738       p    n          v       g           e          b  poisonous
## 5739       p    f          s       u           t          b  poisonous
## 5740       p    f          v       g           t          b  poisonous
## 5741       e    n          c       w           e          ?     edible
## 5742       p    f          s       g           t          b  poisonous
## 5743       e    n          c       w           e          ?     edible
## 5744       p    n          v       m           e          b  poisonous
## 5745       p    s          v       d           t          ?  poisonous
## 5746       p    f          v       p           e          b  poisonous
## 5747       p    f          s       u           t          b  poisonous
## 5748       e    n          v       l           e          b     edible
## 5749       p    f          v       u           t          b  poisonous
## 5750       p    f          v       g           t          b  poisonous
## 5751       p    n          v       m           e          b  poisonous
## 5752       p    n          v       g           e          b  poisonous
## 5753       p    f          s       g           t          b  poisonous
## 5754       e    n          c       w           e          ?     edible
## 5755       p    s          v       l           t          ?  poisonous
## 5756       p    f          v       g           e          b  poisonous
## 5757       e    n          c       w           e          ?     edible
## 5758       p    f          v       l           t          ?  poisonous
## 5759       p    f          s       u           t          b  poisonous
## 5760       p    n          v       g           e          b  poisonous
## 5761       p    y          v       l           t          ?  poisonous
## 5762       p    f          v       u           t          b  poisonous
## 5763       p    f          v       u           t          b  poisonous
## 5764       e    n          y       d           e          ?     edible
## 5765       p    f          s       g           t          b  poisonous
## 5766       p    f          s       u           t          b  poisonous
## 5767       e    n          v       d           e          ?     edible
## 5768       p    s          v       d           t          ?  poisonous
## 5769       e    n          c       w           e          ?     edible
## 5770       p    f          v       d           t          ?  poisonous
## 5771       p    y          v       l           t          ?  poisonous
## 5772       p    f          s       u           t          b  poisonous
## 5773       e    n          y       d           e          ?     edible
## 5774       p    n          v       g           e          b  poisonous
## 5775       p    f          v       u           t          b  poisonous
## 5776       e    n          v       l           e          b     edible
## 5777       e    n          v       d           e          ?     edible
## 5778       p    f          v       u           t          b  poisonous
## 5779       e    n          v       d           e          ?     edible
## 5780       p    y          v       l           t          ?  poisonous
## 5781       e    n          c       w           e          ?     edible
## 5782       p    n          v       m           e          b  poisonous
## 5783       p    n          v       d           e          ?  poisonous
## 5784       p    f          y       p           e          b  poisonous
## 5785       p    f          v       g           t          b  poisonous
## 5786       p    f          v       g           e          b  poisonous
## 5787       e    n          c       w           e          ?     edible
## 5788       p    n          v       g           e          b  poisonous
## 5789       p    n          v       m           e          b  poisonous
## 5790       p    s          v       l           t          ?  poisonous
## 5791       p    f          v       u           t          b  poisonous
## 5792       p    f          y       p           e          b  poisonous
## 5793       p    n          v       g           e          b  poisonous
## 5794       e    n          v       l           e          b     edible
## 5795       p    f          y       g           e          b  poisonous
## 5796       p    f          v       p           e          b  poisonous
## 5797       p    f          v       g           e          b  poisonous
## 5798       p    f          s       u           t          b  poisonous
## 5799       p    y          v       l           t          ?  poisonous
## 5800       p    n          v       d           e          ?  poisonous
## 5801       p    f          v       p           t          ?  poisonous
## 5802       p    f          s       g           t          b  poisonous
## 5803       p    f          y       g           e          b  poisonous
## 5804       e    n          v       l           e          b     edible
## 5805       p    f          s       g           t          b  poisonous
## 5806       p    f          v       u           t          b  poisonous
## 5807       e    n          c       w           e          ?     edible
## 5808       p    f          s       u           t          b  poisonous
## 5809       p    f          v       d           e          b  poisonous
## 5810       p    f          v       d           t          ?  poisonous
## 5811       p    f          v       g           t          b  poisonous
## 5812       p    f          s       g           t          b  poisonous
## 5813       p    f          v       g           e          b  poisonous
## 5814       e    n          v       l           e          b     edible
## 5815       p    s          v       l           t          ?  poisonous
## 5816       e    n          c       w           e          ?     edible
## 5817       p    y          v       l           t          ?  poisonous
## 5818       p    f          s       g           t          b  poisonous
## 5819       p    y          v       l           t          ?  poisonous
## 5820       e    n          c       w           e          ?     edible
## 5821       p    f          v       p           e          b  poisonous
## 5822       p    f          v       u           t          b  poisonous
## 5823       e    n          c       w           e          ?     edible
## 5824       p    f          v       d           e          b  poisonous
## 5825       p    f          v       d           e          b  poisonous
## 5826       e    n          c       w           e          ?     edible
## 5827       p    f          v       g           t          b  poisonous
## 5828       e    n          c       w           e          ?     edible
## 5829       p    f          y       d           e          b  poisonous
## 5830       p    f          s       g           t          b  poisonous
## 5831       p    s          v       p           t          ?  poisonous
## 5832       p    f          y       g           e          b  poisonous
## 5833       p    n          v       g           e          b  poisonous
## 5834       p    s          v       d           t          ?  poisonous
## 5835       e    n          v       d           e          ?     edible
## 5836       e    n          y       d           e          ?     edible
## 5837       p    f          v       p           t          ?  poisonous
## 5838       p    f          s       u           t          b  poisonous
## 5839       e    n          v       d           e          ?     edible
## 5840       p    n          v       g           e          b  poisonous
## 5841       p    f          v       d           e          b  poisonous
## 5842       p    f          v       g           t          b  poisonous
## 5843       p    f          y       p           e          b  poisonous
## 5844       p    f          v       g           e          b  poisonous
## 5845       p    f          y       d           e          b  poisonous
## 5846       p    f          s       g           t          b  poisonous
## 5847       e    n          v       d           e          ?     edible
## 5848       p    f          s       g           t          b  poisonous
## 5849       e    n          c       w           e          ?     edible
## 5850       p    s          v       d           t          ?  poisonous
## 5851       p    f          s       g           t          b  poisonous
## 5852       p    f          y       g           e          b  poisonous
## 5853       p    n          v       m           e          b  poisonous
## 5854       p    f          v       d           t          ?  poisonous
## 5855       p    n          v       m           e          b  poisonous
## 5856       p    f          y       g           e          b  poisonous
## 5857       p    f          y       d           e          b  poisonous
## 5858       e    n          c       w           e          ?     edible
## 5859       e    n          c       w           e          ?     edible
## 5860       p    f          v       l           t          ?  poisonous
## 5861       e    n          c       w           e          ?     edible
## 5862       p    n          v       m           e          b  poisonous
## 5863       e    n          c       w           e          ?     edible
## 5864       p    y          v       p           t          ?  poisonous
## 5865       e    n          c       w           e          ?     edible
## 5866       p    f          s       u           t          b  poisonous
## 5867       p    n          v       g           e          b  poisonous
## 5868       p    s          v       l           t          ?  poisonous
## 5869       p    y          v       l           t          ?  poisonous
## 5870       p    f          y       g           e          b  poisonous
## 5871       p    f          v       l           t          ?  poisonous
## 5872       p    s          v       d           t          ?  poisonous
## 5873       p    f          v       u           t          b  poisonous
## 5874       e    n          c       w           e          ?     edible
## 5875       e    n          y       d           e          ?     edible
## 5876       p    f          y       p           e          b  poisonous
## 5877       p    f          v       g           t          b  poisonous
## 5878       p    s          v       l           t          ?  poisonous
## 5879       p    f          v       u           t          b  poisonous
## 5880       p    f          v       g           t          b  poisonous
## 5881       p    f          y       g           e          b  poisonous
## 5882       p    n          v       g           e          b  poisonous
## 5883       e    n          c       w           e          ?     edible
## 5884       p    y          v       d           t          ?  poisonous
## 5885       p    f          v       p           e          b  poisonous
## 5886       e    n          c       w           e          ?     edible
## 5887       p    f          v       g           t          b  poisonous
## 5888       p    f          v       u           t          b  poisonous
## 5889       p    f          s       u           t          b  poisonous
## 5890       p    f          y       d           e          b  poisonous
## 5891       p    f          v       p           t          ?  poisonous
## 5892       p    f          v       u           t          b  poisonous
## 5893       e    n          c       w           e          ?     edible
## 5894       e    n          c       w           e          ?     edible
## 5895       e    n          v       d           e          ?     edible
## 5896       p    f          s       u           t          b  poisonous
## 5897       p    f          s       u           t          b  poisonous
## 5898       e    n          c       w           e          ?     edible
## 5899       p    f          y       g           e          b  poisonous
## 5900       p    s          v       l           t          ?  poisonous
## 5901       p    n          v       g           e          b  poisonous
## 5902       p    f          y       d           e          b  poisonous
## 5903       e    n          v       l           e          b     edible
## 5904       p    f          y       d           e          b  poisonous
## 5905       p    f          s       u           t          b  poisonous
## 5906       e    n          c       w           e          ?     edible
## 5907       e    n          c       w           e          ?     edible
## 5908       p    f          v       g           t          b  poisonous
## 5909       p    f          y       p           e          b  poisonous
## 5910       p    f          s       g           t          b  poisonous
## 5911       p    f          v       p           e          b  poisonous
## 5912       p    f          s       u           t          b  poisonous
## 5913       e    n          c       w           e          ?     edible
## 5914       e    n          c       w           e          ?     edible
## 5915       p    f          y       g           e          b  poisonous
## 5916       e    n          c       w           e          ?     edible
## 5917       e    n          c       w           e          ?     edible
## 5918       p    f          v       u           t          b  poisonous
## 5919       p    f          v       u           t          b  poisonous
## 5920       p    f          v       p           e          b  poisonous
## 5921       p    f          v       u           t          b  poisonous
## 5922       p    f          v       g           t          b  poisonous
## 5923       p    f          v       g           e          b  poisonous
## 5924       p    f          y       d           e          b  poisonous
## 5925       p    f          y       p           e          b  poisonous
## 5926       p    f          v       p           e          b  poisonous
## 5927       p    n          v       m           e          b  poisonous
## 5928       p    f          v       l           t          ?  poisonous
## 5929       p    n          v       g           e          b  poisonous
## 5930       e    n          c       w           e          ?     edible
## 5931       p    y          v       p           t          ?  poisonous
## 5932       p    y          v       p           t          ?  poisonous
## 5933       p    f          v       p           t          ?  poisonous
## 5934       p    f          s       g           t          b  poisonous
## 5935       p    n          v       d           e          ?  poisonous
## 5936       p    f          v       u           t          b  poisonous
## 5937       e    n          c       w           e          ?     edible
## 5938       e    n          c       w           e          ?     edible
## 5939       e    n          c       w           e          ?     edible
## 5940       p    n          v       m           e          b  poisonous
## 5941       p    f          v       g           t          b  poisonous
## 5942       p    f          s       g           t          b  poisonous
## 5943       p    f          v       g           e          b  poisonous
## 5944       p    s          v       p           t          ?  poisonous
## 5945       p    n          v       g           e          b  poisonous
## 5946       p    f          v       u           t          b  poisonous
## 5947       p    n          v       g           e          b  poisonous
## 5948       e    n          y       d           e          ?     edible
## 5949       e    n          v       l           e          b     edible
## 5950       p    f          v       p           e          b  poisonous
## 5951       p    f          v       g           t          b  poisonous
## 5952       p    f          v       g           e          b  poisonous
## 5953       e    n          c       w           e          ?     edible
## 5954       p    f          y       p           e          b  poisonous
## 5955       p    n          v       d           e          ?  poisonous
## 5956       p    s          v       p           t          ?  poisonous
## 5957       p    f          y       d           e          b  poisonous
## 5958       p    f          y       g           e          b  poisonous
## 5959       p    f          s       g           t          b  poisonous
## 5960       p    f          v       d           t          ?  poisonous
## 5961       e    n          c       w           e          ?     edible
## 5962       e    n          v       l           e          b     edible
## 5963       p    n          v       g           e          b  poisonous
## 5964       p    n          v       d           e          ?  poisonous
## 5965       p    f          v       g           e          b  poisonous
## 5966       p    s          v       p           t          ?  poisonous
## 5967       p    f          y       d           e          b  poisonous
## 5968       p    f          v       d           e          b  poisonous
## 5969       p    f          s       g           t          b  poisonous
## 5970       e    n          y       d           e          ?     edible
## 5971       p    y          v       p           t          ?  poisonous
## 5972       p    n          v       m           e          b  poisonous
## 5973       p    y          v       l           t          ?  poisonous
## 5974       p    f          v       g           t          b  poisonous
## 5975       p    f          v       u           t          b  poisonous
## 5976       e    n          c       w           e          ?     edible
## 5977       p    f          s       g           t          b  poisonous
## 5978       e    n          v       l           e          b     edible
## 5979       p    f          v       d           e          b  poisonous
## 5980       e    n          y       d           e          ?     edible
## 5981       p    f          s       u           t          b  poisonous
## 5982       p    n          v       g           e          b  poisonous
## 5983       p    f          y       d           e          b  poisonous
## 5984       p    f          s       g           t          b  poisonous
## 5985       p    f          v       l           t          ?  poisonous
## 5986       p    f          v       g           e          b  poisonous
## 5987       p    f          s       g           t          b  poisonous
## 5988       p    f          s       u           t          b  poisonous
## 5989       p    s          v       d           t          ?  poisonous
## 5990       p    f          y       d           e          b  poisonous
## 5991       p    f          v       d           t          ?  poisonous
## 5992       p    n          v       g           e          b  poisonous
## 5993       p    f          v       g           e          b  poisonous
## 5994       p    y          v       l           t          ?  poisonous
## 5995       p    f          v       d           t          ?  poisonous
## 5996       e    n          c       w           e          ?     edible
## 5997       e    n          y       d           e          ?     edible
## 5998       p    f          v       u           t          b  poisonous
## 5999       p    f          y       g           e          b  poisonous
## 6000       p    f          v       p           t          ?  poisonous
## 6001       p    s          v       d           t          ?  poisonous
## 6002       p    f          v       d           t          ?  poisonous
## 6003       p    f          v       p           t          ?  poisonous
## 6004       p    f          v       p           t          ?  poisonous
## 6005       p    s          v       d           t          ?  poisonous
## 6006       p    y          v       l           t          ?  poisonous
## 6007       p    y          v       p           t          ?  poisonous
## 6008       p    s          v       l           t          ?  poisonous
## 6009       p    f          v       p           t          ?  poisonous
## 6010       p    f          v       d           t          ?  poisonous
## 6011       p    s          v       l           t          ?  poisonous
## 6012       p    s          v       l           t          ?  poisonous
## 6013       p    f          v       d           t          ?  poisonous
## 6014       p    y          v       l           t          ?  poisonous
## 6015       p    f          v       p           t          ?  poisonous
## 6016       p    y          v       p           t          ?  poisonous
## 6017       p    f          v       p           t          ?  poisonous
## 6018       p    s          v       d           t          ?  poisonous
## 6019       p    y          v       p           t          ?  poisonous
## 6020       p    f          v       l           t          ?  poisonous
## 6021       p    y          v       d           t          ?  poisonous
## 6022       p    s          v       l           t          ?  poisonous
## 6023       p    y          v       p           t          ?  poisonous
## 6024       p    y          v       d           t          ?  poisonous
## 6025       p    s          v       p           t          ?  poisonous
## 6026       p    y          v       d           t          ?  poisonous
## 6027       p    y          v       l           t          ?  poisonous
## 6028       p    s          v       d           t          ?  poisonous
## 6029       p    y          v       l           t          ?  poisonous
## 6030       p    s          v       p           t          ?  poisonous
## 6031       p    s          v       p           t          ?  poisonous
## 6032       p    s          v       l           t          ?  poisonous
## 6033       p    f          v       p           t          ?  poisonous
## 6034       p    s          v       d           t          ?  poisonous
## 6035       p    s          v       p           t          ?  poisonous
## 6036       p    f          v       l           t          ?  poisonous
## 6037       p    y          v       l           t          ?  poisonous
## 6038       e    n          c       l           e          ?     edible
## 6039       p    y          v       d           t          ?  poisonous
## 6040       e    n          v       l           e          ?     edible
## 6041       p    y          v       d           t          ?  poisonous
## 6042       p    s          v       l           t          ?  poisonous
## 6043       p    y          v       p           t          ?  poisonous
## 6044       p    y          v       l           t          ?  poisonous
## 6045       p    y          v       l           t          ?  poisonous
## 6046       p    f          v       d           t          ?  poisonous
## 6047       p    s          v       d           t          ?  poisonous
## 6048       p    y          v       d           t          ?  poisonous
## 6049       p    f          v       d           t          ?  poisonous
## 6050       p    s          v       p           t          ?  poisonous
## 6051       p    f          v       l           t          ?  poisonous
## 6052       p    s          v       d           t          ?  poisonous
## 6053       p    y          v       l           t          ?  poisonous
## 6054       p    f          v       l           t          ?  poisonous
## 6055       p    y          v       d           t          ?  poisonous
## 6056       p    f          v       d           t          ?  poisonous
## 6057       p    y          v       p           t          ?  poisonous
## 6058       p    f          v       d           t          ?  poisonous
## 6059       p    s          v       l           t          ?  poisonous
## 6060       p    f          v       l           t          ?  poisonous
## 6061       p    f          v       d           t          ?  poisonous
## 6062       p    s          v       l           t          ?  poisonous
## 6063       p    f          v       l           t          ?  poisonous
## 6064       p    s          v       p           t          ?  poisonous
## 6065       p    s          v       l           t          ?  poisonous
## 6066       p    f          v       p           t          ?  poisonous
## 6067       p    s          v       p           t          ?  poisonous
## 6068       e    n          n       g           e          ?     edible
## 6069       p    y          v       p           t          ?  poisonous
## 6070       p    f          v       d           t          ?  poisonous
## 6071       p    f          v       d           t          ?  poisonous
## 6072       p    s          v       l           t          ?  poisonous
## 6073       p    s          v       l           t          ?  poisonous
## 6074       p    s          v       l           t          ?  poisonous
## 6075       p    f          v       d           t          ?  poisonous
## 6076       p    y          v       l           t          ?  poisonous
## 6077       p    f          v       p           t          ?  poisonous
## 6078       p    s          v       p           t          ?  poisonous
## 6079       p    s          v       l           t          ?  poisonous
## 6080       p    y          v       l           t          ?  poisonous
## 6081       p    y          v       d           t          ?  poisonous
## 6082       p    s          v       l           t          ?  poisonous
## 6083       p    s          v       p           t          ?  poisonous
## 6084       p    y          v       l           t          ?  poisonous
## 6085       p    s          v       d           t          ?  poisonous
## 6086       p    y          v       d           t          ?  poisonous
## 6087       p    s          v       l           t          ?  poisonous
## 6088       p    y          v       l           t          ?  poisonous
## 6089       p    s          v       d           t          ?  poisonous
## 6090       p    f          v       l           t          ?  poisonous
## 6091       p    y          v       l           t          ?  poisonous
## 6092       p    f          v       d           t          ?  poisonous
## 6093       p    f          v       l           t          ?  poisonous
## 6094       p    y          v       l           t          ?  poisonous
## 6095       p    f          v       l           t          ?  poisonous
## 6096       p    f          v       p           t          ?  poisonous
## 6097       p    y          v       p           t          ?  poisonous
## 6098       p    y          v       d           t          ?  poisonous
## 6099       p    f          v       l           t          ?  poisonous
## 6100       p    f          v       p           t          ?  poisonous
## 6101       p    s          v       p           t          ?  poisonous
## 6102       p    f          v       d           t          ?  poisonous
## 6103       p    s          v       l           t          ?  poisonous
## 6104       p    y          v       d           t          ?  poisonous
## 6105       p    y          v       l           t          ?  poisonous
## 6106       p    s          v       l           t          ?  poisonous
## 6107       p    y          v       l           t          ?  poisonous
## 6108       p    s          v       l           t          ?  poisonous
## 6109       p    f          v       p           t          ?  poisonous
## 6110       p    y          v       p           t          ?  poisonous
## 6111       p    s          v       l           t          ?  poisonous
## 6112       p    f          v       p           t          ?  poisonous
## 6113       p    f          v       l           t          ?  poisonous
## 6114       p    f          v       d           t          ?  poisonous
## 6115       p    s          v       l           t          ?  poisonous
## 6116       p    s          v       l           t          ?  poisonous
## 6117       p    f          v       l           t          ?  poisonous
## 6118       p    f          v       l           t          ?  poisonous
## 6119       p    s          v       p           t          ?  poisonous
## 6120       e    n          v       p           e          b     edible
## 6121       p    y          v       p           t          ?  poisonous
## 6122       p    y          v       d           t          ?  poisonous
## 6123       p    y          v       l           t          ?  poisonous
## 6124       p    s          v       p           t          ?  poisonous
## 6125       p    y          v       l           t          ?  poisonous
## 6126       p    s          v       l           t          ?  poisonous
## 6127       p    f          v       l           t          ?  poisonous
## 6128       p    f          v       l           t          ?  poisonous
## 6129       p    y          v       d           t          ?  poisonous
## 6130       p    f          v       d           t          ?  poisonous
## 6131       p    f          v       p           t          ?  poisonous
## 6132       p    y          v       l           t          ?  poisonous
## 6133       p    y          v       p           t          ?  poisonous
## 6134       p    s          v       l           t          ?  poisonous
## 6135       p    f          v       p           t          ?  poisonous
## 6136       p    s          v       d           t          ?  poisonous
## 6137       p    y          v       d           t          ?  poisonous
## 6138       p    y          v       p           t          ?  poisonous
## 6139       p    f          v       l           t          ?  poisonous
## 6140       p    s          v       p           t          ?  poisonous
## 6141       p    y          v       l           t          ?  poisonous
## 6142       e    n          n       g           e          ?     edible
## 6143       p    s          v       l           t          ?  poisonous
## 6144       p    f          v       p           t          ?  poisonous
## 6145       p    s          v       l           t          ?  poisonous
## 6146       p    y          v       l           t          ?  poisonous
## 6147       e    n          s       g           e          ?     edible
## 6148       p    s          v       p           t          ?  poisonous
## 6149       p    s          v       p           t          ?  poisonous
## 6150       p    s          v       d           t          ?  poisonous
## 6151       p    f          v       d           t          ?  poisonous
## 6152       p    f          v       p           t          ?  poisonous
## 6153       p    f          v       p           t          ?  poisonous
## 6154       p    s          v       p           t          ?  poisonous
## 6155       p    y          v       d           t          ?  poisonous
## 6156       p    f          v       d           t          ?  poisonous
## 6157       p    f          v       d           t          ?  poisonous
## 6158       p    f          v       d           t          ?  poisonous
## 6159       p    s          v       d           t          ?  poisonous
## 6160       p    f          v       d           t          ?  poisonous
## 6161       p    s          v       l           t          ?  poisonous
## 6162       p    s          v       d           t          ?  poisonous
## 6163       p    s          v       d           t          ?  poisonous
## 6164       p    y          v       d           t          ?  poisonous
## 6165       p    y          v       d           t          ?  poisonous
## 6166       p    f          v       d           t          ?  poisonous
## 6167       p    y          v       p           t          ?  poisonous
## 6168       p    y          v       l           t          ?  poisonous
## 6169       p    y          v       d           t          ?  poisonous
## 6170       p    y          v       l           t          ?  poisonous
## 6171       p    f          v       p           t          ?  poisonous
## 6172       p    f          v       l           t          ?  poisonous
## 6173       p    f          v       l           t          ?  poisonous
## 6174       p    f          v       p           t          ?  poisonous
## 6175       p    f          v       p           t          ?  poisonous
## 6176       p    f          v       l           t          ?  poisonous
## 6177       p    f          v       p           t          ?  poisonous
## 6178       p    s          v       d           t          ?  poisonous
## 6179       p    y          v       l           t          ?  poisonous
## 6180       p    f          v       l           t          ?  poisonous
## 6181       p    s          v       d           t          ?  poisonous
## 6182       p    f          v       d           t          ?  poisonous
## 6183       p    s          v       p           t          ?  poisonous
## 6184       p    s          v       l           t          ?  poisonous
## 6185       p    y          v       p           t          ?  poisonous
## 6186       p    f          v       d           t          ?  poisonous
## 6187       p    s          v       p           t          ?  poisonous
## 6188       p    s          v       d           t          ?  poisonous
## 6189       p    s          v       l           t          ?  poisonous
## 6190       p    s          v       p           t          ?  poisonous
## 6191       p    f          v       l           t          ?  poisonous
## 6192       p    f          v       l           t          ?  poisonous
## 6193       p    f          v       p           t          ?  poisonous
## 6194       e    n          n       g           e          ?     edible
## 6195       p    s          v       p           t          ?  poisonous
## 6196       p    s          v       d           t          ?  poisonous
## 6197       p    s          v       l           t          ?  poisonous
## 6198       p    y          v       p           t          ?  poisonous
## 6199       p    y          v       d           t          ?  poisonous
## 6200       p    f          v       l           t          ?  poisonous
## 6201       p    f          v       d           t          ?  poisonous
## 6202       p    f          v       p           t          ?  poisonous
## 6203       e    n          s       g           e          ?     edible
## 6204       p    s          v       p           t          ?  poisonous
## 6205       p    f          v       p           t          ?  poisonous
## 6206       p    y          v       l           t          ?  poisonous
## 6207       p    s          v       l           t          ?  poisonous
## 6208       p    y          v       l           t          ?  poisonous
## 6209       p    y          v       d           t          ?  poisonous
## 6210       p    f          v       p           t          ?  poisonous
## 6211       p    y          v       p           t          ?  poisonous
## 6212       p    f          v       p           t          ?  poisonous
## 6213       p    s          v       d           t          ?  poisonous
## 6214       e    n          n       g           e          ?     edible
## 6215       p    s          v       l           t          ?  poisonous
## 6216       p    f          v       l           t          ?  poisonous
## 6217       p    f          v       l           t          ?  poisonous
## 6218       p    s          v       p           t          ?  poisonous
## 6219       e    n          s       g           e          ?     edible
## 6220       p    s          v       d           t          ?  poisonous
## 6221       p    y          v       p           t          ?  poisonous
## 6222       p    f          v       p           t          ?  poisonous
## 6223       p    s          v       l           t          ?  poisonous
## 6224       p    f          v       p           t          ?  poisonous
## 6225       p    y          v       d           t          ?  poisonous
## 6226       p    s          v       p           t          ?  poisonous
## 6227       p    f          v       p           t          ?  poisonous
## 6228       p    s          v       d           t          ?  poisonous
## 6229       p    y          v       d           t          ?  poisonous
## 6230       p    y          v       d           t          ?  poisonous
## 6231       p    y          v       l           t          ?  poisonous
## 6232       p    y          v       l           t          ?  poisonous
## 6233       p    y          v       l           t          ?  poisonous
## 6234       p    f          v       l           t          ?  poisonous
## 6235       p    f          v       p           t          ?  poisonous
## 6236       p    f          v       d           t          ?  poisonous
## 6237       p    s          v       d           t          ?  poisonous
## 6238       p    y          v       d           t          ?  poisonous
## 6239       p    y          v       d           t          ?  poisonous
## 6240       p    s          v       l           t          ?  poisonous
## 6241       p    f          v       d           t          ?  poisonous
## 6242       p    f          v       d           t          ?  poisonous
## 6243       p    y          v       l           t          ?  poisonous
## 6244       p    y          v       l           t          ?  poisonous
## 6245       p    f          v       d           t          ?  poisonous
## 6246       p    s          v       l           t          ?  poisonous
## 6247       p    s          v       d           t          ?  poisonous
## 6248       p    f          v       l           t          ?  poisonous
## 6249       p    y          v       p           t          ?  poisonous
## 6250       p    s          v       d           t          ?  poisonous
## 6251       p    s          v       p           t          ?  poisonous
## 6252       p    f          v       d           t          ?  poisonous
## 6253       p    s          v       p           t          ?  poisonous
## 6254       p    s          v       d           t          ?  poisonous
## 6255       p    y          v       d           t          ?  poisonous
## 6256       p    y          v       l           t          ?  poisonous
## 6257       p    s          v       d           t          ?  poisonous
## 6258       p    s          v       l           t          ?  poisonous
## 6259       p    y          v       l           t          ?  poisonous
## 6260       p    f          v       p           t          ?  poisonous
## 6261       e    n          s       g           e          ?     edible
## 6262       p    y          v       l           t          ?  poisonous
## 6263       p    s          v       d           t          ?  poisonous
## 6264       p    y          v       d           t          ?  poisonous
## 6265       p    s          v       l           t          ?  poisonous
## 6266       p    s          v       p           t          ?  poisonous
## 6267       p    y          v       p           t          ?  poisonous
## 6268       p    s          v       p           t          ?  poisonous
## 6269       p    y          v       d           t          ?  poisonous
## 6270       p    f          v       p           t          ?  poisonous
## 6271       p    s          v       d           t          ?  poisonous
## 6272       p    s          v       p           t          ?  poisonous
## 6273       p    f          v       l           t          ?  poisonous
## 6274       p    s          v       l           t          ?  poisonous
## 6275       p    y          v       d           t          ?  poisonous
## 6276       p    s          v       p           t          ?  poisonous
## 6277       p    f          v       l           t          ?  poisonous
## 6278       p    f          v       p           t          ?  poisonous
## 6279       e    n          s       g           e          ?     edible
## 6280       p    s          v       p           t          ?  poisonous
## 6281       p    y          v       l           t          ?  poisonous
## 6282       p    f          v       d           t          ?  poisonous
## 6283       p    f          v       p           t          ?  poisonous
## 6284       p    y          v       l           t          ?  poisonous
## 6285       p    s          v       d           t          ?  poisonous
## 6286       p    f          v       d           t          ?  poisonous
## 6287       p    f          v       d           t          ?  poisonous
## 6288       p    f          v       l           t          ?  poisonous
## 6289       p    s          v       d           t          ?  poisonous
## 6290       p    y          v       l           t          ?  poisonous
## 6291       p    s          v       p           t          ?  poisonous
## 6292       p    s          v       d           t          ?  poisonous
## 6293       p    s          v       l           t          ?  poisonous
## 6294       p    y          v       p           t          ?  poisonous
## 6295       p    f          v       p           t          ?  poisonous
## 6296       p    f          v       l           t          ?  poisonous
## 6297       p    f          v       p           t          ?  poisonous
## 6298       p    y          v       p           t          ?  poisonous
## 6299       p    y          v       p           t          ?  poisonous
## 6300       p    s          v       d           t          ?  poisonous
## 6301       p    y          v       p           t          ?  poisonous
## 6302       p    f          v       l           t          ?  poisonous
## 6303       p    s          v       d           t          ?  poisonous
## 6304       p    s          v       d           t          ?  poisonous
## 6305       p    f          v       p           t          ?  poisonous
## 6306       p    f          v       p           t          ?  poisonous
## 6307       p    f          v       l           t          ?  poisonous
## 6308       p    y          v       d           t          ?  poisonous
## 6309       p    f          v       p           t          ?  poisonous
## 6310       p    f          v       l           t          ?  poisonous
## 6311       p    f          v       p           t          ?  poisonous
## 6312       p    f          v       l           t          ?  poisonous
## 6313       p    s          v       d           t          ?  poisonous
## 6314       p    f          v       d           t          ?  poisonous
## 6315       p    y          v       d           t          ?  poisonous
## 6316       p    f          v       p           t          ?  poisonous
## 6317       p    y          v       d           t          ?  poisonous
## 6318       p    f          v       p           t          ?  poisonous
## 6319       p    y          v       l           t          ?  poisonous
## 6320       p    f          v       p           t          ?  poisonous
## 6321       p    y          v       p           t          ?  poisonous
## 6322       p    f          v       l           t          ?  poisonous
## 6323       p    s          v       p           t          ?  poisonous
## 6324       p    s          v       p           t          ?  poisonous
## 6325       p    y          v       l           t          ?  poisonous
## 6326       p    s          v       d           t          ?  poisonous
## 6327       p    y          v       l           t          ?  poisonous
## 6328       p    f          v       l           t          ?  poisonous
## 6329       p    f          v       p           t          ?  poisonous
## 6330       p    f          v       d           t          ?  poisonous
## 6331       e    n          s       g           e          ?     edible
## 6332       p    f          v       l           t          ?  poisonous
## 6333       p    f          v       l           t          ?  poisonous
## 6334       p    s          v       l           t          ?  poisonous
## 6335       p    s          v       d           t          ?  poisonous
## 6336       p    f          v       p           t          ?  poisonous
## 6337       p    y          v       l           t          ?  poisonous
## 6338       p    s          v       p           t          ?  poisonous
## 6339       p    f          v       l           t          ?  poisonous
## 6340       p    f          v       d           t          ?  poisonous
## 6341       p    f          v       l           t          ?  poisonous
## 6342       p    f          v       l           t          ?  poisonous
## 6343       p    y          v       d           t          ?  poisonous
## 6344       p    f          v       l           t          ?  poisonous
## 6345       p    f          v       p           t          ?  poisonous
## 6346       p    f          v       l           t          ?  poisonous
## 6347       p    s          v       d           t          ?  poisonous
## 6348       p    f          v       d           t          ?  poisonous
## 6349       p    f          v       l           t          ?  poisonous
## 6350       p    f          v       p           t          ?  poisonous
## 6351       p    f          v       p           t          ?  poisonous
## 6352       p    s          v       l           t          ?  poisonous
## 6353       p    y          v       l           t          ?  poisonous
## 6354       p    y          v       p           t          ?  poisonous
## 6355       p    y          v       p           t          ?  poisonous
## 6356       p    f          v       p           t          ?  poisonous
## 6357       p    y          v       p           t          ?  poisonous
## 6358       p    y          v       p           t          ?  poisonous
## 6359       p    f          v       p           t          ?  poisonous
## 6360       p    f          v       d           t          ?  poisonous
## 6361       p    y          v       d           t          ?  poisonous
## 6362       p    f          v       l           t          ?  poisonous
## 6363       p    s          v       d           t          ?  poisonous
## 6364       p    y          v       l           t          ?  poisonous
## 6365       p    f          v       p           t          ?  poisonous
## 6366       e    n          n       g           e          ?     edible
## 6367       p    f          v       p           t          ?  poisonous
## 6368       p    f          v       d           t          ?  poisonous
## 6369       p    y          v       p           t          ?  poisonous
## 6370       p    f          v       d           t          ?  poisonous
## 6371       p    y          v       d           t          ?  poisonous
## 6372       p    f          v       l           t          ?  poisonous
## 6373       p    f          v       d           t          ?  poisonous
## 6374       p    y          v       p           t          ?  poisonous
## 6375       e    n          v       l           e          ?     edible
## 6376       p    f          v       d           t          ?  poisonous
## 6377       p    s          v       p           t          ?  poisonous
## 6378       p    y          v       l           t          ?  poisonous
## 6379       p    s          v       l           t          ?  poisonous
## 6380       p    s          v       p           t          ?  poisonous
## 6381       p    f          v       l           t          ?  poisonous
## 6382       p    s          v       l           t          ?  poisonous
## 6383       p    s          v       p           t          ?  poisonous
## 6384       p    y          v       p           t          ?  poisonous
## 6385       p    f          v       l           t          ?  poisonous
## 6386       p    s          v       d           t          ?  poisonous
## 6387       p    f          v       p           t          ?  poisonous
## 6388       p    y          v       l           t          ?  poisonous
## 6389       p    s          v       p           t          ?  poisonous
## 6390       p    y          v       p           t          ?  poisonous
## 6391       p    s          v       p           t          ?  poisonous
## 6392       p    f          v       d           t          ?  poisonous
## 6393       p    y          v       d           t          ?  poisonous
## 6394       p    y          v       d           t          ?  poisonous
## 6395       p    f          v       p           t          ?  poisonous
## 6396       e    n          s       g           e          ?     edible
## 6397       p    y          v       d           t          ?  poisonous
## 6398       p    f          v       l           t          ?  poisonous
## 6399       p    y          v       l           t          ?  poisonous
## 6400       p    s          v       l           t          ?  poisonous
## 6401       p    s          v       p           t          ?  poisonous
## 6402       p    f          v       l           t          ?  poisonous
## 6403       e    n          s       g           e          ?     edible
## 6404       p    s          v       l           t          ?  poisonous
## 6405       p    s          v       p           t          ?  poisonous
## 6406       e    n          s       g           e          ?     edible
## 6407       p    y          v       l           t          ?  poisonous
## 6408       p    s          v       l           t          ?  poisonous
## 6409       p    f          v       d           t          ?  poisonous
## 6410       p    s          v       p           t          ?  poisonous
## 6411       p    f          v       d           t          ?  poisonous
## 6412       p    s          v       p           t          ?  poisonous
## 6413       p    s          v       l           t          ?  poisonous
## 6414       p    s          v       l           t          ?  poisonous
## 6415       p    m          c       d           e          c  poisonous
## 6416       p    y          v       d           t          ?  poisonous
## 6417       p    y          v       d           t          ?  poisonous
## 6418       p    s          v       p           t          ?  poisonous
## 6419       p    y          v       p           t          ?  poisonous
## 6420       p    f          v       p           t          ?  poisonous
## 6421       p    s          v       l           t          ?  poisonous
## 6422       p    f          v       l           t          ?  poisonous
## 6423       p    s          v       p           t          ?  poisonous
## 6424       e    n          c       l           e          ?     edible
## 6425       p    s          v       d           t          ?  poisonous
## 6426       p    s          v       l           t          ?  poisonous
## 6427       p    s          v       l           t          ?  poisonous
## 6428       p    f          v       p           t          ?  poisonous
## 6429       p    y          v       d           t          ?  poisonous
## 6430       p    f          v       d           t          ?  poisonous
## 6431       p    s          v       p           t          ?  poisonous
## 6432       p    y          v       p           t          ?  poisonous
## 6433       p    f          v       p           t          ?  poisonous
## 6434       e    n          v       l           e          ?     edible
## 6435       p    s          v       p           t          ?  poisonous
## 6436       p    f          v       p           t          ?  poisonous
## 6437       p    f          v       d           t          ?  poisonous
## 6438       p    y          v       p           t          ?  poisonous
## 6439       p    f          v       d           t          ?  poisonous
## 6440       p    s          v       d           t          ?  poisonous
## 6441       p    f          v       l           t          ?  poisonous
## 6442       p    y          v       l           t          ?  poisonous
## 6443       p    s          v       d           t          ?  poisonous
## 6444       p    y          v       l           t          ?  poisonous
## 6445       p    y          v       l           t          ?  poisonous
## 6446       p    y          v       l           t          ?  poisonous
## 6447       p    y          v       d           t          ?  poisonous
## 6448       p    y          v       p           t          ?  poisonous
## 6449       e    n          n       g           e          ?     edible
## 6450       p    y          v       l           t          ?  poisonous
## 6451       p    y          v       l           t          ?  poisonous
## 6452       p    f          v       d           t          ?  poisonous
## 6453       p    s          v       p           t          ?  poisonous
## 6454       p    y          v       d           t          ?  poisonous
## 6455       p    f          v       p           t          ?  poisonous
## 6456       p    s          v       l           t          ?  poisonous
## 6457       p    s          v       l           t          ?  poisonous
## 6458       p    y          v       l           t          ?  poisonous
## 6459       p    s          v       d           t          ?  poisonous
## 6460       p    s          v       l           t          ?  poisonous
## 6461       p    f          v       l           t          ?  poisonous
## 6462       p    s          v       p           t          ?  poisonous
## 6463       p    f          v       p           t          ?  poisonous
## 6464       p    f          v       l           t          ?  poisonous
## 6465       p    y          v       l           t          ?  poisonous
## 6466       p    y          v       p           t          ?  poisonous
## 6467       p    y          v       p           t          ?  poisonous
## 6468       p    y          v       d           t          ?  poisonous
## 6469       p    f          v       l           t          ?  poisonous
## 6470       p    f          v       p           t          ?  poisonous
## 6471       p    f          v       d           t          ?  poisonous
## 6472       p    s          v       l           t          ?  poisonous
## 6473       p    y          v       p           t          ?  poisonous
## 6474       p    f          v       l           t          ?  poisonous
## 6475       p    y          v       d           t          ?  poisonous
## 6476       p    f          v       l           t          ?  poisonous
## 6477       p    y          v       p           t          ?  poisonous
## 6478       p    s          v       d           t          ?  poisonous
## 6479       p    s          v       p           t          ?  poisonous
## 6480       p    s          v       d           t          ?  poisonous
## 6481       p    y          v       p           t          ?  poisonous
## 6482       p    s          v       d           t          ?  poisonous
## 6483       p    y          v       d           t          ?  poisonous
## 6484       p    y          v       l           t          ?  poisonous
## 6485       p    y          v       p           t          ?  poisonous
## 6486       p    s          v       l           t          ?  poisonous
## 6487       p    f          v       d           t          ?  poisonous
## 6488       p    s          v       p           t          ?  poisonous
## 6489       p    f          v       p           t          ?  poisonous
## 6490       p    s          v       l           t          ?  poisonous
## 6491       p    s          v       d           t          ?  poisonous
## 6492       p    f          v       l           t          ?  poisonous
## 6493       p    s          v       l           t          ?  poisonous
## 6494       p    f          v       p           t          ?  poisonous
## 6495       p    y          v       d           t          ?  poisonous
## 6496       p    y          v       d           t          ?  poisonous
## 6497       p    f          v       d           t          ?  poisonous
## 6498       p    s          v       d           t          ?  poisonous
## 6499       p    f          v       d           t          ?  poisonous
## 6500       p    f          v       d           t          ?  poisonous
## 6501       p    s          v       d           t          ?  poisonous
## 6502       p    f          v       d           t          ?  poisonous
## 6503       p    f          v       d           t          ?  poisonous
## 6504       p    y          v       d           t          ?  poisonous
## 6505       p    s          v       l           t          ?  poisonous
## 6506       p    f          v       p           t          ?  poisonous
## 6507       p    s          v       p           t          ?  poisonous
## 6508       p    y          v       d           t          ?  poisonous
## 6509       e    n          n       g           e          ?     edible
## 6510       p    s          v       d           t          ?  poisonous
## 6511       p    f          v       l           t          ?  poisonous
## 6512       p    y          v       l           t          ?  poisonous
## 6513       p    y          v       d           t          ?  poisonous
## 6514       p    y          v       d           t          ?  poisonous
## 6515       p    f          v       p           t          ?  poisonous
## 6516       p    y          v       l           t          ?  poisonous
## 6517       e    n          n       g           e          ?     edible
## 6518       p    f          v       l           t          ?  poisonous
## 6519       p    f          v       l           t          ?  poisonous
## 6520       p    y          v       p           t          ?  poisonous
## 6521       p    y          v       p           t          ?  poisonous
## 6522       p    y          v       p           t          ?  poisonous
## 6523       p    f          v       d           t          ?  poisonous
## 6524       p    s          v       d           t          ?  poisonous
## 6525       p    f          v       l           t          ?  poisonous
## 6526       p    s          v       l           t          ?  poisonous
## 6527       p    s          v       p           t          ?  poisonous
## 6528       p    y          v       d           t          ?  poisonous
## 6529       p    s          v       p           t          ?  poisonous
## 6530       e    n          n       g           e          ?     edible
## 6531       p    f          v       d           t          ?  poisonous
## 6532       p    f          v       d           t          ?  poisonous
## 6533       p    f          v       d           t          ?  poisonous
## 6534       p    s          v       l           t          ?  poisonous
## 6535       p    y          v       d           t          ?  poisonous
## 6536       p    y          v       l           t          ?  poisonous
## 6537       p    s          v       l           t          ?  poisonous
## 6538       p    y          v       l           t          ?  poisonous
## 6539       p    y          v       p           t          ?  poisonous
## 6540       p    s          v       d           t          ?  poisonous
## 6541       p    s          v       p           t          ?  poisonous
## 6542       p    f          v       l           t          ?  poisonous
## 6543       p    s          v       l           t          ?  poisonous
## 6544       p    s          v       l           t          ?  poisonous
## 6545       p    f          v       d           t          ?  poisonous
## 6546       p    y          v       p           t          ?  poisonous
## 6547       p    f          v       p           t          ?  poisonous
## 6548       p    s          v       l           t          ?  poisonous
## 6549       p    s          v       p           t          ?  poisonous
## 6550       p    f          v       p           t          ?  poisonous
## 6551       p    s          v       p           t          ?  poisonous
## 6552       p    y          v       p           t          ?  poisonous
## 6553       p    s          v       d           t          ?  poisonous
## 6554       p    y          v       p           t          ?  poisonous
## 6555       p    f          v       p           t          ?  poisonous
## 6556       p    s          v       p           t          ?  poisonous
## 6557       p    s          v       p           t          ?  poisonous
## 6558       e    n          v       l           e          ?     edible
## 6559       p    y          v       l           t          ?  poisonous
## 6560       p    y          v       l           t          ?  poisonous
## 6561       p    f          v       d           t          ?  poisonous
## 6562       p    y          v       d           t          ?  poisonous
## 6563       p    y          v       p           t          ?  poisonous
## 6564       p    y          v       d           t          ?  poisonous
## 6565       p    f          v       p           t          ?  poisonous
## 6566       p    y          v       d           t          ?  poisonous
## 6567       p    f          v       l           t          ?  poisonous
## 6568       p    f          v       l           t          ?  poisonous
## 6569       p    s          v       p           t          ?  poisonous
## 6570       p    y          v       p           t          ?  poisonous
## 6571       p    s          v       d           t          ?  poisonous
## 6572       p    f          v       l           t          ?  poisonous
## 6573       p    y          v       p           t          ?  poisonous
## 6574       p    y          v       l           t          ?  poisonous
## 6575       p    f          v       p           t          ?  poisonous
## 6576       p    f          v       p           t          ?  poisonous
## 6577       p    y          v       l           t          ?  poisonous
## 6578       p    f          v       d           t          ?  poisonous
## 6579       p    y          v       p           t          ?  poisonous
## 6580       p    y          v       l           t          ?  poisonous
## 6581       p    s          v       d           t          ?  poisonous
## 6582       p    s          v       d           t          ?  poisonous
## 6583       p    s          v       p           t          ?  poisonous
## 6584       p    s          v       l           t          ?  poisonous
## 6585       p    y          v       p           t          ?  poisonous
## 6586       p    y          v       p           t          ?  poisonous
## 6587       p    y          v       l           t          ?  poisonous
## 6588       p    s          v       p           t          ?  poisonous
## 6589       p    f          v       d           t          ?  poisonous
## 6590       p    y          v       l           t          ?  poisonous
## 6591       p    s          v       d           t          ?  poisonous
## 6592       p    s          v       d           t          ?  poisonous
## 6593       p    s          v       d           t          ?  poisonous
## 6594       p    s          v       p           t          ?  poisonous
## 6595       p    s          v       l           t          ?  poisonous
## 6596       p    y          v       p           t          ?  poisonous
## 6597       p    s          v       l           t          ?  poisonous
## 6598       p    y          v       p           t          ?  poisonous
## 6599       e    n          n       g           e          ?     edible
## 6600       p    y          v       p           t          ?  poisonous
## 6601       p    s          v       p           t          ?  poisonous
## 6602       p    s          v       p           t          ?  poisonous
## 6603       p    s          v       d           t          ?  poisonous
## 6604       p    s          v       l           t          ?  poisonous
## 6605       p    f          v       l           t          ?  poisonous
## 6606       p    f          v       d           t          ?  poisonous
## 6607       p    s          v       d           t          ?  poisonous
## 6608       p    y          v       d           t          ?  poisonous
## 6609       p    f          v       l           t          ?  poisonous
## 6610       p    f          v       p           t          ?  poisonous
## 6611       p    f          v       p           t          ?  poisonous
## 6612       p    f          v       d           t          ?  poisonous
## 6613       p    y          v       d           t          ?  poisonous
## 6614       p    s          v       l           t          ?  poisonous
## 6615       p    f          v       p           t          ?  poisonous
## 6616       p    y          v       p           t          ?  poisonous
## 6617       p    s          v       l           t          ?  poisonous
## 6618       p    f          v       l           t          ?  poisonous
## 6619       p    s          v       p           t          ?  poisonous
## 6620       p    s          v       d           t          ?  poisonous
## 6621       p    f          v       d           t          ?  poisonous
## 6622       p    s          v       d           t          ?  poisonous
## 6623       p    y          v       l           t          ?  poisonous
## 6624       p    f          v       p           t          ?  poisonous
## 6625       p    s          v       p           t          ?  poisonous
## 6626       p    y          v       d           t          ?  poisonous
## 6627       p    s          v       l           t          ?  poisonous
## 6628       p    y          v       l           t          ?  poisonous
## 6629       p    y          v       d           t          ?  poisonous
## 6630       p    s          v       l           t          ?  poisonous
## 6631       p    y          v       d           t          ?  poisonous
## 6632       p    f          v       d           t          ?  poisonous
## 6633       p    s          v       d           t          ?  poisonous
## 6634       p    f          v       l           t          ?  poisonous
## 6635       p    s          v       l           t          ?  poisonous
## 6636       p    f          v       d           t          ?  poisonous
## 6637       p    y          v       d           t          ?  poisonous
## 6638       p    y          v       p           t          ?  poisonous
## 6639       p    y          v       l           t          ?  poisonous
## 6640       p    y          v       p           t          ?  poisonous
## 6641       p    y          v       p           t          ?  poisonous
## 6642       p    s          v       d           t          ?  poisonous
## 6643       p    f          v       p           t          ?  poisonous
## 6644       p    y          v       d           t          ?  poisonous
## 6645       p    f          v       l           t          ?  poisonous
## 6646       p    y          v       p           t          ?  poisonous
## 6647       p    s          v       p           t          ?  poisonous
## 6648       p    y          v       l           t          ?  poisonous
## 6649       p    y          v       l           t          ?  poisonous
## 6650       p    s          v       p           t          ?  poisonous
## 6651       p    y          v       l           t          ?  poisonous
## 6652       p    s          v       p           t          ?  poisonous
## 6653       p    f          v       l           t          ?  poisonous
## 6654       p    y          v       l           t          ?  poisonous
## 6655       p    s          v       d           t          ?  poisonous
## 6656       p    f          v       p           t          ?  poisonous
## 6657       p    f          v       l           t          ?  poisonous
## 6658       p    s          v       p           t          ?  poisonous
## 6659       p    y          v       p           t          ?  poisonous
## 6660       e    n          s       g           e          ?     edible
## 6661       p    y          v       p           t          ?  poisonous
## 6662       p    s          v       p           t          ?  poisonous
## 6663       e    n          v       l           e          ?     edible
## 6664       p    y          v       d           t          ?  poisonous
## 6665       p    s          v       d           t          ?  poisonous
## 6666       p    s          v       d           t          ?  poisonous
## 6667       p    s          v       d           t          ?  poisonous
## 6668       p    m          c       d           e          c  poisonous
## 6669       p    s          v       l           t          ?  poisonous
## 6670       p    s          v       p           t          ?  poisonous
## 6671       p    y          v       l           t          ?  poisonous
## 6672       p    s          v       d           t          ?  poisonous
## 6673       p    f          v       d           t          ?  poisonous
## 6674       p    f          v       l           t          ?  poisonous
## 6675       p    f          v       d           t          ?  poisonous
## 6676       p    s          v       d           t          ?  poisonous
## 6677       p    y          v       p           t          ?  poisonous
## 6678       p    y          v       l           t          ?  poisonous
## 6679       p    s          v       d           t          ?  poisonous
## 6680       p    y          v       l           t          ?  poisonous
## 6681       p    f          v       l           t          ?  poisonous
## 6682       p    s          v       p           t          ?  poisonous
## 6683       p    f          v       l           t          ?  poisonous
## 6684       p    f          v       p           t          ?  poisonous
## 6685       p    y          v       p           t          ?  poisonous
## 6686       p    f          v       d           t          ?  poisonous
## 6687       p    s          v       p           t          ?  poisonous
## 6688       p    f          v       l           t          ?  poisonous
## 6689       p    y          v       d           t          ?  poisonous
## 6690       p    y          v       d           t          ?  poisonous
## 6691       p    s          v       l           t          ?  poisonous
## 6692       p    y          v       d           t          ?  poisonous
## 6693       p    s          v       p           t          ?  poisonous
## 6694       p    s          v       d           t          ?  poisonous
## 6695       p    f          v       p           t          ?  poisonous
## 6696       p    y          v       d           t          ?  poisonous
## 6697       p    f          v       d           t          ?  poisonous
## 6698       p    y          v       p           t          ?  poisonous
## 6699       p    s          v       l           t          ?  poisonous
## 6700       p    f          v       d           t          ?  poisonous
## 6701       p    y          v       l           t          ?  poisonous
## 6702       p    s          v       d           t          ?  poisonous
## 6703       p    s          v       d           t          ?  poisonous
## 6704       p    f          v       p           t          ?  poisonous
## 6705       p    y          v       d           t          ?  poisonous
## 6706       p    f          v       d           t          ?  poisonous
## 6707       p    y          v       l           t          ?  poisonous
## 6708       p    y          v       p           t          ?  poisonous
## 6709       p    f          v       p           t          ?  poisonous
## 6710       p    y          v       l           t          ?  poisonous
## 6711       p    f          v       l           t          ?  poisonous
## 6712       p    f          v       p           t          ?  poisonous
## 6713       p    f          v       d           t          ?  poisonous
## 6714       p    s          v       d           t          ?  poisonous
## 6715       p    y          v       p           t          ?  poisonous
## 6716       p    s          v       p           t          ?  poisonous
## 6717       p    f          v       p           t          ?  poisonous
## 6718       p    y          v       p           t          ?  poisonous
## 6719       p    s          v       d           t          ?  poisonous
## 6720       p    s          v       d           t          ?  poisonous
## 6721       p    f          v       l           t          ?  poisonous
## 6722       p    s          v       l           t          ?  poisonous
## 6723       p    f          v       d           t          ?  poisonous
## 6724       p    s          v       l           t          ?  poisonous
## 6725       p    y          v       p           t          ?  poisonous
## 6726       p    s          v       p           t          ?  poisonous
## 6727       p    y          v       l           t          ?  poisonous
## 6728       p    s          v       d           t          ?  poisonous
## 6729       p    f          v       l           t          ?  poisonous
## 6730       p    f          v       l           t          ?  poisonous
## 6731       p    s          v       l           t          ?  poisonous
## 6732       p    y          v       d           t          ?  poisonous
## 6733       p    s          v       d           t          ?  poisonous
## 6734       p    y          v       l           t          ?  poisonous
## 6735       p    s          v       p           t          ?  poisonous
## 6736       p    y          v       d           t          ?  poisonous
## 6737       p    s          v       p           t          ?  poisonous
## 6738       p    y          v       l           t          ?  poisonous
## 6739       p    y          v       l           t          ?  poisonous
## 6740       p    f          v       l           t          ?  poisonous
## 6741       p    y          v       p           t          ?  poisonous
## 6742       p    s          v       d           t          ?  poisonous
## 6743       p    y          v       d           t          ?  poisonous
## 6744       e    n          s       g           e          ?     edible
## 6745       p    y          v       p           t          ?  poisonous
## 6746       p    f          v       l           t          ?  poisonous
## 6747       p    s          v       p           t          ?  poisonous
## 6748       p    f          v       l           t          ?  poisonous
## 6749       p    y          v       l           t          ?  poisonous
## 6750       p    s          v       l           t          ?  poisonous
## 6751       p    y          v       d           t          ?  poisonous
## 6752       e    n          s       g           e          ?     edible
## 6753       p    s          v       d           t          ?  poisonous
## 6754       p    f          v       d           t          ?  poisonous
## 6755       p    s          v       d           t          ?  poisonous
## 6756       p    f          v       l           t          ?  poisonous
## 6757       p    f          v       d           t          ?  poisonous
## 6758       p    s          v       d           t          ?  poisonous
## 6759       p    s          v       l           t          ?  poisonous
## 6760       p    y          v       d           t          ?  poisonous
## 6761       p    f          v       d           t          ?  poisonous
## 6762       e    n          s       g           e          ?     edible
## 6763       e    n          c       l           e          ?     edible
## 6764       p    s          v       l           t          ?  poisonous
## 6765       p    s          v       p           t          ?  poisonous
## 6766       p    s          v       l           t          ?  poisonous
## 6767       p    s          v       l           t          ?  poisonous
## 6768       p    y          v       l           t          ?  poisonous
## 6769       p    f          v       d           t          ?  poisonous
## 6770       p    y          v       p           t          ?  poisonous
## 6771       p    f          v       l           t          ?  poisonous
## 6772       p    s          v       l           t          ?  poisonous
## 6773       p    y          v       d           t          ?  poisonous
## 6774       e    n          n       g           e          ?     edible
## 6775       p    f          v       p           t          ?  poisonous
## 6776       p    y          v       l           t          ?  poisonous
## 6777       p    y          v       d           t          ?  poisonous
## 6778       p    y          v       l           t          ?  poisonous
## 6779       p    f          v       d           t          ?  poisonous
## 6780       p    y          v       d           t          ?  poisonous
## 6781       p    y          v       p           t          ?  poisonous
## 6782       p    y          v       p           t          ?  poisonous
## 6783       p    y          v       p           t          ?  poisonous
## 6784       p    f          v       d           t          ?  poisonous
## 6785       p    s          v       l           t          ?  poisonous
## 6786       p    f          v       d           t          ?  poisonous
## 6787       p    s          v       l           t          ?  poisonous
## 6788       p    f          v       d           t          ?  poisonous
## 6789       p    s          v       l           t          ?  poisonous
## 6790       p    f          v       p           t          ?  poisonous
## 6791       p    s          v       l           t          ?  poisonous
## 6792       p    s          v       l           t          ?  poisonous
## 6793       p    s          v       d           t          ?  poisonous
## 6794       p    y          v       l           t          ?  poisonous
## 6795       p    s          v       l           t          ?  poisonous
## 6796       p    f          v       l           t          ?  poisonous
## 6797       p    f          v       l           t          ?  poisonous
## 6798       p    y          v       p           t          ?  poisonous
## 6799       p    f          v       l           t          ?  poisonous
## 6800       p    y          v       l           t          ?  poisonous
## 6801       p    s          v       p           t          ?  poisonous
## 6802       p    y          v       p           t          ?  poisonous
## 6803       p    f          v       l           t          ?  poisonous
## 6804       p    s          v       d           t          ?  poisonous
## 6805       p    f          v       l           t          ?  poisonous
## 6806       p    y          v       d           t          ?  poisonous
## 6807       p    y          v       l           t          ?  poisonous
## 6808       p    s          v       p           t          ?  poisonous
## 6809       p    y          v       d           t          ?  poisonous
## 6810       p    f          v       l           t          ?  poisonous
## 6811       p    f          v       p           t          ?  poisonous
## 6812       p    f          v       p           t          ?  poisonous
## 6813       p    y          v       p           t          ?  poisonous
## 6814       p    s          v       p           t          ?  poisonous
## 6815       p    y          v       l           t          ?  poisonous
## 6816       p    f          v       d           t          ?  poisonous
## 6817       p    s          v       p           t          ?  poisonous
## 6818       p    f          v       l           t          ?  poisonous
## 6819       p    y          v       d           t          ?  poisonous
## 6820       p    y          v       p           t          ?  poisonous
## 6821       p    s          v       l           t          ?  poisonous
## 6822       p    y          v       l           t          ?  poisonous
## 6823       p    y          v       p           t          ?  poisonous
## 6824       p    y          v       p           t          ?  poisonous
## 6825       p    s          v       d           t          ?  poisonous
## 6826       p    f          v       l           t          ?  poisonous
## 6827       e    n          n       g           e          ?     edible
## 6828       p    y          v       d           t          ?  poisonous
## 6829       p    y          v       p           t          ?  poisonous
## 6830       p    s          v       p           t          ?  poisonous
## 6831       p    s          v       p           t          ?  poisonous
## 6832       p    s          v       p           t          ?  poisonous
## 6833       p    f          v       l           t          ?  poisonous
## 6834       p    f          v       l           t          ?  poisonous
## 6835       p    f          v       p           t          ?  poisonous
## 6836       p    f          v       l           t          ?  poisonous
## 6837       p    f          v       p           t          ?  poisonous
## 6838       p    f          v       p           t          ?  poisonous
## 6839       p    f          v       l           t          ?  poisonous
## 6840       p    s          v       p           t          ?  poisonous
## 6841       p    y          v       d           t          ?  poisonous
## 6842       p    f          v       p           t          ?  poisonous
## 6843       p    s          v       p           t          ?  poisonous
## 6844       p    s          v       p           t          ?  poisonous
## 6845       p    s          v       d           t          ?  poisonous
## 6846       p    y          v       l           t          ?  poisonous
## 6847       p    s          v       l           t          ?  poisonous
## 6848       p    f          v       l           t          ?  poisonous
## 6849       e    n          c       l           e          ?     edible
## 6850       p    f          v       d           t          ?  poisonous
## 6851       p    s          v       l           t          ?  poisonous
## 6852       p    s          v       d           t          ?  poisonous
## 6853       p    f          v       d           t          ?  poisonous
## 6854       p    f          v       p           t          ?  poisonous
## 6855       p    m          c       d           e          c  poisonous
## 6856       p    f          v       p           t          ?  poisonous
## 6857       p    s          v       l           t          ?  poisonous
## 6858       p    y          v       d           t          ?  poisonous
## 6859       p    f          v       p           t          ?  poisonous
## 6860       e    n          s       g           e          ?     edible
## 6861       p    y          v       l           t          ?  poisonous
## 6862       p    y          v       d           t          ?  poisonous
## 6863       p    y          v       p           t          ?  poisonous
## 6864       p    s          v       d           t          ?  poisonous
## 6865       p    y          v       l           t          ?  poisonous
## 6866       p    y          v       p           t          ?  poisonous
## 6867       p    f          v       d           t          ?  poisonous
## 6868       p    f          v       p           t          ?  poisonous
## 6869       p    f          v       p           t          ?  poisonous
## 6870       p    f          v       l           t          ?  poisonous
## 6871       p    y          v       l           t          ?  poisonous
## 6872       p    y          v       d           t          ?  poisonous
## 6873       p    y          v       d           t          ?  poisonous
## 6874       p    s          v       p           t          ?  poisonous
## 6875       p    f          v       l           t          ?  poisonous
## 6876       p    y          v       l           t          ?  poisonous
## 6877       p    y          v       d           t          ?  poisonous
## 6878       p    f          v       d           t          ?  poisonous
## 6879       p    f          v       l           t          ?  poisonous
## 6880       p    f          v       p           t          ?  poisonous
## 6881       p    f          v       l           t          ?  poisonous
## 6882       p    y          v       d           t          ?  poisonous
## 6883       p    f          v       d           t          ?  poisonous
## 6884       e    n          n       g           e          ?     edible
## 6885       p    y          v       d           t          ?  poisonous
## 6886       p    y          v       d           t          ?  poisonous
## 6887       p    s          v       d           t          ?  poisonous
## 6888       p    s          v       p           t          ?  poisonous
## 6889       p    f          v       l           t          ?  poisonous
## 6890       p    s          v       l           t          ?  poisonous
## 6891       p    s          v       p           t          ?  poisonous
## 6892       p    f          v       p           t          ?  poisonous
## 6893       p    s          v       d           t          ?  poisonous
## 6894       p    s          v       p           t          ?  poisonous
## 6895       p    s          v       l           t          ?  poisonous
## 6896       p    f          v       p           t          ?  poisonous
## 6897       p    y          v       p           t          ?  poisonous
## 6898       p    y          v       d           t          ?  poisonous
## 6899       p    f          v       p           t          ?  poisonous
## 6900       e    n          v       l           e          ?     edible
## 6901       p    y          v       p           t          ?  poisonous
## 6902       p    y          v       l           t          ?  poisonous
## 6903       p    f          v       p           t          ?  poisonous
## 6904       e    n          y       p           e          b     edible
## 6905       e    n          c       l           e          ?     edible
## 6906       e    n          n       g           e          ?     edible
## 6907       e    n          s       g           e          ?     edible
## 6908       p    s          v       d           t          ?  poisonous
## 6909       p    f          v       p           t          ?  poisonous
## 6910       e    n          c       l           e          ?     edible
## 6911       p    s          v       d           t          ?  poisonous
## 6912       p    n          c       l           e          c  poisonous
## 6913       p    f          v       d           t          ?  poisonous
## 6914       e    n          n       g           e          ?     edible
## 6915       p    f          v       p           t          ?  poisonous
## 6916       p    s          v       p           t          ?  poisonous
## 6917       p    s          v       d           t          ?  poisonous
## 6918       p    y          v       p           t          ?  poisonous
## 6919       p    s          v       d           t          ?  poisonous
## 6920       e    n          s       g           e          ?     edible
## 6921       p    s          v       p           t          ?  poisonous
## 6922       p    y          v       d           t          ?  poisonous
## 6923       p    f          v       l           t          ?  poisonous
## 6924       e    n          n       g           e          ?     edible
## 6925       p    s          v       d           t          ?  poisonous
## 6926       p    y          v       p           t          ?  poisonous
## 6927       e    n          c       l           e          ?     edible
## 6928       e    n          y       p           e          b     edible
## 6929       p    y          v       d           t          ?  poisonous
## 6930       p    y          v       l           t          ?  poisonous
## 6931       p    s          v       l           t          ?  poisonous
## 6932       e    n          n       g           e          ?     edible
## 6933       p    f          v       p           t          ?  poisonous
## 6934       p    y          v       l           t          ?  poisonous
## 6935       p    y          v       l           t          ?  poisonous
## 6936       p    f          v       d           t          ?  poisonous
## 6937       e    n          s       g           e          ?     edible
## 6938       e    n          n       g           e          ?     edible
## 6939       p    y          v       l           t          ?  poisonous
## 6940       p    y          v       l           t          ?  poisonous
## 6941       e    n          v       p           e          b     edible
## 6942       p    s          v       d           t          ?  poisonous
## 6943       p    y          v       l           t          ?  poisonous
## 6944       p    s          v       l           t          ?  poisonous
## 6945       p    m          c       d           e          c  poisonous
## 6946       p    f          v       d           t          ?  poisonous
## 6947       p    s          v       p           t          ?  poisonous
## 6948       p    s          v       l           t          ?  poisonous
## 6949       p    f          v       l           t          ?  poisonous
## 6950       p    f          v       l           t          ?  poisonous
## 6951       p    f          v       p           t          ?  poisonous
## 6952       e    n          s       g           e          ?     edible
## 6953       p    s          v       d           t          ?  poisonous
## 6954       p    f          v       p           t          ?  poisonous
## 6955       p    y          v       d           t          ?  poisonous
## 6956       p    s          v       l           t          ?  poisonous
## 6957       p    s          v       l           t          ?  poisonous
## 6958       e    n          s       g           e          ?     edible
## 6959       p    f          v       p           t          ?  poisonous
## 6960       p    s          v       l           t          ?  poisonous
## 6961       p    s          v       l           t          ?  poisonous
## 6962       p    s          v       d           t          ?  poisonous
## 6963       p    y          v       l           t          ?  poisonous
## 6964       p    s          v       l           t          ?  poisonous
## 6965       p    y          v       p           t          ?  poisonous
## 6966       p    f          v       d           t          ?  poisonous
## 6967       e    n          y       d           e          b     edible
## 6968       p    f          v       p           t          ?  poisonous
## 6969       p    f          v       d           t          ?  poisonous
## 6970       e    n          y       d           e          b     edible
## 6971       p    f          v       d           t          ?  poisonous
## 6972       p    y          v       l           t          ?  poisonous
## 6973       p    s          v       p           t          ?  poisonous
## 6974       p    s          v       p           t          ?  poisonous
## 6975       e    n          s       g           e          ?     edible
## 6976       p    f          v       d           t          ?  poisonous
## 6977       p    y          v       p           t          ?  poisonous
## 6978       p    f          v       l           t          ?  poisonous
## 6979       p    f          v       p           t          ?  poisonous
## 6980       p    y          v       l           t          ?  poisonous
## 6981       p    f          v       p           t          ?  poisonous
## 6982       p    s          v       l           t          ?  poisonous
## 6983       p    f          v       d           t          ?  poisonous
## 6984       e    n          y       p           e          b     edible
## 6985       p    y          v       p           t          ?  poisonous
## 6986       p    f          v       p           t          ?  poisonous
## 6987       p    f          v       p           t          ?  poisonous
## 6988       p    s          v       l           t          ?  poisonous
## 6989       e    n          c       l           e          ?     edible
## 6990       e    n          n       g           e          ?     edible
## 6991       p    m          c       d           e          c  poisonous
## 6992       p    y          v       l           t          ?  poisonous
## 6993       p    y          v       d           t          ?  poisonous
## 6994       e    n          c       l           e          ?     edible
## 6995       p    s          v       d           t          ?  poisonous
## 6996       p    s          v       d           t          ?  poisonous
## 6997       e    n          s       g           e          ?     edible
## 6998       e    n          s       g           e          ?     edible
## 6999       e    n          v       l           e          ?     edible
## 7000       p    s          v       d           t          ?  poisonous
## 7001       p    s          v       l           t          ?  poisonous
## 7002       p    s          v       p           t          ?  poisonous
## 7003       e    n          s       g           e          ?     edible
## 7004       e    n          n       g           e          ?     edible
## 7005       e    n          s       g           e          ?     edible
## 7006       p    f          v       l           t          ?  poisonous
## 7007       p    s          v       p           t          ?  poisonous
## 7008       e    n          s       g           e          ?     edible
## 7009       e    n          s       g           e          ?     edible
## 7010       p    f          v       d           t          ?  poisonous
## 7011       e    n          s       g           e          ?     edible
## 7012       p    s          v       p           t          ?  poisonous
## 7013       p    f          v       p           t          ?  poisonous
## 7014       p    f          v       d           t          ?  poisonous
## 7015       e    n          s       g           e          ?     edible
## 7016       e    n          n       g           e          ?     edible
## 7017       p    y          v       p           t          ?  poisonous
## 7018       p    f          v       d           t          ?  poisonous
## 7019       e    n          s       g           e          ?     edible
## 7020       e    n          n       g           e          ?     edible
## 7021       p    s          v       d           t          ?  poisonous
## 7022       e    n          v       p           e          b     edible
## 7023       p    y          v       d           t          ?  poisonous
## 7024       p    y          v       p           t          ?  poisonous
## 7025       e    n          c       l           e          ?     edible
## 7026       e    n          c       l           e          ?     edible
## 7027       p    s          v       l           t          ?  poisonous
## 7028       p    y          v       d           t          ?  poisonous
## 7029       p    s          v       d           t          ?  poisonous
## 7030       p    y          v       d           t          ?  poisonous
## 7031       p    y          v       l           t          ?  poisonous
## 7032       e    n          n       g           e          ?     edible
## 7033       e    n          c       l           e          ?     edible
## 7034       p    m          c       d           e          c  poisonous
## 7035       e    n          s       g           e          ?     edible
## 7036       e    n          v       l           e          ?     edible
## 7037       e    n          v       l           e          ?     edible
## 7038       p    s          v       p           t          ?  poisonous
## 7039       e    n          n       g           e          ?     edible
## 7040       e    n          s       g           e          ?     edible
## 7041       e    n          v       l           e          ?     edible
## 7042       p    y          v       d           t          ?  poisonous
## 7043       p    s          v       l           t          ?  poisonous
## 7044       p    s          v       d           t          ?  poisonous
## 7045       p    y          v       p           t          ?  poisonous
## 7046       e    n          n       g           e          ?     edible
## 7047       p    s          v       d           t          ?  poisonous
## 7048       p    s          v       p           t          ?  poisonous
## 7049       p    s          v       l           t          ?  poisonous
## 7050       e    n          s       g           e          ?     edible
## 7051       e    n          c       l           e          ?     edible
## 7052       p    f          v       l           t          ?  poisonous
## 7053       p    s          v       p           t          ?  poisonous
## 7054       e    n          v       l           e          ?     edible
## 7055       p    y          v       d           t          ?  poisonous
## 7056       p    y          v       p           t          ?  poisonous
## 7057       p    s          v       l           t          ?  poisonous
## 7058       p    s          v       p           t          ?  poisonous
## 7059       p    s          v       p           t          ?  poisonous
## 7060       p    y          v       d           t          ?  poisonous
## 7061       p    s          v       d           t          ?  poisonous
## 7062       p    y          v       d           t          ?  poisonous
## 7063       e    n          y       p           e          b     edible
## 7064       p    y          v       d           t          ?  poisonous
## 7065       p    m          c       d           e          c  poisonous
## 7066       p    f          v       l           t          ?  poisonous
## 7067       e    n          s       g           e          ?     edible
## 7068       p    f          v       d           t          ?  poisonous
## 7069       p    y          v       p           t          ?  poisonous
## 7070       p    s          v       p           t          ?  poisonous
## 7071       p    y          v       d           t          ?  poisonous
## 7072       p    f          v       d           t          ?  poisonous
## 7073       e    n          y       p           e          b     edible
## 7074       p    f          v       l           t          ?  poisonous
## 7075       p    f          v       d           t          ?  poisonous
## 7076       p    y          v       l           t          ?  poisonous
## 7077       p    y          v       l           t          ?  poisonous
## 7078       p    f          v       p           t          ?  poisonous
## 7079       e    n          c       l           e          ?     edible
## 7080       p    s          v       d           t          ?  poisonous
## 7081       p    s          v       p           t          ?  poisonous
## 7082       p    f          v       d           t          ?  poisonous
## 7083       p    s          v       p           t          ?  poisonous
## 7084       p    f          v       l           t          ?  poisonous
## 7085       p    y          v       l           t          ?  poisonous
## 7086       e    n          s       g           e          ?     edible
## 7087       p    s          v       p           t          ?  poisonous
## 7088       p    s          v       l           t          ?  poisonous
## 7089       e    n          n       g           e          ?     edible
## 7090       e    n          v       l           e          ?     edible
## 7091       p    m          c       d           e          c  poisonous
## 7092       p    s          v       d           t          ?  poisonous
## 7093       p    f          v       l           t          ?  poisonous
## 7094       p    f          v       p           t          ?  poisonous
## 7095       p    y          v       l           t          ?  poisonous
## 7096       p    y          v       p           t          ?  poisonous
## 7097       p    y          v       l           t          ?  poisonous
## 7098       e    n          n       g           e          ?     edible
## 7099       p    f          v       p           t          ?  poisonous
## 7100       p    m          c       d           e          c  poisonous
## 7101       p    s          v       p           t          ?  poisonous
## 7102       p    s          v       l           t          ?  poisonous
## 7103       e    n          s       g           e          ?     edible
## 7104       p    y          v       d           t          ?  poisonous
## 7105       p    y          v       p           t          ?  poisonous
## 7106       p    f          v       l           t          ?  poisonous
## 7107       p    y          v       p           t          ?  poisonous
## 7108       p    f          v       d           t          ?  poisonous
## 7109       p    f          v       d           t          ?  poisonous
## 7110       e    n          n       g           e          ?     edible
## 7111       p    m          c       d           e          c  poisonous
## 7112       p    y          v       d           t          ?  poisonous
## 7113       p    f          v       p           t          ?  poisonous
## 7114       p    f          v       p           t          ?  poisonous
## 7115       p    s          v       l           t          ?  poisonous
## 7116       e    n          v       p           e          b     edible
## 7117       p    y          v       d           t          ?  poisonous
## 7118       p    y          v       p           t          ?  poisonous
## 7119       e    n          n       g           e          ?     edible
## 7120       p    s          v       d           t          ?  poisonous
## 7121       p    y          v       d           t          ?  poisonous
## 7122       p    s          v       d           t          ?  poisonous
## 7123       e    n          n       g           e          ?     edible
## 7124       p    s          v       p           t          ?  poisonous
## 7125       p    s          v       p           t          ?  poisonous
## 7126       p    y          v       p           t          ?  poisonous
## 7127       p    f          v       l           t          ?  poisonous
## 7128       e    n          v       l           e          ?     edible
## 7129       p    y          v       d           t          ?  poisonous
## 7130       p    y          v       d           t          ?  poisonous
## 7131       p    y          v       d           t          ?  poisonous
## 7132       p    f          v       l           t          ?  poisonous
## 7133       e    n          v       l           e          ?     edible
## 7134       e    n          s       g           e          ?     edible
## 7135       e    n          v       l           e          ?     edible
## 7136       e    n          n       g           e          ?     edible
## 7137       p    y          v       d           t          ?  poisonous
## 7138       p    f          v       d           t          ?  poisonous
## 7139       p    s          v       d           t          ?  poisonous
## 7140       p    y          v       p           t          ?  poisonous
## 7141       e    n          n       g           e          ?     edible
## 7142       p    s          v       d           t          ?  poisonous
## 7143       e    n          n       g           e          ?     edible
## 7144       p    f          v       d           t          ?  poisonous
## 7145       p    f          v       l           t          ?  poisonous
## 7146       p    m          c       d           e          c  poisonous
## 7147       p    s          v       d           t          ?  poisonous
## 7148       p    s          v       l           t          ?  poisonous
## 7149       p    s          v       l           t          ?  poisonous
## 7150       p    f          v       p           t          ?  poisonous
## 7151       p    f          v       l           t          ?  poisonous
## 7152       p    s          v       d           t          ?  poisonous
## 7153       e    n          s       g           e          ?     edible
## 7154       p    y          v       p           t          ?  poisonous
## 7155       p    y          v       l           t          ?  poisonous
## 7156       p    s          v       l           t          ?  poisonous
## 7157       p    y          v       p           t          ?  poisonous
## 7158       e    n          n       g           e          ?     edible
## 7159       p    s          v       l           t          ?  poisonous
## 7160       p    s          v       d           t          ?  poisonous
## 7161       p    s          v       d           t          ?  poisonous
## 7162       e    n          s       g           e          ?     edible
## 7163       p    y          v       p           t          ?  poisonous
## 7164       p    y          v       p           t          ?  poisonous
## 7165       p    y          v       d           t          ?  poisonous
## 7166       p    m          c       d           e          c  poisonous
## 7167       e    n          s       g           e          ?     edible
## 7168       p    f          v       p           t          ?  poisonous
## 7169       p    f          v       l           t          ?  poisonous
## 7170       e    n          n       g           e          ?     edible
## 7171       p    f          v       l           t          ?  poisonous
## 7172       p    s          v       l           t          ?  poisonous
## 7173       e    n          c       l           e          ?     edible
## 7174       p    f          v       l           t          ?  poisonous
## 7175       p    s          v       l           t          ?  poisonous
## 7176       e    n          c       l           e          ?     edible
## 7177       p    f          v       l           t          ?  poisonous
## 7178       p    f          v       d           t          ?  poisonous
## 7179       p    s          v       p           t          ?  poisonous
## 7180       p    s          v       p           t          ?  poisonous
## 7181       e    n          y       p           e          b     edible
## 7182       e    n          c       l           e          ?     edible
## 7183       e    n          n       g           e          ?     edible
## 7184       p    s          v       p           t          ?  poisonous
## 7185       e    n          n       g           e          ?     edible
## 7186       p    y          v       p           t          ?  poisonous
## 7187       p    s          v       d           t          ?  poisonous
## 7188       e    n          c       l           e          ?     edible
## 7189       p    y          v       p           t          ?  poisonous
## 7190       p    f          v       d           t          ?  poisonous
## 7191       p    y          v       l           t          ?  poisonous
## 7192       p    s          v       p           t          ?  poisonous
## 7193       p    s          v       p           t          ?  poisonous
## 7194       p    f          v       d           t          ?  poisonous
## 7195       e    n          y       d           e          b     edible
## 7196       p    f          v       d           t          ?  poisonous
## 7197       p    s          v       p           t          ?  poisonous
## 7198       p    y          v       p           t          ?  poisonous
## 7199       p    f          v       d           t          ?  poisonous
## 7200       e    n          n       g           e          ?     edible
## 7201       p    f          v       d           t          ?  poisonous
## 7202       e    n          s       g           e          ?     edible
## 7203       p    y          v       l           t          ?  poisonous
## 7204       e    n          n       g           e          ?     edible
## 7205       e    n          c       l           e          ?     edible
## 7206       p    f          v       p           t          ?  poisonous
## 7207       p    f          v       l           t          ?  poisonous
## 7208       e    n          n       g           e          ?     edible
## 7209       p    y          v       l           t          ?  poisonous
## 7210       p    s          v       l           t          ?  poisonous
## 7211       e    n          n       g           e          ?     edible
## 7212       p    f          v       p           t          ?  poisonous
## 7213       p    f          v       l           t          ?  poisonous
## 7214       p    f          v       l           t          ?  poisonous
## 7215       p    s          v       p           t          ?  poisonous
## 7216       p    s          v       p           t          ?  poisonous
## 7217       e    n          n       g           e          ?     edible
## 7218       p    f          v       p           t          ?  poisonous
## 7219       p    f          v       l           t          ?  poisonous
## 7220       e    n          n       g           e          ?     edible
## 7221       e    n          v       l           e          ?     edible
## 7222       e    n          n       g           e          ?     edible
## 7223       p    s          v       p           t          ?  poisonous
## 7224       p    f          v       d           t          ?  poisonous
## 7225       p    s          v       p           t          ?  poisonous
## 7226       e    n          s       g           e          ?     edible
## 7227       p    s          v       p           t          ?  poisonous
## 7228       e    n          v       l           e          ?     edible
## 7229       e    n          n       g           e          ?     edible
## 7230       p    m          c       d           e          c  poisonous
## 7231       e    n          s       g           e          ?     edible
## 7232       p    y          v       p           t          ?  poisonous
## 7233       e    n          c       l           e          ?     edible
## 7234       e    n          n       g           e          ?     edible
## 7235       e    n          c       l           e          ?     edible
## 7236       e    n          n       g           e          ?     edible
## 7237       p    f          v       l           t          ?  poisonous
## 7238       p    y          v       p           t          ?  poisonous
## 7239       e    n          c       l           e          ?     edible
## 7240       p    y          v       p           t          ?  poisonous
## 7241       p    y          v       p           t          ?  poisonous
## 7242       p    y          v       l           t          ?  poisonous
## 7243       p    s          v       l           t          ?  poisonous
## 7244       e    n          v       l           e          ?     edible
## 7245       e    n          s       g           e          ?     edible
## 7246       e    n          c       l           e          ?     edible
## 7247       p    s          v       l           t          ?  poisonous
## 7248       p    s          v       l           t          ?  poisonous
## 7249       p    y          v       p           t          ?  poisonous
## 7250       p    y          v       l           t          ?  poisonous
## 7251       e    n          c       l           e          ?     edible
## 7252       p    y          v       d           t          ?  poisonous
## 7253       e    n          v       l           e          ?     edible
## 7254       p    y          v       d           t          ?  poisonous
## 7255       e    n          s       g           e          ?     edible
## 7256       p    f          v       d           t          ?  poisonous
## 7257       p    f          v       d           t          ?  poisonous
## 7258       e    n          s       g           e          ?     edible
## 7259       p    y          v       p           t          ?  poisonous
## 7260       e    n          n       g           e          ?     edible
## 7261       p    f          v       p           t          ?  poisonous
## 7262       p    f          v       d           t          ?  poisonous
## 7263       e    n          n       g           e          ?     edible
## 7264       p    s          v       l           t          ?  poisonous
## 7265       p    m          c       d           e          c  poisonous
## 7266       e    n          n       g           e          ?     edible
## 7267       p    y          v       p           t          ?  poisonous
## 7268       p    s          v       d           t          ?  poisonous
## 7269       p    y          v       l           t          ?  poisonous
## 7270       e    n          n       g           e          ?     edible
## 7271       e    n          s       g           e          ?     edible
## 7272       p    s          v       d           t          ?  poisonous
## 7273       e    n          n       g           e          ?     edible
## 7274       p    f          v       d           t          ?  poisonous
## 7275       p    y          v       l           t          ?  poisonous
## 7276       e    n          s       g           e          ?     edible
## 7277       p    y          v       l           t          ?  poisonous
## 7278       e    n          s       g           e          ?     edible
## 7279       p    y          v       d           t          ?  poisonous
## 7280       e    n          n       g           e          ?     edible
## 7281       e    n          v       l           e          ?     edible
## 7282       p    s          v       d           t          ?  poisonous
## 7283       p    f          v       p           t          ?  poisonous
## 7284       e    n          n       g           e          ?     edible
## 7285       p    m          c       d           e          c  poisonous
## 7286       p    y          v       p           t          ?  poisonous
## 7287       p    f          v       l           t          ?  poisonous
## 7288       p    y          v       p           t          ?  poisonous
## 7289       p    f          v       d           t          ?  poisonous
## 7290       e    n          c       l           e          ?     edible
## 7291       p    f          v       l           t          ?  poisonous
## 7292       e    n          y       d           e          b     edible
## 7293       e    n          n       g           e          ?     edible
## 7294       p    y          v       l           t          ?  poisonous
## 7295       p    n          c       l           e          c  poisonous
## 7296       p    y          v       p           t          ?  poisonous
## 7297       p    s          v       l           t          ?  poisonous
## 7298       p    s          v       l           t          ?  poisonous
## 7299       e    n          c       l           e          ?     edible
## 7300       e    n          y       p           e          b     edible
## 7301       e    n          n       g           e          ?     edible
## 7302       p    s          v       p           t          ?  poisonous
## 7303       p    s          v       p           t          ?  poisonous
## 7304       p    s          v       l           t          ?  poisonous
## 7305       e    n          n       g           e          ?     edible
## 7306       e    n          c       l           e          ?     edible
## 7307       p    y          v       p           t          ?  poisonous
## 7308       p    f          v       d           t          ?  poisonous
## 7309       e    n          s       g           e          ?     edible
## 7310       p    y          v       l           t          ?  poisonous
## 7311       e    n          s       g           e          ?     edible
## 7312       p    y          v       l           t          ?  poisonous
## 7313       p    s          v       p           t          ?  poisonous
## 7314       e    n          n       g           e          ?     edible
## 7315       e    n          n       g           e          ?     edible
## 7316       p    f          v       d           t          ?  poisonous
## 7317       p    f          v       l           t          ?  poisonous
## 7318       p    s          v       d           t          ?  poisonous
## 7319       e    n          n       g           e          ?     edible
## 7320       p    f          v       p           t          ?  poisonous
## 7321       p    y          v       d           t          ?  poisonous
## 7322       p    f          v       l           t          ?  poisonous
## 7323       p    m          c       d           e          c  poisonous
## 7324       p    f          v       l           t          ?  poisonous
## 7325       e    n          c       l           e          ?     edible
## 7326       p    f          v       d           t          ?  poisonous
## 7327       e    n          v       l           e          ?     edible
## 7328       e    n          n       g           e          ?     edible
## 7329       e    n          n       g           e          ?     edible
## 7330       p    s          v       l           t          ?  poisonous
## 7331       p    y          v       d           t          ?  poisonous
## 7332       p    f          v       p           t          ?  poisonous
## 7333       p    y          v       d           t          ?  poisonous
## 7334       e    n          s       g           e          ?     edible
## 7335       e    n          n       g           e          ?     edible
## 7336       p    m          c       d           e          c  poisonous
## 7337       p    f          v       d           t          ?  poisonous
## 7338       p    f          v       p           t          ?  poisonous
## 7339       p    y          v       d           t          ?  poisonous
## 7340       p    s          v       d           t          ?  poisonous
## 7341       p    s          v       p           t          ?  poisonous
## 7342       p    m          c       d           e          c  poisonous
## 7343       p    s          v       d           t          ?  poisonous
## 7344       e    n          n       g           e          ?     edible
## 7345       p    y          v       l           t          ?  poisonous
## 7346       e    n          s       g           e          ?     edible
## 7347       p    f          v       d           t          ?  poisonous
## 7348       p    y          v       l           t          ?  poisonous
## 7349       e    n          s       g           e          ?     edible
## 7350       e    n          s       g           e          ?     edible
## 7351       p    y          v       l           t          ?  poisonous
## 7352       e    n          c       l           e          ?     edible
## 7353       e    n          y       p           e          b     edible
## 7354       e    n          n       g           e          ?     edible
## 7355       p    s          v       l           t          ?  poisonous
## 7356       p    f          v       p           t          ?  poisonous
## 7357       p    f          v       l           t          ?  poisonous
## 7358       e    n          n       g           e          ?     edible
## 7359       e    n          s       g           e          ?     edible
## 7360       e    n          y       p           e          b     edible
## 7361       e    n          s       g           e          ?     edible
## 7362       p    y          v       l           t          ?  poisonous
## 7363       p    y          v       p           t          ?  poisonous
## 7364       p    y          v       p           t          ?  poisonous
## 7365       p    f          v       p           t          ?  poisonous
## 7366       e    n          c       l           e          ?     edible
## 7367       p    n          c       l           e          c  poisonous
## 7368       p    m          c       d           e          c  poisonous
## 7369       p    y          v       d           t          ?  poisonous
## 7370       e    n          v       p           e          b     edible
## 7371       p    s          v       p           t          ?  poisonous
## 7372       e    n          n       g           e          ?     edible
## 7373       e    n          s       g           e          ?     edible
## 7374       p    f          v       p           t          ?  poisonous
## 7375       e    n          v       l           e          ?     edible
## 7376       e    n          v       l           e          ?     edible
## 7377       e    n          y       p           e          b     edible
## 7378       e    n          s       g           e          ?     edible
## 7379       p    y          v       d           t          ?  poisonous
## 7380       p    f          v       d           t          ?  poisonous
## 7381       p    s          v       l           t          ?  poisonous
## 7382       p    y          v       d           t          ?  poisonous
## 7383       p    f          v       l           t          ?  poisonous
## 7384       p    y          v       p           t          ?  poisonous
## 7385       e    n          n       g           e          ?     edible
## 7386       p    m          c       d           e          c  poisonous
## 7387       p    y          v       d           t          ?  poisonous
## 7388       e    n          v       l           e          ?     edible
## 7389       p    f          v       p           t          ?  poisonous
## 7390       e    n          s       g           e          ?     edible
## 7391       e    n          s       g           e          ?     edible
## 7392       p    s          v       l           t          ?  poisonous
## 7393       p    y          v       p           t          ?  poisonous
## 7394       p    f          v       d           t          ?  poisonous
## 7395       p    f          v       p           t          ?  poisonous
## 7396       p    s          v       l           t          ?  poisonous
## 7397       p    y          v       p           t          ?  poisonous
## 7398       e    n          s       g           e          ?     edible
## 7399       p    y          v       p           t          ?  poisonous
## 7400       e    n          s       g           e          ?     edible
## 7401       p    n          c       l           e          c  poisonous
## 7402       p    s          v       p           t          ?  poisonous
## 7403       p    y          v       l           t          ?  poisonous
## 7404       e    n          s       g           e          ?     edible
## 7405       e    n          v       l           e          ?     edible
## 7406       p    y          v       l           t          ?  poisonous
## 7407       e    n          c       l           e          ?     edible
## 7408       p    y          v       l           t          ?  poisonous
## 7409       p    f          v       l           t          ?  poisonous
## 7410       p    y          v       p           t          ?  poisonous
## 7411       e    n          s       g           e          ?     edible
## 7412       e    n          c       l           e          ?     edible
## 7413       e    n          v       l           e          ?     edible
## 7414       p    f          v       d           t          ?  poisonous
## 7415       e    n          v       p           e          b     edible
## 7416       e    n          s       g           e          ?     edible
## 7417       p    s          v       l           t          ?  poisonous
## 7418       e    n          n       g           e          ?     edible
## 7419       p    f          v       p           t          ?  poisonous
## 7420       p    y          v       d           t          ?  poisonous
## 7421       p    s          v       d           t          ?  poisonous
## 7422       e    n          y       p           e          b     edible
## 7423       p    f          v       d           t          ?  poisonous
## 7424       p    f          v       p           t          ?  poisonous
## 7425       e    n          c       l           e          ?     edible
## 7426       p    f          v       l           t          ?  poisonous
## 7427       p    y          v       d           t          ?  poisonous
## 7428       p    y          v       d           t          ?  poisonous
## 7429       p    s          v       p           t          ?  poisonous
## 7430       p    f          v       p           t          ?  poisonous
## 7431       p    s          v       l           t          ?  poisonous
## 7432       e    n          c       l           e          ?     edible
## 7433       p    s          v       p           t          ?  poisonous
## 7434       e    n          s       g           e          ?     edible
## 7435       p    s          v       l           t          ?  poisonous
## 7436       p    y          v       l           t          ?  poisonous
## 7437       e    n          v       l           e          ?     edible
## 7438       p    s          v       l           t          ?  poisonous
## 7439       e    n          s       g           e          ?     edible
## 7440       e    n          v       l           e          ?     edible
## 7441       p    s          v       p           t          ?  poisonous
## 7442       p    s          v       d           t          ?  poisonous
## 7443       e    n          y       p           e          b     edible
## 7444       e    n          n       g           e          ?     edible
## 7445       e    n          n       g           e          ?     edible
## 7446       e    n          c       l           e          ?     edible
## 7447       p    s          v       p           t          ?  poisonous
## 7448       p    y          v       l           t          ?  poisonous
## 7449       e    n          y       p           e          b     edible
## 7450       e    n          s       g           e          ?     edible
## 7451       p    f          v       p           t          ?  poisonous
## 7452       p    f          v       l           t          ?  poisonous
## 7453       p    f          v       d           t          ?  poisonous
## 7454       p    f          v       l           t          ?  poisonous
## 7455       e    n          v       l           e          ?     edible
## 7456       p    f          v       d           t          ?  poisonous
## 7457       p    s          v       p           t          ?  poisonous
## 7458       p    f          v       l           t          ?  poisonous
## 7459       e    n          c       l           e          ?     edible
## 7460       e    n          n       g           e          ?     edible
## 7461       p    s          v       p           t          ?  poisonous
## 7462       p    f          v       p           t          ?  poisonous
## 7463       e    n          s       g           e          ?     edible
## 7464       p    s          v       d           t          ?  poisonous
## 7465       p    s          v       d           t          ?  poisonous
## 7466       p    y          v       l           t          ?  poisonous
## 7467       e    n          c       l           e          ?     edible
## 7468       e    n          s       g           e          ?     edible
## 7469       p    m          c       d           e          c  poisonous
## 7470       p    f          v       p           t          ?  poisonous
## 7471       p    f          v       d           t          ?  poisonous
## 7472       p    y          v       d           t          ?  poisonous
## 7473       p    f          v       d           t          ?  poisonous
## 7474       p    s          v       l           t          ?  poisonous
## 7475       p    s          v       d           t          ?  poisonous
## 7476       p    y          v       p           t          ?  poisonous
## 7477       p    s          v       d           t          ?  poisonous
## 7478       p    y          v       d           t          ?  poisonous
## 7479       e    n          s       g           e          ?     edible
## 7480       p    m          c       d           e          c  poisonous
## 7481       e    n          v       p           e          b     edible
## 7482       p    y          v       p           t          ?  poisonous
## 7483       p    n          c       l           e          c  poisonous
## 7484       p    s          v       l           t          ?  poisonous
## 7485       p    m          c       d           e          c  poisonous
## 7486       e    n          n       g           e          ?     edible
## 7487       p    y          v       d           t          ?  poisonous
## 7488       p    s          v       l           t          ?  poisonous
## 7489       p    y          v       d           t          ?  poisonous
## 7490       e    n          c       l           e          ?     edible
## 7491       p    s          v       d           t          ?  poisonous
## 7492       p    f          v       d           t          ?  poisonous
## 7493       p    s          v       p           t          ?  poisonous
## 7494       p    s          v       l           t          ?  poisonous
## 7495       p    s          v       p           t          ?  poisonous
## 7496       p    s          v       d           t          ?  poisonous
## 7497       p    y          v       p           t          ?  poisonous
## 7498       e    n          s       g           e          ?     edible
## 7499       e    n          s       g           e          ?     edible
## 7500       e    n          s       g           e          ?     edible
## 7501       p    s          v       d           t          ?  poisonous
## 7502       p    f          v       d           t          ?  poisonous
## 7503       p    y          v       p           t          ?  poisonous
## 7504       p    f          v       d           t          ?  poisonous
## 7505       p    y          v       p           t          ?  poisonous
## 7506       p    f          v       l           t          ?  poisonous
## 7507       p    y          v       p           t          ?  poisonous
## 7508       p    y          v       d           t          ?  poisonous
## 7509       p    s          v       d           t          ?  poisonous
## 7510       e    n          c       l           e          ?     edible
## 7511       p    s          v       d           t          ?  poisonous
## 7512       p    s          v       l           t          ?  poisonous
## 7513       e    n          n       g           e          ?     edible
## 7514       e    n          n       g           e          ?     edible
## 7515       p    s          v       d           t          ?  poisonous
## 7516       e    n          c       l           e          ?     edible
## 7517       p    s          v       l           t          ?  poisonous
## 7518       p    s          v       l           t          ?  poisonous
## 7519       p    s          v       p           t          ?  poisonous
## 7520       p    s          v       l           t          ?  poisonous
## 7521       p    f          v       l           t          ?  poisonous
## 7522       e    n          c       l           e          ?     edible
## 7523       e    n          c       l           e          ?     edible
## 7524       e    n          s       g           e          ?     edible
## 7525       p    y          v       l           t          ?  poisonous
## 7526       e    n          c       l           e          ?     edible
## 7527       p    s          v       d           t          ?  poisonous
## 7528       e    n          s       g           e          ?     edible
## 7529       e    n          n       g           e          ?     edible
## 7530       p    s          v       d           t          ?  poisonous
## 7531       e    n          c       l           e          ?     edible
## 7532       e    n          n       g           e          ?     edible
## 7533       e    n          y       p           e          b     edible
## 7534       e    n          s       g           e          ?     edible
## 7535       e    n          n       g           e          ?     edible
## 7536       p    m          c       d           e          c  poisonous
## 7537       e    n          c       l           e          ?     edible
## 7538       p    y          v       l           t          ?  poisonous
## 7539       p    s          v       l           t          ?  poisonous
## 7540       e    n          n       g           e          ?     edible
## 7541       e    n          s       g           e          ?     edible
## 7542       e    n          s       g           e          ?     edible
## 7543       e    n          v       l           e          ?     edible
## 7544       p    f          v       p           t          ?  poisonous
## 7545       p    s          v       p           t          ?  poisonous
## 7546       p    s          v       l           t          ?  poisonous
## 7547       e    n          v       l           e          ?     edible
## 7548       e    n          v       p           e          b     edible
## 7549       p    f          v       p           t          ?  poisonous
## 7550       e    n          s       g           e          ?     edible
## 7551       p    y          v       p           t          ?  poisonous
## 7552       e    n          s       g           e          ?     edible
## 7553       p    s          v       l           t          ?  poisonous
## 7554       p    s          v       l           t          ?  poisonous
## 7555       e    n          c       l           e          ?     edible
## 7556       p    y          v       l           t          ?  poisonous
## 7557       p    f          v       d           t          ?  poisonous
## 7558       e    n          v       l           e          ?     edible
## 7559       e    n          n       g           e          ?     edible
## 7560       e    n          n       g           e          ?     edible
## 7561       e    n          v       l           e          ?     edible
## 7562       p    y          v       p           t          ?  poisonous
## 7563       p    y          v       p           t          ?  poisonous
## 7564       e    n          s       g           e          ?     edible
## 7565       p    y          v       d           t          ?  poisonous
## 7566       e    n          s       g           e          ?     edible
## 7567       p    s          v       l           t          ?  poisonous
## 7568       p    f          v       d           t          ?  poisonous
## 7569       p    s          v       d           t          ?  poisonous
## 7570       e    n          y       p           e          b     edible
## 7571       p    y          v       l           t          ?  poisonous
## 7572       p    y          v       p           t          ?  poisonous
## 7573       e    n          s       g           e          ?     edible
## 7574       p    s          v       l           t          ?  poisonous
## 7575       p    f          v       p           t          ?  poisonous
## 7576       e    n          n       g           e          ?     edible
## 7577       p    f          v       l           t          ?  poisonous
## 7578       p    y          v       l           t          ?  poisonous
## 7579       p    s          v       p           t          ?  poisonous
## 7580       p    y          v       d           t          ?  poisonous
## 7581       e    n          n       g           e          ?     edible
## 7582       p    y          v       d           t          ?  poisonous
## 7583       p    s          v       d           t          ?  poisonous
## 7584       e    n          s       g           e          ?     edible
## 7585       e    n          n       g           e          ?     edible
## 7586       e    n          s       g           e          ?     edible
## 7587       p    s          v       p           t          ?  poisonous
## 7588       p    y          v       p           t          ?  poisonous
## 7589       p    y          v       d           t          ?  poisonous
## 7590       e    n          s       g           e          ?     edible
## 7591       p    f          v       d           t          ?  poisonous
## 7592       p    s          v       d           t          ?  poisonous
## 7593       e    n          s       g           e          ?     edible
## 7594       p    y          v       d           t          ?  poisonous
## 7595       p    f          v       l           t          ?  poisonous
## 7596       p    s          v       d           t          ?  poisonous
## 7597       e    n          v       p           e          b     edible
## 7598       p    f          v       p           t          ?  poisonous
## 7599       p    f          v       p           t          ?  poisonous
## 7600       p    n          c       l           e          c  poisonous
## 7601       p    f          v       l           t          ?  poisonous
## 7602       e    n          y       p           e          b     edible
## 7603       p    f          v       p           t          ?  poisonous
## 7604       e    n          s       g           e          ?     edible
## 7605       p    s          v       d           t          ?  poisonous
## 7606       p    f          v       d           t          ?  poisonous
## 7607       p    y          v       l           t          ?  poisonous
## 7608       p    y          v       l           t          ?  poisonous
## 7609       e    n          n       g           e          ?     edible
## 7610       e    n          n       g           e          ?     edible
## 7611       p    s          v       d           t          ?  poisonous
## 7612       e    n          c       l           e          ?     edible
## 7613       p    y          v       p           t          ?  poisonous
## 7614       p    y          v       p           t          ?  poisonous
## 7615       e    n          s       g           e          ?     edible
## 7616       p    y          v       p           t          ?  poisonous
## 7617       e    n          v       l           e          ?     edible
## 7618       p    y          v       p           t          ?  poisonous
## 7619       p    y          v       d           t          ?  poisonous
## 7620       p    y          v       l           t          ?  poisonous
## 7621       p    y          v       l           t          ?  poisonous
## 7622       e    n          n       g           e          ?     edible
## 7623       e    n          s       g           e          ?     edible
## 7624       p    y          v       l           t          ?  poisonous
## 7625       p    f          v       d           t          ?  poisonous
## 7626       e    n          s       g           e          ?     edible
## 7627       e    n          c       l           e          ?     edible
## 7628       p    s          v       p           t          ?  poisonous
## 7629       p    s          v       l           t          ?  poisonous
## 7630       e    n          v       l           e          ?     edible
## 7631       e    n          s       g           e          ?     edible
## 7632       e    n          n       g           e          ?     edible
## 7633       p    y          v       p           t          ?  poisonous
## 7634       p    f          v       l           t          ?  poisonous
## 7635       p    m          c       d           e          c  poisonous
## 7636       e    n          c       l           e          ?     edible
## 7637       p    f          v       d           t          ?  poisonous
## 7638       p    s          v       d           t          ?  poisonous
## 7639       p    s          v       d           t          ?  poisonous
## 7640       e    n          s       g           e          ?     edible
## 7641       e    n          s       g           e          ?     edible
## 7642       e    n          n       g           e          ?     edible
## 7643       e    n          n       g           e          ?     edible
## 7644       e    n          n       g           e          ?     edible
## 7645       p    s          v       p           t          ?  poisonous
## 7646       p    s          v       l           t          ?  poisonous
## 7647       p    s          v       l           t          ?  poisonous
## 7648       p    f          v       l           t          ?  poisonous
## 7649       e    n          s       g           e          ?     edible
## 7650       e    n          s       g           e          ?     edible
## 7651       e    n          n       g           e          ?     edible
## 7652       e    n          c       l           e          ?     edible
## 7653       p    s          v       d           t          ?  poisonous
## 7654       p    f          v       p           t          ?  poisonous
## 7655       p    y          v       p           t          ?  poisonous
## 7656       p    y          v       d           t          ?  poisonous
## 7657       p    f          v       l           t          ?  poisonous
## 7658       e    n          v       l           e          ?     edible
## 7659       e    n          s       g           e          ?     edible
## 7660       p    y          v       d           t          ?  poisonous
## 7661       p    y          v       d           t          ?  poisonous
## 7662       e    n          s       g           e          ?     edible
## 7663       p    s          v       d           t          ?  poisonous
## 7664       e    n          c       l           e          ?     edible
## 7665       e    n          v       l           e          ?     edible
## 7666       p    s          v       p           t          ?  poisonous
## 7667       p    s          v       d           t          ?  poisonous
## 7668       p    s          v       p           t          ?  poisonous
## 7669       p    s          v       p           t          ?  poisonous
## 7670       p    f          v       d           t          ?  poisonous
## 7671       e    n          s       g           e          ?     edible
## 7672       p    f          v       d           t          ?  poisonous
## 7673       e    n          v       p           e          b     edible
## 7674       e    n          v       l           e          ?     edible
## 7675       p    y          v       l           t          ?  poisonous
## 7676       p    f          v       d           t          ?  poisonous
## 7677       p    f          v       p           t          ?  poisonous
## 7678       e    n          s       g           e          ?     edible
## 7679       p    s          v       p           t          ?  poisonous
## 7680       e    n          s       g           e          ?     edible
## 7681       p    f          v       l           t          ?  poisonous
## 7682       e    n          s       g           e          ?     edible
## 7683       p    f          v       l           t          ?  poisonous
## 7684       p    s          v       d           t          ?  poisonous
## 7685       e    n          n       g           e          ?     edible
## 7686       p    f          v       d           t          ?  poisonous
## 7687       p    s          v       p           t          ?  poisonous
## 7688       e    n          v       l           e          ?     edible
## 7689       e    n          v       l           e          ?     edible
## 7690       p    y          v       l           t          ?  poisonous
## 7691       p    s          v       p           t          ?  poisonous
## 7692       e    n          c       l           e          ?     edible
## 7693       p    y          v       d           t          ?  poisonous
## 7694       p    f          v       d           t          ?  poisonous
## 7695       p    s          v       d           t          ?  poisonous
## 7696       p    f          v       d           t          ?  poisonous
## 7697       p    f          v       l           t          ?  poisonous
## 7698       e    n          n       g           e          ?     edible
## 7699       e    n          v       l           e          ?     edible
## 7700       p    s          v       d           t          ?  poisonous
## 7701       e    n          v       l           e          ?     edible
## 7702       e    n          y       p           e          b     edible
## 7703       p    y          v       l           t          ?  poisonous
## 7704       e    n          y       p           e          b     edible
## 7705       e    n          v       p           e          b     edible
## 7706       p    n          c       l           e          c  poisonous
## 7707       p    f          v       p           t          ?  poisonous
## 7708       p    f          v       d           t          ?  poisonous
## 7709       p    m          c       d           e          c  poisonous
## 7710       e    n          v       l           e          ?     edible
## 7711       p    s          v       l           t          ?  poisonous
## 7712       e    n          s       g           e          ?     edible
## 7713       p    f          v       l           t          ?  poisonous
## 7714       p    m          c       d           e          c  poisonous
## 7715       p    s          v       l           t          ?  poisonous
## 7716       e    n          c       l           e          ?     edible
## 7717       e    n          y       d           e          b     edible
## 7718       p    s          v       d           t          ?  poisonous
## 7719       p    y          v       p           t          ?  poisonous
## 7720       e    n          s       g           e          ?     edible
## 7721       e    n          v       p           e          b     edible
## 7722       p    s          v       p           t          ?  poisonous
## 7723       e    n          c       l           e          ?     edible
## 7724       e    n          n       g           e          ?     edible
## 7725       e    n          n       g           e          ?     edible
## 7726       p    y          v       d           t          ?  poisonous
## 7727       p    m          c       d           e          c  poisonous
## 7728       p    s          v       p           t          ?  poisonous
## 7729       e    n          c       l           e          ?     edible
## 7730       p    f          v       p           t          ?  poisonous
## 7731       p    s          v       l           t          ?  poisonous
## 7732       p    y          v       l           t          ?  poisonous
## 7733       p    s          v       d           t          ?  poisonous
## 7734       p    f          v       l           t          ?  poisonous
## 7735       p    f          v       d           t          ?  poisonous
## 7736       e    n          n       g           e          ?     edible
## 7737       e    n          v       l           e          ?     edible
## 7738       p    s          v       p           t          ?  poisonous
## 7739       p    n          c       l           e          c  poisonous
## 7740       e    n          n       g           e          ?     edible
## 7741       e    n          c       l           e          ?     edible
## 7742       p    s          v       p           t          ?  poisonous
## 7743       e    n          s       g           e          ?     edible
## 7744       e    n          n       g           e          ?     edible
## 7745       e    n          c       l           e          ?     edible
## 7746       e    n          n       g           e          ?     edible
## 7747       e    n          n       g           e          ?     edible
## 7748       e    n          n       g           e          ?     edible
## 7749       e    n          n       g           e          ?     edible
## 7750       p    f          v       d           t          ?  poisonous
## 7751       p    s          v       d           t          ?  poisonous
## 7752       e    n          s       g           e          ?     edible
## 7753       e    n          s       g           e          ?     edible
## 7754       p    f          v       p           t          ?  poisonous
## 7755       p    s          v       d           t          ?  poisonous
## 7756       p    f          v       p           t          ?  poisonous
## 7757       p    f          v       p           t          ?  poisonous
## 7758       p    s          v       l           t          ?  poisonous
## 7759       e    n          v       l           e          ?     edible
## 7760       p    s          v       p           t          ?  poisonous
## 7761       e    n          n       g           e          ?     edible
## 7762       e    n          v       l           e          ?     edible
## 7763       e    n          n       g           e          ?     edible
## 7764       p    s          v       p           t          ?  poisonous
## 7765       e    n          v       l           e          ?     edible
## 7766       p    f          v       d           t          ?  poisonous
## 7767       p    f          v       d           t          ?  poisonous
## 7768       p    s          v       p           t          ?  poisonous
## 7769       e    n          s       g           e          ?     edible
## 7770       p    f          v       d           t          ?  poisonous
## 7771       p    s          v       d           t          ?  poisonous
## 7772       e    n          s       g           e          ?     edible
## 7773       p    y          v       d           t          ?  poisonous
## 7774       p    y          v       p           t          ?  poisonous
## 7775       p    f          v       l           t          ?  poisonous
## 7776       e    n          n       g           e          ?     edible
## 7777       e    n          s       g           e          ?     edible
## 7778       p    s          v       p           t          ?  poisonous
## 7779       e    n          y       d           e          b     edible
## 7780       p    y          v       d           t          ?  poisonous
## 7781       p    s          v       l           t          ?  poisonous
## 7782       e    n          v       l           e          ?     edible
## 7783       e    n          n       g           e          ?     edible
## 7784       p    f          v       l           t          ?  poisonous
## 7785       p    s          v       l           t          ?  poisonous
## 7786       p    f          v       p           t          ?  poisonous
## 7787       p    f          v       d           t          ?  poisonous
## 7788       e    n          c       l           e          ?     edible
## 7789       p    y          v       d           t          ?  poisonous
## 7790       e    n          s       g           e          ?     edible
## 7791       e    n          c       l           e          ?     edible
## 7792       p    s          v       p           t          ?  poisonous
## 7793       p    y          v       p           t          ?  poisonous
## 7794       p    s          v       d           t          ?  poisonous
## 7795       e    n          n       g           e          ?     edible
## 7796       p    y          v       l           t          ?  poisonous
## 7797       e    n          s       g           e          ?     edible
## 7798       p    s          v       d           t          ?  poisonous
## 7799       p    s          v       d           t          ?  poisonous
## 7800       p    s          v       d           t          ?  poisonous
## 7801       p    m          c       d           e          c  poisonous
## 7802       p    s          v       d           t          ?  poisonous
## 7803       e    n          s       g           e          ?     edible
## 7804       p    y          v       l           t          ?  poisonous
## 7805       p    m          c       d           e          c  poisonous
## 7806       p    y          v       l           t          ?  poisonous
## 7807       e    n          c       l           e          ?     edible
## 7808       p    s          v       p           t          ?  poisonous
## 7809       e    n          n       g           e          ?     edible
## 7810       e    n          n       g           e          ?     edible
## 7811       e    n          v       l           e          ?     edible
## 7812       p    s          v       l           t          ?  poisonous
## 7813       e    n          c       l           e          ?     edible
## 7814       e    n          n       g           e          ?     edible
## 7815       p    s          v       l           t          ?  poisonous
## 7816       p    y          v       p           t          ?  poisonous
## 7817       e    n          n       g           e          ?     edible
## 7818       e    n          n       g           e          ?     edible
## 7819       p    f          v       d           t          ?  poisonous
## 7820       p    m          c       d           e          c  poisonous
## 7821       p    f          v       p           t          ?  poisonous
## 7822       p    f          v       p           t          ?  poisonous
## 7823       e    n          s       g           e          ?     edible
## 7824       p    f          v       l           t          ?  poisonous
## 7825       e    n          v       l           e          ?     edible
## 7826       p    s          v       d           t          ?  poisonous
## 7827       p    s          v       p           t          ?  poisonous
## 7828       e    n          v       l           e          ?     edible
## 7829       e    n          v       l           e          ?     edible
## 7830       e    n          n       g           e          ?     edible
## 7831       e    n          c       l           e          ?     edible
## 7832       p    y          v       l           t          ?  poisonous
## 7833       e    n          v       l           e          ?     edible
## 7834       e    n          c       l           e          ?     edible
## 7835       p    y          v       d           t          ?  poisonous
## 7836       e    n          c       l           e          ?     edible
## 7837       p    f          v       d           t          ?  poisonous
## 7838       e    n          n       g           e          ?     edible
## 7839       p    y          v       d           t          ?  poisonous
## 7840       e    n          v       l           e          ?     edible
## 7841       p    s          v       l           t          ?  poisonous
## 7842       e    n          s       g           e          ?     edible
## 7843       e    n          s       g           e          ?     edible
## 7844       e    n          v       l           e          ?     edible
## 7845       e    n          c       l           e          ?     edible
## 7846       p    y          v       d           t          ?  poisonous
## 7847       e    n          n       g           e          ?     edible
## 7848       p    f          v       d           t          ?  poisonous
## 7849       p    s          v       d           t          ?  poisonous
## 7850       p    f          v       p           t          ?  poisonous
## 7851       p    f          v       d           t          ?  poisonous
## 7852       p    s          v       l           t          ?  poisonous
## 7853       p    s          v       l           t          ?  poisonous
## 7854       e    n          n       g           e          ?     edible
## 7855       p    s          v       l           t          ?  poisonous
## 7856       p    y          v       p           t          ?  poisonous
## 7857       p    s          v       p           t          ?  poisonous
## 7858       e    n          n       g           e          ?     edible
## 7859       e    n          c       l           e          ?     edible
## 7860       e    n          n       g           e          ?     edible
## 7861       p    f          v       l           t          ?  poisonous
## 7862       p    f          v       l           t          ?  poisonous
## 7863       p    s          v       d           t          ?  poisonous
## 7864       p    f          v       p           t          ?  poisonous
## 7865       p    f          v       d           t          ?  poisonous
## 7866       e    n          v       l           e          ?     edible
## 7867       e    n          s       g           e          ?     edible
## 7868       p    f          v       l           t          ?  poisonous
## 7869       p    f          v       l           t          ?  poisonous
## 7870       e    n          n       g           e          ?     edible
## 7871       e    n          v       l           e          ?     edible
## 7872       e    n          n       g           e          ?     edible
## 7873       p    s          v       d           t          ?  poisonous
## 7874       p    f          v       p           t          ?  poisonous
## 7875       p    y          v       l           t          ?  poisonous
## 7876       p    y          v       d           t          ?  poisonous
## 7877       p    s          v       l           t          ?  poisonous
## 7878       e    n          c       l           e          ?     edible
## 7879       p    f          v       d           t          ?  poisonous
## 7880       p    s          v       d           t          ?  poisonous
## 7881       p    f          v       l           t          ?  poisonous
## 7882       e    n          s       g           e          ?     edible
## 7883       p    y          v       d           t          ?  poisonous
## 7884       p    y          v       l           t          ?  poisonous
## 7885       p    f          v       d           t          ?  poisonous
## 7886       e    n          v       l           e          ?     edible
## 7887       e    n          y       d           e          b     edible
## 7888       p    s          v       d           t          ?  poisonous
## 7889       p    s          v       l           t          ?  poisonous
## 7890       e    n          s       g           e          ?     edible
## 7891       p    s          v       p           t          ?  poisonous
## 7892       p    y          v       p           t          ?  poisonous
## 7893       e    n          c       l           e          ?     edible
## 7894       e    n          s       g           e          ?     edible
## 7895       e    n          n       g           e          ?     edible
## 7896       p    y          v       p           t          ?  poisonous
## 7897       p    s          v       d           t          ?  poisonous
## 7898       e    n          v       p           e          b     edible
## 7899       p    y          v       d           t          ?  poisonous
## 7900       e    n          s       g           e          ?     edible
## 7901       p    s          v       p           t          ?  poisonous
## 7902       p    y          v       p           t          ?  poisonous
## 7903       p    f          v       p           t          ?  poisonous
## 7904       e    n          s       g           e          ?     edible
## 7905       e    n          v       l           e          ?     edible
## 7906       p    f          v       p           t          ?  poisonous
## 7907       e    n          s       g           e          ?     edible
## 7908       p    f          v       l           t          ?  poisonous
## 7909       e    n          s       g           e          ?     edible
## 7910       p    m          c       d           e          c  poisonous
## 7911       e    n          v       l           e          ?     edible
## 7912       e    n          n       g           e          ?     edible
## 7913       e    n          v       l           e          ?     edible
## 7914       p    f          v       d           t          ?  poisonous
## 7915       e    n          v       l           e          ?     edible
## 7916       e    n          n       g           e          ?     edible
## 7917       p    f          v       p           t          ?  poisonous
## 7918       e    n          n       g           e          ?     edible
## 7919       e    n          v       p           e          b     edible
## 7920       p    f          v       l           t          ?  poisonous
## 7921       e    n          n       g           e          ?     edible
## 7922       e    n          c       l           e          ?     edible
## 7923       p    f          v       d           t          ?  poisonous
## 7924       p    y          v       l           t          ?  poisonous
## 7925       p    s          v       p           t          ?  poisonous
## 7926       p    s          v       d           t          ?  poisonous
## 7927       e    n          c       l           e          ?     edible
## 7928       p    s          v       p           t          ?  poisonous
## 7929       e    n          s       g           e          ?     edible
## 7930       p    f          v       p           t          ?  poisonous
## 7931       e    n          y       p           e          b     edible
## 7932       p    s          v       p           t          ?  poisonous
## 7933       e    n          s       g           e          ?     edible
## 7934       p    f          v       d           t          ?  poisonous
## 7935       p    y          v       d           t          ?  poisonous
## 7936       p    f          v       l           t          ?  poisonous
## 7937       e    n          c       l           e          ?     edible
## 7938       e    n          n       g           e          ?     edible
## 7939       e    n          c       l           e          ?     edible
## 7940       e    n          y       p           e          b     edible
## 7941       p    m          c       d           e          c  poisonous
## 7942       p    y          v       d           t          ?  poisonous
## 7943       p    f          v       p           t          ?  poisonous
## 7944       e    n          v       l           e          ?     edible
## 7945       e    n          c       l           e          ?     edible
## 7946       e    n          v       p           e          b     edible
## 7947       p    s          v       l           t          ?  poisonous
## 7948       p    y          v       l           t          ?  poisonous
## 7949       p    s          v       l           t          ?  poisonous
## 7950       p    y          v       d           t          ?  poisonous
## 7951       p    f          v       p           t          ?  poisonous
## 7952       e    n          v       p           e          b     edible
## 7953       e    n          c       l           e          ?     edible
## 7954       e    n          n       g           e          ?     edible
## 7955       e    n          s       g           e          ?     edible
## 7956       e    n          c       l           e          ?     edible
## 7957       e    n          c       l           e          ?     edible
## 7958       e    n          n       g           e          ?     edible
## 7959       p    f          v       l           t          ?  poisonous
## 7960       e    n          s       g           e          ?     edible
## 7961       p    y          v       p           t          ?  poisonous
## 7962       p    y          v       d           t          ?  poisonous
## 7963       p    f          v       d           t          ?  poisonous
## 7964       e    n          v       l           e          ?     edible
## 7965       e    n          y       p           e          b     edible
## 7966       e    n          n       g           e          ?     edible
## 7967       p    f          v       d           t          ?  poisonous
## 7968       p    f          v       l           t          ?  poisonous
## 7969       p    y          v       p           t          ?  poisonous
## 7970       e    n          c       l           e          ?     edible
## 7971       e    n          v       l           e          ?     edible
## 7972       e    n          s       g           e          ?     edible
## 7973       p    f          v       p           t          ?  poisonous
## 7974       e    n          s       g           e          ?     edible
## 7975       e    n          n       g           e          ?     edible
## 7976       e    n          n       g           e          ?     edible
## 7977       e    n          v       l           e          ?     edible
## 7978       p    s          v       p           t          ?  poisonous
## 7979       e    n          v       l           e          ?     edible
## 7980       p    f          v       d           t          ?  poisonous
## 7981       p    m          c       d           e          c  poisonous
## 7982       p    y          v       d           t          ?  poisonous
## 7983       e    n          n       g           e          ?     edible
## 7984       e    n          y       d           e          b     edible
## 7985       e    n          c       l           e          ?     edible
## 7986       e    n          y       p           e          b     edible
## 7987       p    f          v       l           t          ?  poisonous
## 7988       e    n          c       l           e          ?     edible
## 7989       p    y          v       p           t          ?  poisonous
## 7990       p    f          v       p           t          ?  poisonous
## 7991       e    n          n       g           e          ?     edible
## 7992       p    f          v       l           t          ?  poisonous
## 7993       e    n          s       g           e          ?     edible
## 7994       e    n          c       l           e          ?     edible
## 7995       p    y          v       p           t          ?  poisonous
## 7996       e    n          v       l           e          ?     edible
## 7997       p    y          v       l           t          ?  poisonous
## 7998       p    s          v       p           t          ?  poisonous
## 7999       e    n          v       l           e          ?     edible
## 8000       e    n          c       l           e          ?     edible
## 8001       e    n          y       p           e          b     edible
## 8002       e    n          s       g           e          ?     edible
## 8003       e    n          v       l           e          ?     edible
## 8004       p    f          v       p           t          ?  poisonous
## 8005       p    s          v       d           t          ?  poisonous
## 8006       p    y          v       p           t          ?  poisonous
## 8007       p    f          v       d           t          ?  poisonous
## 8008       p    f          v       p           t          ?  poisonous
## 8009       e    n          v       l           e          ?     edible
## 8010       e    n          v       l           e          ?     edible
## 8011       e    n          v       l           e          ?     edible
## 8012       p    s          v       l           t          ?  poisonous
## 8013       e    n          v       l           e          ?     edible
## 8014       e    n          s       g           e          ?     edible
## 8015       e    n          s       g           e          ?     edible
## 8016       p    s          v       p           t          ?  poisonous
## 8017       e    n          n       g           e          ?     edible
## 8018       e    n          s       g           e          ?     edible
## 8019       e    n          s       g           e          ?     edible
## 8020       p    y          v       d           t          ?  poisonous
## 8021       p    y          v       l           t          ?  poisonous
## 8022       p    y          v       p           t          ?  poisonous
## 8023       p    y          v       p           t          ?  poisonous
## 8024       p    f          v       d           t          ?  poisonous
## 8025       e    n          c       l           e          ?     edible
## 8026       e    n          v       l           e          ?     edible
## 8027       p    f          v       l           t          ?  poisonous
## 8028       p    f          v       l           t          ?  poisonous
## 8029       e    n          n       g           e          ?     edible
## 8030       e    n          s       g           e          ?     edible
## 8031       p    f          v       p           t          ?  poisonous
## 8032       p    f          v       d           t          ?  poisonous
## 8033       p    f          v       l           t          ?  poisonous
## 8034       e    n          c       l           e          ?     edible
## 8035       e    n          n       g           e          ?     edible
## 8036       e    n          v       l           e          ?     edible
## 8037       p    y          v       d           t          ?  poisonous
## 8038       e    n          y       p           e          b     edible
## 8039       p    f          v       l           t          ?  poisonous
## 8040       e    n          v       l           e          ?     edible
## 8041       p    y          v       p           t          ?  poisonous
## 8042       e    n          c       l           e          ?     edible
## 8043       e    n          v       l           e          ?     edible
## 8044       e    n          c       l           e          ?     edible
## 8045       p    y          v       p           t          ?  poisonous
## 8046       e    n          n       g           e          ?     edible
## 8047       p    y          v       d           t          ?  poisonous
## 8048       p    y          v       d           t          ?  poisonous
## 8049       p    f          v       l           t          ?  poisonous
## 8050       p    s          v       d           t          ?  poisonous
## 8051       e    n          s       g           e          ?     edible
## 8052       e    n          v       l           e          ?     edible
## 8053       p    f          v       d           t          ?  poisonous
## 8054       e    n          v       l           e          ?     edible
## 8055       e    n          n       g           e          ?     edible
## 8056       e    n          v       l           e          ?     edible
## 8057       e    n          v       l           e          ?     edible
## 8058       p    s          v       l           t          ?  poisonous
## 8059       p    f          v       p           t          ?  poisonous
## 8060       p    s          v       d           t          ?  poisonous
## 8061       p    s          v       p           t          ?  poisonous
## 8062       p    y          v       l           t          ?  poisonous
## 8063       e    n          s       g           e          ?     edible
## 8064       p    f          v       l           t          ?  poisonous
## 8065       e    n          v       l           e          ?     edible
## 8066       p    f          v       p           t          ?  poisonous
## 8067       e    n          c       l           e          ?     edible
## 8068       e    n          c       l           e          ?     edible
## 8069       e    n          c       l           e          ?     edible
## 8070       p    s          v       l           t          ?  poisonous
## 8071       e    n          v       l           e          ?     edible
## 8072       p    f          v       p           t          ?  poisonous
## 8073       e    n          v       l           e          ?     edible
## 8074       e    n          n       g           e          ?     edible
## 8075       e    n          c       l           e          ?     edible
## 8076       e    n          c       l           e          ?     edible
## 8077       e    n          v       l           e          ?     edible
## 8078       e    n          s       g           e          ?     edible
## 8079       p    f          v       l           t          ?  poisonous
## 8080       p    s          v       d           t          ?  poisonous
## 8081       p    f          v       p           t          ?  poisonous
## 8082       p    s          v       p           t          ?  poisonous
## 8083       p    y          v       l           t          ?  poisonous
## 8084       e    n          s       g           e          ?     edible
## 8085       e    n          s       g           e          ?     edible
## 8086       e    n          v       l           e          ?     edible
## 8087       p    f          v       p           t          ?  poisonous
## 8088       e    n          v       l           e          ?     edible
## 8089       p    f          v       d           t          ?  poisonous
## 8090       p    f          v       d           t          ?  poisonous
## 8091       p    f          v       p           t          ?  poisonous
## 8092       p    y          v       p           t          ?  poisonous
## 8093       p    y          v       d           t          ?  poisonous
## 8094       e    n          n       g           e          ?     edible
## 8095       p    m          c       d           e          c  poisonous
## 8096       e    n          n       g           e          ?     edible
## 8097       p    s          v       l           t          ?  poisonous
## 8098       p    y          v       d           t          ?  poisonous
## 8099       e    n          s       g           e          ?     edible
## 8100       e    n          v       l           e          ?     edible
## 8101       p    s          v       p           t          ?  poisonous
## 8102       e    n          c       l           e          ?     edible
## 8103       e    n          c       l           e          ?     edible
## 8104       e    n          v       l           e          ?     edible
## 8105       e    n          v       l           e          ?     edible
## 8106       e    n          v       l           e          ?     edible
## 8107       e    n          c       l           e          ?     edible
## 8108       p    y          v       l           t          ?  poisonous
## 8109       e    n          n       g           e          ?     edible
## 8110       e    n          v       l           e          ?     edible
## 8111       e    n          n       g           e          ?     edible
## 8112       e    n          v       l           e          ?     edible
## 8113       p    y          v       d           t          ?  poisonous
## 8114       p    m          c       d           e          c  poisonous
## 8115       e    n          v       l           e          ?     edible
## 8116       p    s          v       l           t          ?  poisonous
## 8117       p    y          v       d           t          ?  poisonous
## 8118       p    f          v       d           t          ?  poisonous
## 8119       e    n          c       l           e          ?     edible
## 8120       e    n          v       l           e          ?     edible
## 8121       e    n          c       l           e          ?     edible
## 8122       p    y          v       l           t          ?  poisonous
## 8123       e    n          c       l           e          ?     edible
mushroom_lkp
##        colname attr        info
## 1         odor    a      almond
## 2         odor    l       anise
## 3         odor    c    creosote
## 4         odor    y       fishy
## 5         odor    f        foul
## 6         odor    m       musty
## 7         odor    n        none
## 8         odor    p     pungent
## 9         odor    s       spicy
## 10        odor    e   enlarging
## 11        odor    t    tapering
## 12  population    a    abundant
## 13  population    c   clustered
## 14  population    n    numerous
## 15  population    s   scattered
## 16  population    v     several
## 17  population    y    solitary
## 18     habitat    g     grasses
## 19     habitat    l      leaves
## 20     habitat    m     meadows
## 21     habitat    p       paths
## 22     habitat    u       urban
## 23     habitat    w       waste
## 24     habitat    d       woods
## 25 stalk_shape    e   enlarging
## 26 stalk_shape    t    tapering
## 27  stalk_root    b     bulbous
## 28  stalk_root    c        club
## 29  stalk_root    u         cup
## 30  stalk_root    e       equal
## 31  stalk_root    z rhizomorphs
## 32  stalk_root    r      rooted
library(sqldf)
## Loading required package: gsubfn
## Loading required package: proto
## Loading required package: RSQLite
mushroom_lkp_data <- sqldf("SELECT class_info, l_odor.info as odor_info, l_population.info as population_info, l_habitat.info as habitat_info,l_stalk_shape.info as stalk_shape_info, 
case when l_stalk_root.info is null then 'Missing Data' else l_stalk_root.info end as stalk_root_info 
from mushroom_subset s
                             LEFT JOIN mushroom_lkp l_odor on s.odor=l_odor.attr and l_odor.colname = 'odor'
                             LEFT JOIN mushroom_lkp l_population on s.population=l_population.attr and l_population.colname = 'population'
                             LEFT JOIN mushroom_lkp l_habitat on s.habitat=l_habitat.attr and l_habitat.colname = 'habitat'
                             LEFT JOIN mushroom_lkp l_stalk_shape on s.stalk_shape=l_stalk_shape.attr and l_stalk_shape.colname = 'stalk_shape'
                             LEFT JOIN mushroom_lkp l_stalk_root on s.stalk_root=l_stalk_root.attr and l_stalk_root.colname = 'stalk_root'
                           ")

mushroom_lkp_data
##      class_info odor_info population_info habitat_info stalk_shape_info
## 1        edible    almond        numerous      grasses        enlarging
## 2        edible     anise        numerous      meadows        enlarging
## 3     poisonous   pungent       scattered        urban        enlarging
## 4        edible      none        abundant      grasses         tapering
## 5        edible    almond        numerous      grasses        enlarging
## 6        edible    almond        numerous      meadows        enlarging
## 7        edible     anise       scattered      meadows        enlarging
## 8     poisonous   pungent         several      grasses        enlarging
## 9        edible    almond       scattered      meadows        enlarging
## 10       edible     anise        numerous      grasses        enlarging
## 11       edible    almond       scattered      meadows        enlarging
## 12       edible    almond       scattered      grasses        enlarging
## 13    poisonous   pungent         several        urban        enlarging
## 14       edible      none        abundant      grasses         tapering
## 15       edible      none        solitary        urban        enlarging
## 16       edible      none        abundant      grasses         tapering
## 17    poisonous   pungent       scattered      grasses        enlarging
## 18    poisonous   pungent       scattered        urban        enlarging
## 19    poisonous   pungent       scattered        urban        enlarging
## 20       edible    almond       scattered      meadows        enlarging
## 21    poisonous   pungent         several      grasses        enlarging
## 22       edible     anise       scattered      meadows        enlarging
## 23       edible    almond        numerous      meadows        enlarging
## 24       edible     anise       scattered      meadows        enlarging
## 25    poisonous   pungent         several      grasses        enlarging
## 26       edible    almond        numerous      meadows        enlarging
## 27       edible     anise        numerous      meadows        enlarging
## 28       edible      none        solitary        urban        enlarging
## 29       edible    almond         several        woods         tapering
## 30       edible     anise        numerous      meadows        enlarging
## 31    poisonous   pungent       scattered        urban        enlarging
## 32       edible     anise        numerous      meadows        enlarging
## 33       edible     anise        solitary        paths        enlarging
## 34       edible     anise       scattered      meadows        enlarging
## 35       edible     anise         several        woods         tapering
## 36       edible      none         several        urban        enlarging
## 37    poisonous   pungent       scattered        urban        enlarging
## 38       edible    almond         several        woods         tapering
## 39       edible     anise       scattered      meadows        enlarging
## 40       edible    almond       scattered      grasses        enlarging
## 41       edible     anise        solitary        paths        enlarging
## 42       edible      none        solitary        urban        enlarging
## 43    poisonous   pungent         several      grasses        enlarging
## 44       edible    almond        numerous      meadows        enlarging
## 45       edible    almond        numerous      grasses        enlarging
## 46       edible     anise       scattered      meadows        enlarging
## 47       edible     anise        numerous      meadows        enlarging
## 48       edible     anise       scattered        paths        enlarging
## 49       edible     anise       scattered        paths        enlarging
## 50       edible    almond       scattered      grasses        enlarging
## 51       edible     anise       scattered      grasses        enlarging
## 52       edible     anise        numerous      meadows        enlarging
## 53    poisonous   pungent         several        urban        enlarging
## 54    poisonous   pungent         several        urban        enlarging
## 55       edible    almond       scattered      meadows        enlarging
## 56       edible      none        abundant      grasses         tapering
## 57       edible    almond        numerous      grasses        enlarging
## 58       edible     anise        numerous      grasses        enlarging
## 59       edible    almond        solitary        paths        enlarging
## 60       edible      none         several        urban        enlarging
## 61       edible    almond       scattered      meadows        enlarging
## 62       edible     anise       scattered      meadows        enlarging
## 63       edible     anise        numerous      meadows        enlarging
## 64       edible     anise       scattered      grasses        enlarging
## 65       edible      none        abundant      grasses         tapering
## 66       edible     anise       scattered      grasses        enlarging
## 67       edible    almond       scattered      grasses        enlarging
## 68       edible    almond        numerous      grasses        enlarging
## 69       edible      none         several        urban        enlarging
## 70       edible     anise         several        woods         tapering
## 71       edible     anise       scattered      meadows        enlarging
## 72       edible     anise         several        woods         tapering
## 73       edible    almond       scattered        paths        enlarging
## 74       edible    almond       scattered      grasses        enlarging
## 75       edible     anise         several        woods         tapering
## 76       edible     anise         several        woods         tapering
## 77       edible     anise        solitary        paths        enlarging
## 78    poisonous   pungent         several        urban        enlarging
## 79       edible    almond        solitary      grasses        enlarging
## 80       edible      none       scattered      grasses         tapering
## 81    poisonous   pungent       scattered      grasses        enlarging
## 82       edible      none        solitary        urban        enlarging
## 83       edible      none       scattered      grasses         tapering
## 84       edible     anise       scattered      grasses        enlarging
## 85       edible      none       scattered      grasses         tapering
## 86       edible    almond       scattered      grasses        enlarging
## 87       edible     anise       scattered      grasses        enlarging
## 88       edible     anise        solitary      grasses        enlarging
## 89       edible      none         several        urban        enlarging
## 90       edible      none        solitary        urban        enlarging
## 91       edible     anise       scattered      grasses        enlarging
## 92       edible    almond       scattered      grasses        enlarging
## 93       edible     anise        numerous      meadows        enlarging
## 94       edible      none        abundant      grasses         tapering
## 95       edible    almond       scattered      grasses        enlarging
## 96       edible     anise       scattered      grasses        enlarging
## 97       edible    almond        numerous      grasses        enlarging
## 98       edible    almond       scattered      grasses        enlarging
## 99       edible    almond       scattered      grasses        enlarging
## 100      edible      none       scattered      grasses         tapering
## 101      edible     anise        numerous      grasses        enlarging
## 102      edible     anise       scattered      grasses        enlarging
## 103      edible    almond        solitary        paths        enlarging
## 104      edible     anise        numerous      grasses        enlarging
## 105      edible    almond        numerous      meadows        enlarging
## 106      edible    almond        solitary      grasses        enlarging
## 107      edible     anise       scattered      meadows        enlarging
## 108      edible    almond       scattered      meadows        enlarging
## 109      edible    almond        numerous      meadows        enlarging
## 110      edible     anise        numerous      grasses        enlarging
## 111      edible      none        solitary        urban        enlarging
## 112      edible    almond         several        woods         tapering
## 113      edible    almond        numerous      meadows        enlarging
## 114   poisonous   pungent         several        urban        enlarging
## 115      edible     anise       scattered      grasses        enlarging
## 116      edible      none        solitary        urban        enlarging
## 117      edible     anise        solitary      grasses        enlarging
## 118      edible     anise         several        woods         tapering
## 119      edible      none        solitary        urban        enlarging
## 120   poisonous   pungent         several      grasses        enlarging
## 121      edible    almond        numerous      meadows        enlarging
## 122   poisonous   pungent         several      grasses        enlarging
## 123      edible      none        abundant      grasses         tapering
## 124      edible     anise       scattered      meadows        enlarging
## 125      edible      none       scattered      grasses         tapering
## 126      edible    almond        numerous      grasses        enlarging
## 127      edible      none        abundant      grasses         tapering
## 128      edible     anise        numerous      grasses        enlarging
## 129      edible     anise       scattered      meadows        enlarging
## 130      edible     anise       scattered      grasses        enlarging
## 131      edible     anise       scattered      meadows        enlarging
## 132      edible     anise         several        woods         tapering
## 133      edible     anise       scattered      meadows        enlarging
## 134      edible    almond         several        woods         tapering
## 135   poisonous   pungent         several        urban        enlarging
## 136      edible     anise         several        woods         tapering
## 137      edible    almond       scattered      grasses        enlarging
## 138   poisonous   pungent         several      grasses        enlarging
## 139      edible     anise        numerous      grasses        enlarging
## 140      edible    almond        solitary        paths        enlarging
## 141      edible     anise        numerous      meadows        enlarging
## 142      edible      none         several        urban        enlarging
## 143      edible    almond        solitary        paths        enlarging
## 144      edible    almond        numerous      grasses        enlarging
## 145      edible      none       scattered      grasses         tapering
## 146      edible      none        abundant      grasses         tapering
## 147      edible     anise        numerous      meadows        enlarging
## 148      edible     anise        numerous      grasses        enlarging
## 149      edible    almond        numerous      meadows        enlarging
## 150      edible    almond       scattered      grasses        enlarging
## 151      edible      none        abundant      grasses         tapering
## 152      edible     anise       scattered      grasses        enlarging
## 153      edible      none         several        urban        enlarging
## 154      edible    almond         several        woods         tapering
## 155      edible     anise       scattered      grasses        enlarging
## 156      edible    almond        numerous      grasses        enlarging
## 157      edible    almond        numerous      grasses        enlarging
## 158      edible    almond       scattered      meadows        enlarging
## 159      edible    almond       scattered      grasses        enlarging
## 160      edible     anise       scattered      meadows        enlarging
## 161      edible    almond        numerous      grasses        enlarging
## 162      edible      none        solitary        urban        enlarging
## 163      edible     anise        solitary      grasses        enlarging
## 164      edible    almond       scattered      grasses        enlarging
## 165      edible     anise        solitary        paths        enlarging
## 166      edible    almond       scattered      grasses        enlarging
## 167      edible    almond       scattered      meadows        enlarging
## 168      edible     anise        solitary      grasses        enlarging
## 169      edible    almond       scattered      grasses        enlarging
## 170      edible      none        solitary        urban        enlarging
## 171      edible     anise       scattered      grasses        enlarging
## 172      edible     anise         several        woods         tapering
## 173      edible    almond       scattered      grasses        enlarging
## 174      edible     anise       scattered      grasses        enlarging
## 175      edible     anise        numerous      meadows        enlarging
## 176      edible    almond        numerous      meadows        enlarging
## 177      edible    almond       scattered      grasses        enlarging
## 178      edible     anise        numerous      meadows        enlarging
## 179      edible     anise        numerous      grasses        enlarging
## 180   poisonous   pungent         several        urban        enlarging
## 181      edible      none        solitary        urban        enlarging
## 182      edible      none         several        urban        enlarging
## 183      edible    almond       scattered      meadows        enlarging
## 184      edible    almond       scattered        paths        enlarging
## 185   poisonous   pungent       scattered      grasses        enlarging
## 186      edible     anise       scattered      meadows        enlarging
## 187      edible      none         several        urban        enlarging
## 188      edible     anise        numerous      grasses        enlarging
## 189      edible    almond        solitary        paths        enlarging
## 190      edible      none       scattered      grasses         tapering
## 191      edible     anise         several        woods         tapering
## 192      edible     anise       scattered      meadows        enlarging
## 193      edible    almond         several        woods         tapering
## 194      edible    almond        numerous      meadows        enlarging
## 195      edible      none        solitary        urban        enlarging
## 196      edible    almond       scattered      grasses        enlarging
## 197      edible     anise        numerous      meadows        enlarging
## 198      edible     anise       scattered      meadows        enlarging
## 199      edible    almond         several        woods         tapering
## 200      edible     anise       scattered      grasses        enlarging
## 201      edible     anise       scattered      grasses        enlarging
## 202      edible    almond        numerous      grasses        enlarging
## 203      edible      none       scattered      grasses         tapering
## 204      edible     anise        solitary        paths        enlarging
## 205   poisonous   pungent         several        urban        enlarging
## 206      edible    almond        numerous      grasses        enlarging
## 207      edible    almond       scattered      meadows        enlarging
## 208      edible     anise        numerous      grasses        enlarging
## 209      edible    almond        numerous      grasses        enlarging
## 210      edible    almond       scattered      grasses        enlarging
## 211      edible     anise        numerous      meadows        enlarging
## 212      edible    almond         several        woods         tapering
## 213      edible      none        solitary        urban        enlarging
## 214      edible    almond       scattered      grasses        enlarging
## 215      edible     anise        numerous      meadows        enlarging
## 216      edible    almond       scattered      grasses        enlarging
## 217      edible    almond       scattered      grasses        enlarging
## 218      edible     anise       scattered      grasses        enlarging
## 219      edible      none         several        urban        enlarging
## 220      edible    almond        numerous      meadows        enlarging
## 221   poisonous   pungent       scattered      grasses        enlarging
## 222      edible    almond       scattered      grasses        enlarging
## 223      edible    almond         several        woods         tapering
## 224      edible     anise        numerous      meadows        enlarging
## 225      edible     anise       scattered      grasses        enlarging
## 226      edible    almond        numerous      grasses        enlarging
## 227      edible    almond       scattered      grasses        enlarging
## 228   poisonous   pungent         several        urban        enlarging
## 229      edible    almond        numerous      grasses        enlarging
## 230      edible      none        solitary        urban        enlarging
## 231   poisonous   pungent       scattered        urban        enlarging
## 232      edible     anise        solitary        paths        enlarging
## 233      edible      none         several        urban        enlarging
## 234      edible     anise        numerous      grasses        enlarging
## 235      edible     anise         several        woods         tapering
## 236      edible     anise       scattered      grasses        enlarging
## 237      edible     anise       scattered      grasses        enlarging
## 238      edible     anise       scattered      grasses        enlarging
## 239      edible    almond       scattered        paths        enlarging
## 240      edible    almond        solitary        paths        enlarging
## 241      edible     anise       scattered      grasses        enlarging
## 242      edible    almond        numerous      meadows        enlarging
## 243   poisonous   pungent         several        urban        enlarging
## 244      edible    almond         several        woods         tapering
## 245      edible     anise       scattered      grasses        enlarging
## 246      edible     anise         several        woods         tapering
## 247      edible    almond       scattered      meadows        enlarging
## 248      edible     anise        solitary        paths        enlarging
## 249      edible      none       scattered      grasses         tapering
## 250      edible    almond        solitary      grasses        enlarging
## 251   poisonous   pungent       scattered      grasses        enlarging
## 252      edible      none         several        urban        enlarging
## 253      edible     anise       scattered      meadows        enlarging
## 254      edible     anise       scattered      grasses        enlarging
## 255      edible     anise        numerous      meadows        enlarging
## 256      edible      none         several        urban        enlarging
## 257      edible    almond        numerous      meadows        enlarging
## 258      edible     anise        numerous      grasses        enlarging
## 259      edible    almond        numerous      meadows        enlarging
## 260      edible     anise       scattered      grasses        enlarging
## 261   poisonous   pungent         several      grasses        enlarging
## 262      edible    almond        numerous      grasses        enlarging
## 263      edible    almond       scattered      meadows        enlarging
## 264      edible     anise         several        woods         tapering
## 265      edible      none         several        urban        enlarging
## 266      edible      none        abundant      grasses         tapering
## 267      edible    almond       scattered      meadows        enlarging
## 268      edible    almond       scattered      meadows        enlarging
## 269   poisonous   pungent       scattered        urban        enlarging
## 270      edible     anise        numerous      meadows        enlarging
## 271   poisonous   pungent         several        urban        enlarging
## 272      edible     anise       scattered      grasses        enlarging
## 273      edible    almond        numerous      meadows        enlarging
## 274      edible    almond       scattered        paths        enlarging
## 275      edible    almond       scattered        paths        enlarging
## 276      edible    almond        solitary      grasses        enlarging
## 277      edible    almond        numerous      meadows        enlarging
## 278      edible      none       scattered      grasses         tapering
## 279      edible     anise        numerous      meadows        enlarging
## 280   poisonous   pungent       scattered      grasses        enlarging
## 281      edible    almond        numerous      meadows        enlarging
## 282      edible      none         several        urban        enlarging
## 283      edible     anise       scattered      meadows        enlarging
## 284      edible     anise        numerous      meadows        enlarging
## 285      edible    almond       scattered      grasses        enlarging
## 286      edible    almond       scattered      meadows        enlarging
## 287      edible    almond       scattered      grasses        enlarging
## 288      edible     anise        solitary        paths        enlarging
## 289      edible      none        solitary        urban        enlarging
## 290      edible      none        solitary        urban        enlarging
## 291      edible     anise       scattered      grasses        enlarging
## 292      edible     anise       scattered      meadows        enlarging
## 293      edible     anise       scattered      grasses        enlarging
## 294      edible    almond       scattered      meadows        enlarging
## 295      edible    almond        numerous      meadows        enlarging
## 296      edible    almond       scattered      meadows        enlarging
## 297      edible      none       scattered      grasses         tapering
## 298      edible    almond         several        woods         tapering
## 299   poisonous   pungent       scattered      grasses        enlarging
## 300      edible      none        abundant      grasses         tapering
## 301      edible    almond       scattered      grasses        enlarging
## 302      edible     anise         several        woods         tapering
## 303      edible    almond       scattered      grasses        enlarging
## 304      edible     anise       scattered      grasses        enlarging
## 305      edible      none        solitary        woods         tapering
## 306      edible     anise       scattered      meadows        enlarging
## 307      edible     anise        numerous      meadows        enlarging
## 308      edible    almond        solitary      grasses        enlarging
## 309      edible      none       scattered      grasses         tapering
## 310      edible     anise       scattered      grasses        enlarging
## 311   poisonous   pungent         several      grasses        enlarging
## 312      edible     anise       scattered      grasses        enlarging
## 313      edible    almond         several        woods         tapering
## 314      edible    almond        numerous      grasses        enlarging
## 315   poisonous   pungent         several        urban        enlarging
## 316      edible    almond         several        woods         tapering
## 317      edible    almond        numerous      meadows        enlarging
## 318      edible     anise         several        woods         tapering
## 319      edible     anise         several        woods         tapering
## 320      edible     anise       scattered      meadows        enlarging
## 321      edible    almond         several        woods         tapering
## 322      edible    almond       scattered      grasses        enlarging
## 323      edible    almond       scattered      meadows        enlarging
## 324      edible     anise       scattered        paths        enlarging
## 325      edible     anise        numerous      grasses        enlarging
## 326      edible    almond       scattered      meadows        enlarging
## 327   poisonous   pungent         several        urban        enlarging
## 328      edible     anise        numerous      grasses        enlarging
## 329      edible    almond        numerous      grasses        enlarging
## 330   poisonous   pungent         several        urban        enlarging
## 331      edible     anise       scattered      meadows        enlarging
## 332      edible     anise        numerous      meadows        enlarging
## 333      edible    almond       scattered      grasses        enlarging
## 334      edible     anise        numerous      grasses        enlarging
## 335      edible      none        solitary        woods         tapering
## 336      edible    almond        solitary      grasses        enlarging
## 337      edible     anise       scattered      grasses        enlarging
## 338      edible      none         several        urban        enlarging
## 339      edible     anise        solitary      grasses        enlarging
## 340      edible    almond       scattered      grasses        enlarging
## 341      edible    almond        numerous      grasses        enlarging
## 342      edible    almond       scattered      meadows        enlarging
## 343      edible    almond         several        woods         tapering
## 344      edible     anise       scattered      grasses        enlarging
## 345      edible      none        abundant      grasses         tapering
## 346      edible     anise         several        woods         tapering
## 347      edible    almond        numerous      meadows        enlarging
## 348      edible      none       scattered      grasses         tapering
## 349      edible      none        solitary        urban        enlarging
## 350      edible      none        abundant      grasses         tapering
## 351      edible    almond       scattered        paths        enlarging
## 352      edible    almond       scattered      grasses        enlarging
## 353      edible    almond       scattered      meadows        enlarging
## 354      edible     anise       scattered        paths        enlarging
## 355      edible      none         several        urban        enlarging
## 356      edible    almond        solitary        paths        enlarging
## 357   poisonous   pungent       scattered        urban        enlarging
## 358      edible    almond        solitary        paths        enlarging
## 359      edible    almond       scattered      grasses        enlarging
## 360      edible      none       scattered      grasses         tapering
## 361      edible      none        abundant      grasses         tapering
## 362      edible      none        abundant      grasses         tapering
## 363      edible    almond       scattered        paths        enlarging
## 364      edible    almond        numerous      grasses        enlarging
## 365      edible      none         several        urban        enlarging
## 366      edible    almond       scattered        paths        enlarging
## 367      edible    almond         several        woods         tapering
## 368      edible    almond        numerous      grasses        enlarging
## 369      edible      none       scattered      grasses         tapering
## 370      edible    almond       scattered      grasses        enlarging
## 371      edible     anise        solitary      grasses        enlarging
## 372      edible    almond       scattered      meadows        enlarging
## 373      edible      none        solitary        urban        enlarging
## 374      edible    almond       scattered      meadows        enlarging
## 375      edible     anise        numerous      grasses        enlarging
## 376      edible      none        solitary        urban        enlarging
## 377      edible     anise        numerous      meadows        enlarging
## 378      edible     anise        numerous      grasses        enlarging
## 379      edible    almond       scattered      grasses        enlarging
## 380   poisonous   pungent       scattered        urban        enlarging
## 381      edible      none       scattered      grasses         tapering
## 382      edible    almond       scattered      meadows        enlarging
## 383      edible    almond        numerous      grasses        enlarging
## 384      edible      none        solitary        woods         tapering
## 385   poisonous   pungent       scattered        urban        enlarging
## 386      edible     anise        solitary        paths        enlarging
## 387      edible      none        abundant      grasses         tapering
## 388      edible     anise        numerous      meadows        enlarging
## 389      edible    almond        numerous      meadows        enlarging
## 390      edible    almond       scattered      meadows        enlarging
## 391      edible     anise        numerous      meadows        enlarging
## 392      edible    almond        numerous      grasses        enlarging
## 393      edible      none         several        urban        enlarging
## 394      edible    almond       scattered      grasses        enlarging
## 395      edible      none        abundant      grasses         tapering
## 396      edible     anise        numerous      meadows        enlarging
## 397      edible     anise       scattered      meadows        enlarging
## 398      edible      none         several        urban        enlarging
## 399   poisonous   pungent       scattered        urban        enlarging
## 400      edible     anise        numerous      grasses        enlarging
## 401      edible    almond        numerous      meadows        enlarging
## 402   poisonous   pungent         several        urban        enlarging
## 403      edible     anise       scattered      meadows        enlarging
## 404      edible     anise       scattered      meadows        enlarging
## 405      edible     anise       scattered      meadows        enlarging
## 406      edible     anise        numerous      grasses        enlarging
## 407      edible    almond       scattered      meadows        enlarging
## 408      edible    almond       scattered      grasses        enlarging
## 409      edible     anise        solitary        paths        enlarging
## 410      edible    almond       scattered      meadows        enlarging
## 411      edible      none       scattered      grasses         tapering
## 412      edible     anise       scattered        paths        enlarging
## 413      edible     anise        solitary      grasses        enlarging
## 414   poisonous   pungent         several      grasses        enlarging
## 415      edible    almond        numerous      grasses        enlarging
## 416      edible     anise         several        woods         tapering
## 417   poisonous   pungent       scattered        urban        enlarging
## 418      edible     anise        numerous      grasses        enlarging
## 419      edible      none        abundant      grasses         tapering
## 420      edible     anise       scattered      grasses        enlarging
## 421      edible    almond       scattered      meadows        enlarging
## 422   poisonous   pungent       scattered        urban        enlarging
## 423      edible     anise       scattered      grasses        enlarging
## 424      edible     anise        numerous      meadows        enlarging
## 425      edible    almond         several        woods         tapering
## 426      edible    almond        solitary        paths        enlarging
## 427      edible    almond        numerous      meadows        enlarging
## 428      edible      none        abundant      grasses         tapering
## 429      edible      none         several        urban        enlarging
## 430      edible    almond       scattered      grasses        enlarging
## 431      edible     anise        solitary      grasses        enlarging
## 432      edible     anise       scattered      grasses        enlarging
## 433      edible     anise       scattered      grasses        enlarging
## 434      edible     anise         several        woods         tapering
## 435      edible    almond        numerous      meadows        enlarging
## 436      edible    almond         several        woods         tapering
## 437      edible     anise        numerous      meadows        enlarging
## 438      edible     anise        numerous      meadows        enlarging
## 439      edible    almond        solitary        paths        enlarging
## 440      edible     anise       scattered      meadows        enlarging
## 441      edible     anise       scattered      meadows        enlarging
## 442      edible    almond        solitary        paths        enlarging
## 443      edible     anise        numerous      meadows        enlarging
## 444      edible     anise        numerous      meadows        enlarging
## 445      edible     anise       scattered      grasses        enlarging
## 446      edible     anise        numerous      grasses        enlarging
## 447      edible     anise       scattered      grasses        enlarging
## 448      edible     anise       scattered      meadows        enlarging
## 449      edible      none        solitary        woods         tapering
## 450      edible     anise       scattered      meadows        enlarging
## 451      edible     anise        numerous      grasses        enlarging
## 452      edible     anise        numerous      meadows        enlarging
## 453      edible     anise         several        woods         tapering
## 454      edible     anise        numerous      meadows        enlarging
## 455      edible      none        abundant      grasses         tapering
## 456      edible    almond        numerous      grasses        enlarging
## 457      edible     anise       scattered      meadows        enlarging
## 458      edible    almond        solitary        paths        enlarging
## 459      edible    almond        solitary        paths        enlarging
## 460      edible    almond       scattered      meadows        enlarging
## 461      edible     anise       scattered      grasses        enlarging
## 462      edible    almond       scattered      grasses        enlarging
## 463      edible    almond        numerous      meadows        enlarging
## 464      edible      none         several        urban        enlarging
## 465      edible    almond        solitary      grasses        enlarging
## 466      edible    almond        numerous      meadows        enlarging
## 467      edible     anise        numerous      grasses        enlarging
## 468      edible     anise        numerous      grasses        enlarging
## 469      edible    almond       scattered        paths        enlarging
## 470      edible     anise        numerous      grasses        enlarging
## 471      edible    almond        numerous      meadows        enlarging
## 472      edible    almond         several        woods         tapering
## 473      edible      none        solitary        urban        enlarging
## 474      edible     anise         several        woods         tapering
## 475      edible      none        solitary        urban        enlarging
## 476      edible      none        solitary        urban        enlarging
## 477      edible    almond        numerous      grasses        enlarging
## 478      edible    almond         several        woods         tapering
## 479      edible     anise       scattered      meadows        enlarging
## 480      edible    almond       scattered      meadows        enlarging
## 481      edible     anise       scattered      grasses        enlarging
## 482      edible     anise         several        woods         tapering
## 483      edible      none        solitary        urban        enlarging
## 484      edible    almond         several        woods         tapering
## 485      edible    almond        solitary      grasses        enlarging
## 486      edible     anise       scattered      meadows        enlarging
## 487      edible      none        solitary        urban        enlarging
## 488      edible     anise       scattered        paths        enlarging
## 489      edible    almond       scattered        paths        enlarging
## 490      edible    almond         several        woods         tapering
## 491   poisonous   pungent       scattered      grasses        enlarging
## 492   poisonous   pungent         several        urban        enlarging
## 493      edible     anise       scattered        paths        enlarging
## 494      edible    almond       scattered      grasses        enlarging
## 495      edible    almond        numerous      meadows        enlarging
## 496      edible      none        abundant      grasses         tapering
## 497      edible    almond       scattered      grasses        enlarging
## 498      edible    almond       scattered      grasses        enlarging
## 499      edible     anise        numerous      meadows        enlarging
## 500      edible    almond        numerous      grasses        enlarging
## 501      edible    almond        numerous      grasses        enlarging
## 502      edible     anise        numerous      meadows        enlarging
## 503      edible    almond       scattered      meadows        enlarging
## 504      edible    almond       scattered      grasses        enlarging
## 505   poisonous   pungent         several      grasses        enlarging
## 506      edible      none       scattered      grasses         tapering
## 507      edible      none        abundant      grasses         tapering
## 508      edible    almond         several        woods         tapering
## 509      edible      none         several        urban        enlarging
## 510      edible      none        solitary        urban        enlarging
## 511      edible    almond       scattered      grasses        enlarging
## 512      edible    almond         several        woods         tapering
## 513      edible      none         several        urban        enlarging
## 514      edible      none         several        urban        enlarging
## 515      edible      none        abundant      grasses         tapering
## 516      edible     anise        solitary        paths        enlarging
## 517      edible    almond        numerous      grasses        enlarging
## 518      edible     anise       scattered      grasses        enlarging
## 519      edible    almond        numerous      grasses        enlarging
## 520      edible     anise        numerous      meadows        enlarging
## 521      edible     anise       scattered      grasses        enlarging
## 522      edible    almond        solitary        paths        enlarging
## 523   poisonous   pungent       scattered        urban        enlarging
## 524      edible      none        solitary        urban        enlarging
## 525      edible     anise       scattered      grasses        enlarging
## 526      edible    almond       scattered        paths        enlarging
## 527      edible    almond       scattered      meadows        enlarging
## 528      edible      none        solitary        urban        enlarging
## 529      edible    almond        solitary        paths        enlarging
## 530      edible    almond        solitary        paths        enlarging
## 531      edible    almond       scattered      grasses        enlarging
## 532   poisonous   pungent       scattered      grasses        enlarging
## 533      edible     anise        solitary        paths        enlarging
## 534   poisonous   pungent       scattered      grasses        enlarging
## 535      edible      none       scattered      grasses         tapering
## 536      edible    almond       scattered      meadows        enlarging
## 537      edible      none         several        urban        enlarging
## 538      edible     anise       scattered      meadows        enlarging
## 539      edible    almond         several        woods         tapering
## 540      edible    almond       scattered      meadows        enlarging
## 541      edible      none       scattered      grasses         tapering
## 542   poisonous   pungent       scattered      grasses        enlarging
## 543      edible    almond       scattered      grasses        enlarging
## 544      edible      none        abundant      grasses         tapering
## 545      edible    almond       scattered      meadows        enlarging
## 546      edible     anise       scattered      meadows        enlarging
## 547      edible      none         several        urban        enlarging
## 548      edible     anise         several        woods         tapering
## 549      edible    almond        numerous      meadows        enlarging
## 550      edible      none        solitary        urban        enlarging
## 551      edible      none       scattered      grasses         tapering
## 552      edible     anise       scattered        paths        enlarging
## 553      edible     anise         several        woods         tapering
## 554      edible     anise       scattered      grasses        enlarging
## 555      edible    almond        solitary        paths        enlarging
## 556   poisonous   pungent         several        urban        enlarging
## 557      edible     anise         several        woods         tapering
## 558      edible     anise        numerous      grasses        enlarging
## 559      edible    almond        numerous      meadows        enlarging
## 560      edible    almond       scattered      grasses        enlarging
## 561      edible    almond         several        woods         tapering
## 562      edible    almond         several        woods         tapering
## 563      edible      none       scattered      grasses         tapering
## 564      edible    almond       scattered      meadows        enlarging
## 565   poisonous   pungent         several      grasses        enlarging
## 566      edible    almond        numerous      grasses        enlarging
## 567      edible      none       scattered      grasses         tapering
## 568   poisonous   pungent       scattered      grasses        enlarging
## 569      edible    almond        numerous      meadows        enlarging
## 570      edible    almond        numerous      meadows        enlarging
## 571      edible     anise         several        woods         tapering
## 572      edible    almond        numerous      grasses        enlarging
## 573      edible     anise        numerous      grasses        enlarging
## 574      edible    almond        solitary      grasses        enlarging
## 575      edible     anise       scattered      grasses        enlarging
## 576      edible      none         several        urban        enlarging
## 577      edible     anise       scattered      grasses        enlarging
## 578      edible     anise        solitary      grasses        enlarging
## 579   poisonous   pungent       scattered      grasses        enlarging
## 580      edible    almond        numerous      meadows        enlarging
## 581      edible    almond       scattered      meadows        enlarging
## 582      edible     anise        numerous      grasses        enlarging
## 583      edible    almond        solitary      grasses        enlarging
## 584      edible    almond       scattered      grasses        enlarging
## 585      edible    almond       scattered      meadows        enlarging
## 586      edible      none         several        urban        enlarging
## 587      edible      none        solitary        urban        enlarging
## 588      edible      none         several        urban        enlarging
## 589      edible    almond        numerous      meadows        enlarging
## 590   poisonous   pungent       scattered        urban        enlarging
## 591      edible      none       scattered      grasses         tapering
## 592      edible     anise       scattered      grasses        enlarging
## 593   poisonous   pungent       scattered      grasses        enlarging
## 594      edible    almond        numerous      meadows        enlarging
## 595   poisonous   pungent         several        urban        enlarging
## 596      edible     anise        numerous      meadows        enlarging
## 597      edible     anise       scattered      meadows        enlarging
## 598   poisonous   pungent       scattered      grasses        enlarging
## 599   poisonous   pungent       scattered        urban        enlarging
## 600      edible      none        abundant      grasses         tapering
## 601      edible     anise        solitary      grasses        enlarging
## 602      edible      none        abundant      grasses         tapering
## 603      edible     anise       scattered        paths        enlarging
## 604      edible     anise       scattered      meadows        enlarging
## 605      edible    almond        numerous      grasses        enlarging
## 606      edible      none       scattered      grasses         tapering
## 607      edible    almond        solitary      grasses        enlarging
## 608      edible     anise       scattered      meadows        enlarging
## 609      edible      none         several        urban        enlarging
## 610      edible      none        abundant      grasses         tapering
## 611      edible      none       scattered      grasses         tapering
## 612      edible      none        abundant      grasses         tapering
## 613   poisonous   pungent       scattered        urban        enlarging
## 614      edible     anise       scattered      grasses        enlarging
## 615      edible     anise       scattered      grasses        enlarging
## 616      edible      none        abundant      grasses         tapering
## 617      edible     anise       scattered      grasses        enlarging
## 618      edible    almond        numerous      meadows        enlarging
## 619      edible      none        solitary        urban        enlarging
## 620      edible     anise       scattered      grasses        enlarging
## 621      edible     anise        numerous      grasses        enlarging
## 622      edible     anise         several        woods         tapering
## 623      edible    almond       scattered        paths        enlarging
## 624      edible      none        solitary        urban        enlarging
## 625      edible     anise       scattered      meadows        enlarging
## 626      edible     anise         several        woods         tapering
## 627      edible      none        solitary        urban        enlarging
## 628      edible    almond       scattered      grasses        enlarging
## 629      edible    almond        numerous      grasses        enlarging
## 630      edible      none       scattered      grasses         tapering
## 631      edible    almond        numerous      meadows        enlarging
## 632      edible      none         several        woods         tapering
## 633      edible     anise       scattered      grasses        enlarging
## 634      edible    almond       scattered      grasses        enlarging
## 635      edible    almond       scattered      meadows        enlarging
## 636      edible    almond       scattered      grasses        enlarging
## 637      edible     anise        numerous      meadows        enlarging
## 638      edible      none       scattered      grasses         tapering
## 639      edible    almond       scattered      meadows        enlarging
## 640      edible     anise        numerous      meadows        enlarging
## 641      edible    almond        solitary      grasses        enlarging
## 642      edible     anise       scattered        paths        enlarging
## 643      edible    almond        solitary      grasses        enlarging
## 644      edible     anise       scattered        paths        enlarging
## 645      edible     anise         several        woods         tapering
## 646      edible    almond       scattered      meadows        enlarging
## 647      edible     anise        numerous      meadows        enlarging
## 648      edible    almond       scattered      grasses        enlarging
## 649      edible     anise         several        woods         tapering
## 650      edible    almond       scattered      grasses        enlarging
## 651      edible     anise        numerous      meadows        enlarging
## 652      edible    almond        solitary      grasses        enlarging
## 653   poisonous   pungent       scattered      grasses        enlarging
## 654   poisonous   pungent         several        urban        enlarging
## 655      edible     anise       scattered      grasses        enlarging
## 656      edible      none       scattered      grasses         tapering
## 657      edible    almond        numerous      grasses        enlarging
## 658      edible     anise        solitary        paths        enlarging
## 659      edible      none        solitary        urban        enlarging
## 660      edible    almond       scattered      grasses        enlarging
## 661      edible     anise       scattered      meadows        enlarging
## 662   poisonous   pungent       scattered      grasses        enlarging
## 663   poisonous   pungent       scattered      grasses        enlarging
## 664      edible     anise       scattered      grasses        enlarging
## 665      edible    almond        numerous      meadows        enlarging
## 666      edible    almond       scattered      grasses        enlarging
## 667      edible     anise        solitary      grasses        enlarging
## 668      edible     anise        solitary        paths        enlarging
## 669      edible    almond        numerous      grasses        enlarging
## 670      edible    almond       scattered      grasses        enlarging
## 671      edible      none         several        urban        enlarging
## 672      edible      none        abundant      grasses         tapering
## 673      edible     anise         several        woods         tapering
## 674      edible     anise       scattered        paths        enlarging
## 675      edible      none        solitary        urban        enlarging
## 676      edible      none         several        urban        enlarging
## 677      edible     anise        solitary      grasses        enlarging
## 678      edible     anise        solitary        paths        enlarging
## 679      edible    almond       scattered      meadows        enlarging
## 680      edible     anise         several        woods         tapering
## 681      edible    almond        numerous      meadows        enlarging
## 682      edible    almond         several        woods         tapering
## 683      edible    almond        numerous      grasses        enlarging
## 684      edible      none         several        woods         tapering
## 685      edible    almond        numerous      meadows        enlarging
## 686      edible      none         several        urban        enlarging
## 687      edible    almond       scattered      meadows        enlarging
## 688      edible     anise        numerous      meadows        enlarging
## 689      edible    almond       scattered      grasses        enlarging
## 690      edible    almond       scattered      grasses        enlarging
## 691      edible     anise       scattered      grasses        enlarging
## 692      edible    almond       scattered        paths        enlarging
## 693      edible      none        abundant      grasses         tapering
## 694   poisonous   pungent       scattered      grasses        enlarging
## 695      edible    almond       scattered      grasses        enlarging
## 696      edible    almond       scattered      meadows        enlarging
## 697   poisonous   pungent         several      grasses        enlarging
## 698   poisonous   pungent         several        urban        enlarging
## 699      edible      none        abundant      grasses         tapering
## 700   poisonous   pungent       scattered      grasses        enlarging
## 701      edible      none        abundant      grasses         tapering
## 702      edible     anise       scattered        paths        enlarging
## 703      edible     anise        numerous      meadows        enlarging
## 704      edible     anise       scattered        paths        enlarging
## 705      edible     anise        solitary        paths        enlarging
## 706      edible     anise        numerous      meadows        enlarging
## 707      edible      none        solitary        urban        enlarging
## 708      edible    almond        numerous      meadows        enlarging
## 709      edible    almond        numerous      meadows        enlarging
## 710      edible    almond       scattered        paths        enlarging
## 711      edible      none        abundant      grasses         tapering
## 712      edible     anise       scattered      meadows        enlarging
## 713      edible     anise        numerous      grasses        enlarging
## 714      edible     anise       scattered      grasses        enlarging
## 715      edible    almond       scattered      meadows        enlarging
## 716      edible     anise       scattered      meadows        enlarging
## 717      edible    almond       scattered        paths        enlarging
## 718      edible    almond       scattered      grasses        enlarging
## 719      edible      none         several        urban        enlarging
## 720      edible    almond       scattered      grasses        enlarging
## 721      edible    almond        numerous      grasses        enlarging
## 722      edible     anise         several        woods         tapering
## 723      edible      none        abundant      grasses         tapering
## 724      edible    almond       scattered      grasses        enlarging
## 725   poisonous   pungent         several      grasses        enlarging
## 726      edible     anise        numerous      grasses        enlarging
## 727      edible      none       scattered      grasses         tapering
## 728      edible    almond       scattered      meadows        enlarging
## 729      edible     anise       scattered      meadows        enlarging
## 730      edible     anise        solitary      grasses        enlarging
## 731      edible      none       scattered      grasses         tapering
## 732   poisonous   pungent       scattered      grasses        enlarging
## 733   poisonous   pungent       scattered        urban        enlarging
## 734      edible     anise        numerous      grasses        enlarging
## 735      edible    almond       scattered      grasses        enlarging
## 736      edible    almond         several        woods         tapering
## 737   poisonous   pungent       scattered        urban        enlarging
## 738      edible     anise       scattered      grasses        enlarging
## 739      edible      none         several        urban        enlarging
## 740      edible      none         several        urban        enlarging
## 741      edible    almond       scattered      meadows        enlarging
## 742      edible    almond       scattered      grasses        enlarging
## 743      edible    almond        numerous      meadows        enlarging
## 744      edible     anise       scattered        paths        enlarging
## 745      edible     anise        numerous      grasses        enlarging
## 746      edible     anise       scattered      grasses        enlarging
## 747      edible    almond       scattered      meadows        enlarging
## 748   poisonous   pungent         several        urban        enlarging
## 749      edible    almond         several        woods         tapering
## 750      edible    almond       scattered        paths        enlarging
## 751      edible     anise        numerous      grasses        enlarging
## 752      edible    almond         several        woods         tapering
## 753      edible     anise       scattered      grasses        enlarging
## 754      edible    almond        numerous      meadows        enlarging
## 755      edible    almond        numerous      grasses        enlarging
## 756      edible     anise        solitary      grasses        enlarging
## 757      edible      none        abundant      grasses         tapering
## 758      edible    almond        numerous      meadows        enlarging
## 759      edible    almond        solitary        paths        enlarging
## 760      edible     anise        numerous      grasses        enlarging
## 761      edible     anise        solitary      grasses        enlarging
## 762      edible     anise        numerous      grasses        enlarging
## 763      edible      none         several        urban        enlarging
## 764      edible     anise       scattered        paths        enlarging
## 765      edible      none        abundant      grasses         tapering
## 766      edible     anise         several        woods         tapering
## 767      edible      none        solitary        urban        enlarging
## 768      edible    almond       scattered      meadows        enlarging
## 769      edible    almond        numerous      meadows        enlarging
## 770      edible    almond        numerous      grasses        enlarging
## 771      edible     anise       scattered      meadows        enlarging
## 772      edible    almond        numerous      meadows        enlarging
## 773      edible    almond         several        woods         tapering
## 774      edible      none        abundant      grasses         tapering
## 775      edible    almond       scattered      grasses        enlarging
## 776   poisonous   pungent       scattered        urban        enlarging
## 777      edible    almond        solitary      grasses        enlarging
## 778      edible     anise        numerous      grasses        enlarging
## 779      edible     anise        numerous      meadows        enlarging
## 780      edible    almond       scattered      meadows        enlarging
## 781      edible      none        solitary        urban        enlarging
## 782      edible     anise       scattered      meadows        enlarging
## 783      edible     anise       scattered      meadows        enlarging
## 784      edible    almond        numerous      grasses        enlarging
## 785   poisonous   pungent         several      grasses        enlarging
## 786      edible      none         several        urban        enlarging
## 787      edible     anise        numerous      grasses        enlarging
## 788   poisonous   pungent       scattered      grasses        enlarging
## 789      edible     anise        solitary        paths        enlarging
## 790      edible     anise       scattered      grasses        enlarging
## 791      edible     anise        solitary        paths        enlarging
## 792      edible    almond        numerous      grasses        enlarging
## 793      edible    almond        numerous      grasses        enlarging
## 794   poisonous   pungent         several      grasses        enlarging
## 795   poisonous   pungent       scattered        urban        enlarging
## 796      edible     anise        numerous      grasses        enlarging
## 797      edible      none       scattered      grasses         tapering
## 798   poisonous   pungent         several      grasses        enlarging
## 799      edible     anise       scattered        paths        enlarging
## 800      edible    almond        numerous      meadows        enlarging
## 801      edible    almond        numerous      grasses        enlarging
## 802   poisonous   pungent         several        urban        enlarging
## 803      edible     anise        numerous      grasses        enlarging
## 804      edible    almond        numerous      grasses        enlarging
## 805      edible     anise       scattered      grasses        enlarging
## 806      edible    almond       scattered      grasses        enlarging
## 807      edible    almond        solitary      grasses        enlarging
## 808      edible     anise       scattered      meadows        enlarging
## 809      edible     anise         several        woods         tapering
## 810      edible    almond        numerous      meadows        enlarging
## 811      edible    almond        numerous      meadows        enlarging
## 812   poisonous   pungent         several        urban        enlarging
## 813   poisonous   pungent         several      grasses        enlarging
## 814   poisonous   pungent         several        urban        enlarging
## 815      edible    almond       scattered      meadows        enlarging
## 816      edible    almond        solitary      grasses        enlarging
## 817      edible    almond        solitary      grasses        enlarging
## 818      edible    almond         several        woods         tapering
## 819      edible     anise        numerous      grasses        enlarging
## 820      edible     anise        numerous      meadows        enlarging
## 821      edible      none         several        urban        enlarging
## 822      edible    almond       scattered      meadows        enlarging
## 823      edible     anise       scattered      grasses        enlarging
## 824      edible    almond       scattered        paths        enlarging
## 825      edible     anise       scattered      meadows        enlarging
## 826      edible     anise         several        woods         tapering
## 827      edible    almond         several        woods         tapering
## 828      edible     anise       scattered      meadows        enlarging
## 829      edible     anise         several        woods         tapering
## 830      edible      none         several        urban        enlarging
## 831      edible    almond         several        woods         tapering
## 832      edible     anise        solitary      grasses        enlarging
## 833      edible     anise       scattered      grasses        enlarging
## 834      edible     anise        solitary        paths        enlarging
## 835   poisonous   pungent         several      grasses        enlarging
## 836      edible     anise       scattered      meadows        enlarging
## 837   poisonous   pungent       scattered        urban        enlarging
## 838      edible    almond       scattered      grasses        enlarging
## 839      edible    almond       scattered      grasses        enlarging
## 840      edible    almond         several        woods         tapering
## 841   poisonous   pungent         several      grasses        enlarging
## 842      edible    almond       scattered      grasses        enlarging
## 843      edible      none        solitary        urban        enlarging
## 844      edible    almond        numerous      grasses        enlarging
## 845      edible      none       scattered      grasses         tapering
## 846      edible    almond       scattered      meadows        enlarging
## 847      edible     anise       scattered      grasses        enlarging
## 848      edible     anise        numerous      meadows        enlarging
## 849      edible     anise         several        woods         tapering
## 850      edible     anise       scattered      grasses        enlarging
## 851      edible    almond       scattered      grasses        enlarging
## 852      edible      none        solitary        urban        enlarging
## 853      edible      none        abundant      grasses         tapering
## 854      edible      none         several        urban        enlarging
## 855      edible     anise       scattered        paths        enlarging
## 856      edible     anise         several        woods         tapering
## 857      edible    almond       scattered      grasses        enlarging
## 858      edible    almond        numerous      meadows        enlarging
## 859   poisonous   pungent         several      grasses        enlarging
## 860      edible     anise        solitary        paths        enlarging
## 861      edible    almond       scattered      grasses        enlarging
## 862      edible    almond       scattered      grasses        enlarging
## 863      edible    almond        numerous      grasses        enlarging
## 864      edible    almond       scattered      meadows        enlarging
## 865      edible     anise       scattered      grasses        enlarging
## 866      edible      none         several        urban        enlarging
## 867      edible     anise        solitary        paths        enlarging
## 868      edible      none        solitary        urban        enlarging
## 869      edible     anise        numerous      grasses        enlarging
## 870      edible    almond        solitary        paths        enlarging
## 871      edible     anise        numerous      grasses        enlarging
## 872      edible    almond       scattered      meadows        enlarging
## 873      edible      none         several        woods         tapering
## 874      edible    almond       scattered      meadows        enlarging
## 875      edible     anise       scattered        paths        enlarging
## 876      edible    almond        numerous      meadows        enlarging
## 877      edible     anise        numerous      grasses        enlarging
## 878      edible     anise        solitary      grasses        enlarging
## 879      edible     anise        numerous      grasses        enlarging
## 880      edible    almond         several        woods         tapering
## 881      edible      none       scattered      grasses         tapering
## 882      edible    almond        numerous      grasses        enlarging
## 883      edible     anise        numerous      grasses        enlarging
## 884      edible     anise       scattered      grasses        enlarging
## 885      edible    almond         several        woods         tapering
## 886      edible    almond       scattered      grasses        enlarging
## 887      edible    almond        solitary      grasses        enlarging
## 888      edible    almond        solitary        paths        enlarging
## 889      edible     anise        numerous      grasses        enlarging
## 890      edible      none        solitary        woods         tapering
## 891      edible     anise        solitary      grasses        enlarging
## 892      edible    almond        numerous      grasses        enlarging
## 893      edible    almond       scattered      meadows        enlarging
## 894      edible     anise       scattered      meadows        enlarging
## 895      edible     anise       scattered      grasses        enlarging
## 896      edible    almond        numerous      grasses        enlarging
## 897      edible     anise        numerous      meadows        enlarging
## 898      edible     anise       scattered      meadows        enlarging
## 899      edible     anise       scattered      grasses        enlarging
## 900      edible     anise        solitary        paths        enlarging
## 901      edible      none        abundant      grasses         tapering
## 902      edible      none       scattered      grasses         tapering
## 903      edible      none       scattered      grasses         tapering
## 904      edible     anise        numerous      meadows        enlarging
## 905      edible      none       scattered      grasses         tapering
## 906   poisonous   pungent       scattered      grasses        enlarging
## 907      edible      none       scattered      grasses         tapering
## 908   poisonous   pungent         several        urban        enlarging
## 909   poisonous   pungent         several      grasses        enlarging
## 910      edible     anise        numerous      grasses        enlarging
## 911      edible      none        abundant      grasses         tapering
## 912      edible     anise        numerous      grasses        enlarging
## 913      edible      none        abundant      grasses         tapering
## 914      edible      none       scattered      grasses         tapering
## 915      edible    almond        numerous      grasses        enlarging
## 916      edible     anise       scattered      meadows        enlarging
## 917      edible      none        solitary        woods         tapering
## 918      edible      none        abundant      grasses         tapering
## 919      edible      none       scattered      grasses         tapering
## 920      edible      none        abundant      grasses         tapering
## 921      edible      none        abundant      grasses         tapering
## 922      edible     anise        numerous      grasses        enlarging
## 923      edible     anise         several        woods         tapering
## 924      edible      none       scattered      grasses         tapering
## 925      edible      none        abundant      grasses         tapering
## 926      edible      none        abundant      grasses         tapering
## 927   poisonous   pungent       scattered        urban        enlarging
## 928      edible      none        solitary        urban        enlarging
## 929      edible    almond        numerous      meadows        enlarging
## 930      edible      none        abundant      grasses         tapering
## 931      edible      none       scattered      grasses         tapering
## 932   poisonous   pungent         several      grasses        enlarging
## 933      edible     anise       scattered      grasses        enlarging
## 934      edible      none        solitary        urban        enlarging
## 935      edible      none       scattered      grasses         tapering
## 936      edible    almond        numerous      meadows        enlarging
## 937      edible      none       scattered      grasses         tapering
## 938      edible      none        abundant      grasses         tapering
## 939      edible      none        solitary        woods         tapering
## 940      edible    almond        numerous      grasses        enlarging
## 941      edible      none       scattered      grasses         tapering
## 942   poisonous   pungent       scattered      grasses        enlarging
## 943      edible      none       scattered      grasses         tapering
## 944      edible      none         several        woods         tapering
## 945      edible      none        abundant      grasses         tapering
## 946      edible      none       scattered      grasses         tapering
## 947      edible     anise       scattered      grasses        enlarging
## 948      edible      none        abundant      grasses         tapering
## 949   poisonous   pungent         several        urban        enlarging
## 950   poisonous   pungent       scattered        urban        enlarging
## 951      edible     anise       scattered      grasses        enlarging
## 952      edible      none        abundant      grasses         tapering
## 953      edible      none        abundant      grasses         tapering
## 954      edible      none       scattered      grasses         tapering
## 955      edible     anise       scattered      meadows        enlarging
## 956   poisonous   pungent         several        urban        enlarging
## 957      edible      none         several        woods         tapering
## 958      edible     anise         several        woods         tapering
## 959      edible     anise        numerous      meadows        enlarging
## 960      edible      none        abundant      grasses         tapering
## 961      edible      none        abundant      grasses         tapering
## 962      edible      none         several        woods         tapering
## 963      edible      none        solitary        woods         tapering
## 964      edible      none       scattered      grasses         tapering
## 965      edible      none       scattered      grasses         tapering
## 966   poisonous   pungent       scattered      grasses        enlarging
## 967      edible      none        solitary        woods         tapering
## 968      edible      none       scattered      grasses         tapering
## 969      edible      none       scattered      grasses         tapering
## 970      edible      none       scattered      grasses         tapering
## 971      edible      none         several        woods         tapering
## 972      edible      none         several        woods         tapering
## 973      edible      none       scattered      grasses         tapering
## 974      edible      none        solitary        woods         tapering
## 975      edible      none       scattered      grasses         tapering
## 976      edible     anise        numerous      grasses        enlarging
## 977      edible      none        solitary        woods         tapering
## 978      edible     anise       scattered      grasses        enlarging
## 979      edible      none        abundant      grasses         tapering
## 980      edible      none        solitary        woods         tapering
## 981      edible     anise       scattered      meadows        enlarging
## 982      edible      none       scattered      grasses         tapering
## 983      edible      none       scattered      grasses         tapering
## 984   poisonous   pungent       scattered        urban        enlarging
## 985      edible      none       scattered      grasses         tapering
## 986      edible      none        abundant      grasses         tapering
## 987      edible      none        abundant      grasses         tapering
## 988      edible      none        abundant      grasses         tapering
## 989      edible     anise        numerous      grasses        enlarging
## 990      edible     anise        numerous      meadows        enlarging
## 991      edible      none        abundant      grasses         tapering
## 992      edible      none       scattered      grasses         tapering
## 993      edible      none         several        urban        enlarging
## 994      edible      none       scattered      grasses         tapering
## 995      edible      none        abundant      grasses         tapering
## 996      edible     anise       scattered      meadows        enlarging
## 997      edible    almond         several        woods         tapering
## 998      edible     anise        numerous      meadows        enlarging
## 999   poisonous   pungent         several        urban        enlarging
## 1000     edible      none        solitary        woods         tapering
## 1001     edible     anise        solitary      grasses        enlarging
## 1002     edible      none       scattered      grasses         tapering
## 1003  poisonous   pungent         several      grasses        enlarging
## 1004     edible     anise        solitary      grasses        enlarging
## 1005     edible      none        abundant      grasses         tapering
## 1006     edible      none        abundant      grasses         tapering
## 1007     edible      none       scattered      grasses         tapering
## 1008     edible      none        abundant      grasses         tapering
## 1009     edible     anise       scattered      grasses        enlarging
## 1010     edible    almond       scattered      meadows        enlarging
## 1011     edible      none       scattered      grasses         tapering
## 1012     edible    almond       scattered        paths        enlarging
## 1013     edible      none       scattered      grasses         tapering
## 1014     edible      none       scattered      grasses         tapering
## 1015     edible    almond         several        woods         tapering
## 1016     edible     anise       scattered      grasses        enlarging
## 1017     edible      none        solitary        woods         tapering
## 1018  poisonous   pungent       scattered      grasses        enlarging
## 1019     edible      none         several        woods         tapering
## 1020     edible      none        abundant      grasses         tapering
## 1021     edible    almond        numerous      meadows        enlarging
## 1022     edible    almond        numerous      grasses        enlarging
## 1023     edible    almond       scattered      meadows        enlarging
## 1024  poisonous   pungent         several        urban        enlarging
## 1025  poisonous   pungent       scattered      grasses        enlarging
## 1026     edible      none         several        urban        enlarging
## 1027     edible     anise         several        woods         tapering
## 1028     edible     anise        numerous      meadows        enlarging
## 1029     edible      none        abundant      grasses         tapering
## 1030     edible      none        solitary        woods         tapering
## 1031  poisonous   pungent         several      grasses        enlarging
## 1032     edible      none       scattered      grasses         tapering
## 1033     edible      none       scattered      grasses         tapering
## 1034     edible      none       scattered      grasses         tapering
## 1035     edible      none        abundant      grasses         tapering
## 1036     edible    almond       scattered      meadows        enlarging
## 1037     edible    almond         several        woods         tapering
## 1038     edible      none        solitary        urban        enlarging
## 1039  poisonous   pungent       scattered        urban        enlarging
## 1040     edible    almond        solitary        paths        enlarging
## 1041     edible    almond       scattered        paths        enlarging
## 1042     edible      none        abundant      grasses         tapering
## 1043     edible      none         several        woods         tapering
## 1044     edible      none        abundant      grasses         tapering
## 1045     edible    almond       scattered      grasses        enlarging
## 1046     edible      none       scattered      grasses         tapering
## 1047  poisonous   pungent       scattered        urban        enlarging
## 1048     edible      none         several        woods         tapering
## 1049     edible      none        abundant      grasses         tapering
## 1050     edible      none         several        woods         tapering
## 1051     edible      none        solitary        woods         tapering
## 1052     edible      none        abundant      grasses         tapering
## 1053     edible     anise       scattered        paths        enlarging
## 1054     edible      none       scattered      grasses         tapering
## 1055     edible     anise       scattered      grasses        enlarging
## 1056     edible     anise         several        woods         tapering
## 1057     edible      none       scattered      grasses         tapering
## 1058     edible     anise        numerous      grasses        enlarging
## 1059     edible      none       scattered      grasses         tapering
## 1060     edible      none        abundant      grasses         tapering
## 1061     edible     anise         several        woods         tapering
## 1062     edible      none       scattered      grasses         tapering
## 1063     edible      none       scattered      grasses         tapering
## 1064  poisonous   pungent       scattered        urban        enlarging
## 1065     edible     anise         several        woods         tapering
## 1066     edible    almond       scattered      grasses        enlarging
## 1067     edible      none        abundant      grasses         tapering
## 1068     edible      none         several        woods         tapering
## 1069     edible     anise       scattered      grasses        enlarging
## 1070     edible      none        abundant      grasses         tapering
## 1071  poisonous   pungent         several      grasses        enlarging
## 1072     edible    almond       scattered      grasses        enlarging
## 1073     edible      none        solitary        woods         tapering
## 1074     edible     anise       scattered        paths        enlarging
## 1075     edible      none        abundant      grasses         tapering
## 1076     edible      none        solitary        urban        enlarging
## 1077  poisonous   pungent         several      grasses        enlarging
## 1078     edible      none       scattered      grasses         tapering
## 1079     edible     anise       scattered        paths        enlarging
## 1080     edible      none        abundant      grasses         tapering
## 1081  poisonous   pungent         several        urban        enlarging
## 1082     edible     anise        numerous      meadows        enlarging
## 1083     edible      none       scattered      grasses         tapering
## 1084     edible     anise        numerous      grasses        enlarging
## 1085     edible      none       scattered      grasses         tapering
## 1086     edible     anise        numerous      meadows        enlarging
## 1087     edible     anise        numerous      meadows        enlarging
## 1088  poisonous   pungent         several      grasses        enlarging
## 1089     edible     anise       scattered      grasses        enlarging
## 1090     edible      none        solitary        urban        enlarging
## 1091     edible    almond        solitary      grasses        enlarging
## 1092     edible      none        abundant      grasses         tapering
## 1093     edible     anise         several        woods         tapering
## 1094     edible      none        abundant      grasses         tapering
## 1095  poisonous   pungent         several        urban        enlarging
## 1096     edible      none        abundant      grasses         tapering
## 1097     edible      none        abundant      grasses         tapering
## 1098     edible      none       scattered      grasses         tapering
## 1099  poisonous   pungent       scattered      grasses        enlarging
## 1100     edible      none        abundant      grasses         tapering
## 1101     edible      none       scattered      grasses         tapering
## 1102     edible      none       scattered      grasses         tapering
## 1103  poisonous   pungent       scattered      grasses        enlarging
## 1104     edible      none        abundant      grasses         tapering
## 1105     edible      none        abundant      grasses         tapering
## 1106  poisonous   pungent         several        urban        enlarging
## 1107     edible      none        abundant      grasses         tapering
## 1108     edible     anise        numerous      grasses        enlarging
## 1109     edible      none        abundant      grasses         tapering
## 1110     edible      none        abundant      grasses         tapering
## 1111  poisonous   pungent       scattered      grasses        enlarging
## 1112     edible    almond       scattered      grasses        enlarging
## 1113     edible      none        abundant      grasses         tapering
## 1114     edible     anise       scattered      grasses        enlarging
## 1115     edible      none       scattered      grasses         tapering
## 1116     edible      none       scattered      grasses         tapering
## 1117     edible      none       scattered      grasses         tapering
## 1118     edible      none       scattered      grasses         tapering
## 1119     edible      none       scattered      grasses         tapering
## 1120     edible      none       scattered      grasses         tapering
## 1121     edible      none        abundant      grasses         tapering
## 1122     edible      none       scattered      grasses         tapering
## 1123     edible      none         several        woods         tapering
## 1124     edible    almond         several        woods         tapering
## 1125     edible      none       scattered      grasses         tapering
## 1126     edible      none        abundant      grasses         tapering
## 1127     edible    almond        numerous      grasses        enlarging
## 1128     edible      none        abundant      grasses         tapering
## 1129     edible      none        abundant      grasses         tapering
## 1130  poisonous   pungent         several        urban        enlarging
## 1131     edible      none        abundant      grasses         tapering
## 1132  poisonous   pungent       scattered      grasses        enlarging
## 1133     edible      none       scattered      grasses         tapering
## 1134     edible    almond        numerous      grasses        enlarging
## 1135     edible      none       scattered      grasses         tapering
## 1136     edible      none        solitary        woods         tapering
## 1137     edible     anise       scattered      grasses        enlarging
## 1138     edible      none        abundant      grasses         tapering
## 1139     edible      none        abundant      grasses         tapering
## 1140     edible      none        abundant      grasses         tapering
## 1141     edible      none         several        woods         tapering
## 1142     edible      none       scattered      grasses         tapering
## 1143     edible      none        abundant      grasses         tapering
## 1144     edible      none        abundant      grasses         tapering
## 1145     edible      none       scattered      grasses         tapering
## 1146     edible      none       scattered      grasses         tapering
## 1147     edible      none        abundant      grasses         tapering
## 1148     edible      none        abundant      grasses         tapering
## 1149     edible      none        abundant      grasses         tapering
## 1150     edible      none        abundant      grasses         tapering
## 1151     edible    almond        solitary        paths        enlarging
## 1152  poisonous   pungent         several      grasses        enlarging
## 1153     edible      none        abundant      grasses         tapering
## 1154  poisonous   pungent         several      grasses        enlarging
## 1155     edible    almond       scattered      meadows        enlarging
## 1156     edible      none       scattered      grasses         tapering
## 1157     edible      none        abundant      grasses         tapering
## 1158     edible      none       scattered      grasses         tapering
## 1159     edible      none       scattered      grasses         tapering
## 1160     edible    almond        numerous      grasses        enlarging
## 1161     edible      none       scattered      grasses         tapering
## 1162     edible      none         several        woods         tapering
## 1163     edible    almond       scattered        paths        enlarging
## 1164     edible      none       scattered      grasses         tapering
## 1165     edible    almond        numerous      meadows        enlarging
## 1166  poisonous   pungent         several      grasses        enlarging
## 1167     edible      none        solitary        woods         tapering
## 1168     edible      none       scattered      grasses         tapering
## 1169     edible    almond        numerous      meadows        enlarging
## 1170     edible      none       scattered      grasses         tapering
## 1171     edible      none         several        woods         tapering
## 1172     edible      none        abundant      grasses         tapering
## 1173     edible      none         several        urban        enlarging
## 1174     edible      none         several        urban        enlarging
## 1175     edible      none        solitary        urban        enlarging
## 1176     edible     anise       scattered      meadows        enlarging
## 1177     edible      none         several        urban        enlarging
## 1178     edible      none        abundant      grasses         tapering
## 1179     edible    almond       scattered        paths        enlarging
## 1180     edible     anise        solitary        paths        enlarging
## 1181     edible     anise        solitary      grasses        enlarging
## 1182     edible      none        abundant      grasses         tapering
## 1183     edible    almond        numerous      grasses        enlarging
## 1184     edible    almond       scattered      grasses        enlarging
## 1185     edible      none        abundant      grasses         tapering
## 1186     edible      none        abundant      grasses         tapering
## 1187  poisonous   pungent         several        urban        enlarging
## 1188     edible     anise       scattered      grasses        enlarging
## 1189     edible      none       scattered      grasses         tapering
## 1190     edible      none       scattered      grasses         tapering
## 1191     edible     anise       scattered      meadows        enlarging
## 1192     edible      none         several        woods         tapering
## 1193     edible     anise       scattered        paths        enlarging
## 1194     edible    almond        numerous      grasses        enlarging
## 1195  poisonous   pungent       scattered      grasses        enlarging
## 1196     edible      none       scattered      grasses         tapering
## 1197     edible    almond        numerous      meadows        enlarging
## 1198     edible     anise        numerous      grasses        enlarging
## 1199     edible     anise       scattered      meadows        enlarging
## 1200     edible     anise        numerous      grasses        enlarging
## 1201     edible    almond        numerous      grasses        enlarging
## 1202     edible    almond        numerous      grasses        enlarging
## 1203     edible      none       scattered      grasses         tapering
## 1204  poisonous   pungent       scattered      grasses        enlarging
## 1205     edible      none        abundant      grasses         tapering
## 1206     edible      none        abundant      grasses         tapering
## 1207  poisonous   pungent       scattered        urban        enlarging
## 1208     edible      none        abundant      grasses         tapering
## 1209     edible      none       scattered      grasses         tapering
## 1210     edible      none        abundant      grasses         tapering
## 1211     edible      none        abundant      grasses         tapering
## 1212     edible    almond        solitary      grasses        enlarging
## 1213     edible      none        abundant      grasses         tapering
## 1214     edible      none        abundant      grasses         tapering
## 1215  poisonous   pungent         several      grasses        enlarging
## 1216     edible      none        abundant      grasses         tapering
## 1217     edible      none       scattered      grasses         tapering
## 1218     edible      none        abundant      grasses         tapering
## 1219     edible      none       scattered      grasses         tapering
## 1220     edible    almond       scattered      grasses        enlarging
## 1221     edible      none       scattered      grasses         tapering
## 1222     edible      none        abundant      grasses         tapering
## 1223     edible      none       scattered      grasses         tapering
## 1224     edible      none        abundant      grasses         tapering
## 1225     edible      none       scattered      grasses         tapering
## 1226     edible      none         several        woods         tapering
## 1227     edible      none        abundant      grasses         tapering
## 1228  poisonous   pungent         several      grasses        enlarging
## 1229     edible      none        solitary        woods         tapering
## 1230     edible      none       scattered      grasses         tapering
## 1231  poisonous   pungent       scattered      grasses        enlarging
## 1232     edible      none        abundant      grasses         tapering
## 1233     edible      none        abundant      grasses         tapering
## 1234     edible      none        abundant      grasses         tapering
## 1235     edible      none        abundant      grasses         tapering
## 1236     edible      none        abundant      grasses         tapering
## 1237     edible      none       scattered      grasses         tapering
## 1238     edible      none       scattered      grasses         tapering
## 1239     edible      none       scattered      grasses         tapering
## 1240  poisonous   pungent         several        urban        enlarging
## 1241     edible      none        abundant      grasses         tapering
## 1242  poisonous   pungent       scattered      grasses        enlarging
## 1243  poisonous   pungent       scattered        urban        enlarging
## 1244     edible      none       scattered      grasses         tapering
## 1245     edible      none        abundant      grasses         tapering
## 1246     edible      none        abundant      grasses         tapering
## 1247     edible      none        abundant      grasses         tapering
## 1248     edible      none        abundant      grasses         tapering
## 1249     edible      none        abundant      grasses         tapering
## 1250     edible      none        solitary        woods         tapering
## 1251     edible      none         several        woods         tapering
## 1252     edible      none        abundant      grasses         tapering
## 1253  poisonous   pungent         several      grasses        enlarging
## 1254  poisonous   pungent       scattered      grasses        enlarging
## 1255     edible      none        abundant      grasses         tapering
## 1256  poisonous   pungent       scattered      grasses        enlarging
## 1257     edible      none       scattered      grasses         tapering
## 1258     edible      none        abundant      grasses         tapering
## 1259  poisonous   pungent         several      grasses        enlarging
## 1260  poisonous   pungent         several      grasses        enlarging
## 1261  poisonous   pungent         several      grasses        enlarging
## 1262  poisonous   pungent       scattered      grasses        enlarging
## 1263     edible      none        abundant      grasses         tapering
## 1264     edible      none         several        woods         tapering
## 1265     edible      none        abundant      grasses         tapering
## 1266     edible      none        abundant      grasses         tapering
## 1267  poisonous   pungent         several        urban        enlarging
## 1268     edible      none       scattered      grasses         tapering
## 1269     edible      none        solitary        woods         tapering
## 1270     edible      none       scattered      grasses         tapering
## 1271     edible      none       scattered      grasses         tapering
## 1272  poisonous   pungent       scattered      grasses        enlarging
## 1273     edible      none        abundant      grasses         tapering
## 1274     edible      none       scattered      grasses         tapering
## 1275  poisonous   pungent       scattered        urban        enlarging
## 1276     edible      none        abundant      grasses         tapering
## 1277     edible      none       scattered      grasses         tapering
## 1278     edible      none       scattered      grasses         tapering
## 1279     edible      none       scattered      grasses         tapering
## 1280     edible    almond        numerous      meadows        enlarging
## 1281     edible      none        abundant      grasses         tapering
## 1282     edible      none       scattered      grasses         tapering
## 1283     edible      none       scattered      grasses         tapering
## 1284     edible      none        abundant      grasses         tapering
## 1285     edible      none        abundant      grasses         tapering
## 1286  poisonous   pungent       scattered        urban        enlarging
## 1287     edible      none       scattered      grasses         tapering
## 1288     edible      none        solitary        woods         tapering
## 1289     edible      none        abundant      grasses         tapering
## 1290     edible      none         several        woods         tapering
## 1291     edible      none        abundant      grasses         tapering
## 1292     edible      none        abundant      grasses         tapering
## 1293  poisonous   pungent         several      grasses        enlarging
## 1294  poisonous   pungent         several      grasses        enlarging
## 1295     edible      none        abundant      grasses         tapering
## 1296     edible      none         several        woods         tapering
## 1297     edible      none       scattered      grasses         tapering
## 1298     edible    almond       scattered        paths        enlarging
## 1299     edible      none        abundant      grasses         tapering
## 1300     edible      none        abundant      grasses         tapering
## 1301     edible      none        abundant      grasses         tapering
## 1302     edible      none       scattered      grasses         tapering
## 1303     edible      none        solitary        woods         tapering
## 1304     edible      none        abundant      grasses         tapering
## 1305     edible      none       scattered      grasses         tapering
## 1306     edible      none       scattered      grasses         tapering
## 1307     edible      none       scattered      grasses         tapering
## 1308     edible      none        abundant      grasses         tapering
## 1309     edible      none       scattered      grasses         tapering
## 1310     edible      none       scattered      grasses         tapering
## 1311     edible      none        abundant      grasses         tapering
## 1312  poisonous   pungent       scattered      grasses        enlarging
## 1313     edible      none        abundant      grasses         tapering
## 1314     edible     anise        numerous      grasses        enlarging
## 1315     edible      none       scattered      grasses         tapering
## 1316     edible      none       scattered      grasses         tapering
## 1317     edible      none        solitary        woods         tapering
## 1318     edible     anise       scattered      meadows        enlarging
## 1319     edible      none       scattered      grasses         tapering
## 1320     edible      none        solitary        woods         tapering
## 1321  poisonous   pungent       scattered      grasses        enlarging
## 1322     edible      none       scattered      grasses         tapering
## 1323  poisonous   pungent       scattered        urban        enlarging
## 1324     edible      none        abundant      grasses         tapering
## 1325     edible      none        abundant      grasses         tapering
## 1326     edible     anise        numerous      grasses        enlarging
## 1327     edible      none        abundant      grasses         tapering
## 1328     edible      none        abundant      grasses         tapering
## 1329     edible      none       scattered      grasses         tapering
## 1330     edible      none       scattered      grasses         tapering
## 1331     edible      none        abundant      grasses         tapering
## 1332  poisonous   pungent         several      grasses        enlarging
## 1333     edible      none        abundant      grasses         tapering
## 1334     edible      none        abundant      grasses         tapering
## 1335     edible      none        solitary        woods         tapering
## 1336     edible      none        abundant      grasses         tapering
## 1337     edible      none        solitary        woods         tapering
## 1338     edible    almond        numerous      grasses        enlarging
## 1339     edible      none       scattered      grasses         tapering
## 1340     edible      none        abundant      grasses         tapering
## 1341     edible      none        abundant      grasses         tapering
## 1342  poisonous   pungent       scattered        urban        enlarging
## 1343     edible      none        solitary        woods         tapering
## 1344     edible      none       scattered      grasses         tapering
## 1345     edible      none        abundant      grasses         tapering
## 1346  poisonous   pungent         several      grasses        enlarging
## 1347     edible      none       scattered      grasses         tapering
## 1348     edible      none        solitary        woods         tapering
## 1349     edible      none         several        woods         tapering
## 1350     edible      none         several        woods         tapering
## 1351     edible      none       scattered      grasses         tapering
## 1352     edible      none       scattered      grasses         tapering
## 1353     edible      none        abundant      grasses         tapering
## 1354     edible      none        abundant      grasses         tapering
## 1355     edible      none        abundant      grasses         tapering
## 1356     edible      none       scattered      grasses         tapering
## 1357     edible      none        abundant      grasses         tapering
## 1358     edible      none        abundant      grasses         tapering
## 1359     edible      none       scattered      grasses         tapering
## 1360     edible      none        abundant      grasses         tapering
## 1361  poisonous   pungent         several        urban        enlarging
## 1362     edible      none        abundant      grasses         tapering
## 1363     edible      none       scattered      grasses         tapering
## 1364     edible      none        abundant      grasses         tapering
## 1365     edible      none       scattered      grasses         tapering
## 1366     edible      none        abundant      grasses         tapering
## 1367     edible      none        abundant      grasses         tapering
## 1368     edible      none         several        woods         tapering
## 1369     edible      none        abundant      grasses         tapering
## 1370     edible      none       scattered      grasses         tapering
## 1371     edible      none       scattered      grasses         tapering
## 1372     edible      none       scattered      grasses         tapering
## 1373     edible     anise       scattered      grasses        enlarging
## 1374  poisonous   pungent       scattered      grasses        enlarging
## 1375  poisonous   pungent         several      grasses        enlarging
## 1376     edible      none       scattered      grasses         tapering
## 1377     edible      none       scattered      grasses         tapering
## 1378  poisonous   pungent       scattered      grasses        enlarging
## 1379     edible      none       scattered      grasses         tapering
## 1380  poisonous   pungent         several        urban        enlarging
## 1381     edible      none        abundant      grasses         tapering
## 1382  poisonous   pungent         several        urban        enlarging
## 1383     edible      none        abundant      grasses         tapering
## 1384     edible      none        abundant      grasses         tapering
## 1385     edible      none        abundant      grasses         tapering
## 1386     edible      none       scattered      grasses         tapering
## 1387     edible      none         several        woods         tapering
## 1388     edible      none         several        woods         tapering
## 1389     edible      none       scattered      grasses         tapering
## 1390     edible      none        solitary        woods         tapering
## 1391     edible      none       scattered      grasses         tapering
## 1392     edible      none        abundant      grasses         tapering
## 1393     edible      none       scattered      grasses         tapering
## 1394     edible      none       scattered      grasses         tapering
## 1395     edible      none        solitary        woods         tapering
## 1396     edible      none       scattered      grasses         tapering
## 1397     edible      none       scattered      grasses         tapering
## 1398     edible      none       scattered      grasses         tapering
## 1399  poisonous   pungent       scattered      grasses        enlarging
## 1400     edible      none       scattered      grasses         tapering
## 1401     edible    almond        solitary      grasses        enlarging
## 1402     edible      none        solitary        woods         tapering
## 1403     edible      none        abundant      grasses         tapering
## 1404     edible      none        abundant      grasses         tapering
## 1405  poisonous   pungent       scattered        urban        enlarging
## 1406     edible      none        abundant      grasses         tapering
## 1407     edible      none        abundant      grasses         tapering
## 1408     edible      none        abundant      grasses         tapering
## 1409     edible      none       scattered      grasses         tapering
## 1410     edible      none       scattered      grasses         tapering
## 1411     edible      none       scattered      grasses         tapering
## 1412     edible      none        abundant      grasses         tapering
## 1413     edible      none        abundant      grasses         tapering
## 1414     edible      none        abundant      grasses         tapering
## 1415     edible      none        abundant      grasses         tapering
## 1416     edible     anise       scattered      meadows        enlarging
## 1417     edible      none        abundant      grasses         tapering
## 1418     edible      none       scattered      grasses         tapering
## 1419     edible      none        abundant      grasses         tapering
## 1420  poisonous   pungent       scattered        urban        enlarging
## 1421     edible      none       scattered      grasses         tapering
## 1422     edible      none         several        woods         tapering
## 1423     edible      none       scattered      grasses         tapering
## 1424     edible      none        abundant      grasses         tapering
## 1425     edible      none        abundant      grasses         tapering
## 1426     edible      none       scattered      grasses         tapering
## 1427     edible      none       scattered      grasses         tapering
## 1428     edible     anise       scattered        paths        enlarging
## 1429  poisonous   pungent         several        urban        enlarging
## 1430     edible      none       scattered      grasses         tapering
## 1431     edible      none         several        woods         tapering
## 1432  poisonous   pungent       scattered      grasses        enlarging
## 1433  poisonous   pungent       scattered        urban        enlarging
## 1434  poisonous   pungent       scattered        urban        enlarging
## 1435     edible      none        solitary        woods         tapering
## 1436     edible     anise        numerous      meadows        enlarging
## 1437  poisonous   pungent       scattered      grasses        enlarging
## 1438     edible      none        abundant      grasses         tapering
## 1439     edible      none       scattered      grasses         tapering
## 1440     edible      none        solitary        woods         tapering
## 1441     edible      none        abundant      grasses         tapering
## 1442     edible      none       scattered      grasses         tapering
## 1443     edible      none       scattered      grasses         tapering
## 1444  poisonous   pungent       scattered        urban        enlarging
## 1445  poisonous   pungent         several      grasses        enlarging
## 1446     edible      none       scattered      grasses         tapering
## 1447     edible      none       scattered      grasses         tapering
## 1448     edible      none         several        woods         tapering
## 1449     edible      none       scattered      grasses         tapering
## 1450     edible      none        abundant      grasses         tapering
## 1451  poisonous   pungent         several        urban        enlarging
## 1452     edible      none        abundant      grasses         tapering
## 1453  poisonous   pungent         several      grasses        enlarging
## 1454     edible      none        abundant      grasses         tapering
## 1455     edible      none       scattered      grasses         tapering
## 1456     edible      none        abundant      grasses         tapering
## 1457     edible      none        solitary        woods         tapering
## 1458     edible      none       scattered      grasses         tapering
## 1459  poisonous   pungent       scattered        urban        enlarging
## 1460     edible      none         several        woods         tapering
## 1461     edible      none       scattered      grasses         tapering
## 1462     edible      none       scattered      grasses         tapering
## 1463     edible    almond         several        woods         tapering
## 1464     edible      none       scattered      grasses         tapering
## 1465     edible      none         several        woods         tapering
## 1466     edible      none        solitary        woods         tapering
## 1467     edible    almond         several        woods         tapering
## 1468     edible      none        abundant      grasses         tapering
## 1469     edible      none       scattered      grasses         tapering
## 1470     edible      none        solitary        woods         tapering
## 1471     edible      none        abundant      grasses         tapering
## 1472  poisonous   pungent         several        urban        enlarging
## 1473     edible      none       scattered      grasses         tapering
## 1474     edible      none        abundant      grasses         tapering
## 1475     edible      none       scattered      grasses         tapering
## 1476     edible      none        abundant      grasses         tapering
## 1477     edible      none        abundant      grasses         tapering
## 1478  poisonous   pungent       scattered      grasses        enlarging
## 1479     edible      none       scattered      grasses         tapering
## 1480     edible      none        abundant      grasses         tapering
## 1481     edible      none       scattered      grasses         tapering
## 1482     edible      none       scattered      grasses         tapering
## 1483     edible      none        abundant      grasses         tapering
## 1484     edible     anise        solitary      grasses        enlarging
## 1485  poisonous   pungent         several        urban        enlarging
## 1486     edible      none        abundant      grasses         tapering
## 1487     edible      none       scattered      grasses         tapering
## 1488     edible      none       scattered      grasses         tapering
## 1489  poisonous   pungent       scattered      grasses        enlarging
## 1490     edible      none       scattered      grasses         tapering
## 1491  poisonous   pungent       scattered        urban        enlarging
## 1492     edible      none       scattered      grasses         tapering
## 1493     edible      none       scattered      grasses         tapering
## 1494     edible      none        abundant      grasses         tapering
## 1495     edible      none       scattered      grasses         tapering
## 1496     edible      none       scattered      grasses         tapering
## 1497     edible      none       scattered      grasses         tapering
## 1498     edible      none        abundant      grasses         tapering
## 1499     edible      none       scattered      grasses         tapering
## 1500     edible      none        abundant      grasses         tapering
## 1501     edible    almond        numerous      meadows        enlarging
## 1502     edible      none       scattered      grasses         tapering
## 1503     edible      none        abundant      grasses         tapering
## 1504     edible      none        abundant      grasses         tapering
## 1505     edible      none        solitary        woods         tapering
## 1506  poisonous   pungent       scattered        urban        enlarging
## 1507     edible      none        solitary        woods         tapering
## 1508     edible      none        abundant      grasses         tapering
## 1509     edible      none        solitary        woods         tapering
## 1510     edible      none        abundant      grasses         tapering
## 1511     edible      none       scattered      grasses         tapering
## 1512     edible      none        abundant      grasses         tapering
## 1513     edible    almond       scattered      meadows        enlarging
## 1514     edible    almond         several        woods         tapering
## 1515     edible      none        abundant      grasses         tapering
## 1516     edible      none        abundant      grasses         tapering
## 1517     edible      none       scattered      grasses         tapering
## 1518     edible    almond       scattered      grasses        enlarging
## 1519     edible      none       scattered      grasses         tapering
## 1520     edible     anise       scattered      grasses        enlarging
## 1521     edible      none       scattered      grasses         tapering
## 1522     edible      none        abundant      grasses         tapering
## 1523     edible      none       scattered      grasses         tapering
## 1524     edible      none        abundant      grasses         tapering
## 1525     edible      none       scattered      grasses         tapering
## 1526     edible      none        solitary        woods         tapering
## 1527     edible      none       scattered      grasses         tapering
## 1528     edible    almond        numerous      meadows        enlarging
## 1529     edible      none        abundant      grasses         tapering
## 1530  poisonous   pungent       scattered        urban        enlarging
## 1531     edible      none       scattered      grasses         tapering
## 1532  poisonous   pungent       scattered        urban        enlarging
## 1533     edible      none       scattered      grasses         tapering
## 1534     edible      none       scattered      grasses         tapering
## 1535  poisonous   pungent       scattered      grasses        enlarging
## 1536     edible      none        abundant      grasses         tapering
## 1537  poisonous   pungent       scattered        urban        enlarging
## 1538     edible      none       scattered      grasses         tapering
## 1539     edible      none       scattered      grasses         tapering
## 1540  poisonous   pungent         several      grasses        enlarging
## 1541     edible      none        abundant      grasses         tapering
## 1542     edible      none        abundant      grasses         tapering
## 1543     edible      none       scattered      grasses         tapering
## 1544     edible      none        abundant      grasses         tapering
## 1545     edible      none        solitary        woods         tapering
## 1546  poisonous   pungent       scattered        urban        enlarging
## 1547     edible      none       scattered      grasses         tapering
## 1548     edible    almond        solitary      grasses        enlarging
## 1549     edible      none        abundant      grasses         tapering
## 1550     edible      none        abundant      grasses         tapering
## 1551     edible     anise        numerous      meadows        enlarging
## 1552     edible      none        abundant      grasses         tapering
## 1553     edible      none        abundant      grasses         tapering
## 1554     edible      none        abundant      grasses         tapering
## 1555  poisonous   pungent       scattered        urban        enlarging
## 1556     edible      none        abundant      grasses         tapering
## 1557     edible    almond        numerous      grasses        enlarging
## 1558     edible      none        abundant      grasses         tapering
## 1559     edible      none       scattered      grasses         tapering
## 1560     edible      none        abundant      grasses         tapering
## 1561     edible      none       scattered      grasses         tapering
## 1562     edible      none        abundant      grasses         tapering
## 1563     edible      none         several        woods         tapering
## 1564     edible     anise        numerous      meadows        enlarging
## 1565     edible      none         several        woods         tapering
## 1566  poisonous   pungent       scattered      grasses        enlarging
## 1567     edible      none        abundant      grasses         tapering
## 1568  poisonous   pungent         several        urban        enlarging
## 1569     edible      none        abundant      grasses         tapering
## 1570     edible      none        abundant      grasses         tapering
## 1571     edible      none        abundant      grasses         tapering
## 1572     edible      none        abundant      grasses         tapering
## 1573     edible      none       scattered      grasses         tapering
## 1574     edible     anise       scattered      grasses        enlarging
## 1575     edible      none        abundant      grasses         tapering
## 1576     edible      none       scattered      grasses         tapering
## 1577  poisonous   pungent         several      grasses        enlarging
## 1578     edible      none        abundant      grasses         tapering
## 1579  poisonous   pungent       scattered      grasses        enlarging
## 1580     edible      none        abundant      grasses         tapering
## 1581     edible      none         several        woods         tapering
## 1582     edible      none       scattered      grasses         tapering
## 1583  poisonous   pungent         several        urban        enlarging
## 1584     edible      none       scattered      grasses         tapering
## 1585  poisonous   pungent         several        urban        enlarging
## 1586     edible      none         several        woods         tapering
## 1587     edible      none       scattered      grasses         tapering
## 1588     edible    almond       scattered        paths        enlarging
## 1589     edible      none       scattered      grasses         tapering
## 1590     edible      none        abundant      grasses         tapering
## 1591     edible      none       scattered      grasses         tapering
## 1592     edible      none       scattered      grasses         tapering
## 1593     edible      none        abundant      grasses         tapering
## 1594     edible      none       scattered      grasses         tapering
## 1595     edible      none        abundant      grasses         tapering
## 1596     edible      none         several        woods         tapering
## 1597     edible      none        abundant      grasses         tapering
## 1598     edible      none       scattered      grasses         tapering
## 1599     edible     anise       scattered      grasses        enlarging
## 1600     edible      none        solitary        woods         tapering
## 1601     edible      none        abundant      grasses         tapering
## 1602     edible      none       scattered      grasses         tapering
## 1603     edible      none        abundant      grasses         tapering
## 1604     edible      none       scattered      grasses         tapering
## 1605     edible      none        abundant      grasses         tapering
## 1606     edible      none        abundant      grasses         tapering
## 1607     edible      none       scattered      grasses         tapering
## 1608     edible      none        solitary        woods         tapering
## 1609     edible      none       scattered      grasses         tapering
## 1610     edible      none        abundant      grasses         tapering
## 1611     edible      none        abundant      grasses         tapering
## 1612     edible      none        solitary        urban        enlarging
## 1613  poisonous   pungent       scattered        urban        enlarging
## 1614  poisonous   pungent         several      grasses        enlarging
## 1615     edible      none         several        woods         tapering
## 1616     edible      none        abundant      grasses         tapering
## 1617     edible      none        abundant      grasses         tapering
## 1618     edible      none       scattered      grasses         tapering
## 1619     edible      none       scattered      grasses         tapering
## 1620     edible      none       scattered      grasses         tapering
## 1621     edible      none        abundant      grasses         tapering
## 1622     edible      none       scattered      grasses         tapering
## 1623     edible      none        abundant      grasses         tapering
## 1624     edible      none         several        woods         tapering
## 1625  poisonous   pungent         several        urban        enlarging
## 1626     edible      none       scattered      grasses         tapering
## 1627     edible      none         several        woods         tapering
## 1628  poisonous   pungent       scattered        urban        enlarging
## 1629  poisonous   pungent         several      grasses        enlarging
## 1630  poisonous   pungent       scattered        urban        enlarging
## 1631     edible      none        abundant      grasses         tapering
## 1632     edible      none       scattered      grasses         tapering
## 1633     edible      none        abundant      grasses         tapering
## 1634     edible      none        abundant      grasses         tapering
## 1635     edible      none        abundant      grasses         tapering
## 1636  poisonous   pungent         several      grasses        enlarging
## 1637  poisonous   pungent         several      grasses        enlarging
## 1638     edible      none        abundant      grasses         tapering
## 1639     edible      none        abundant      grasses         tapering
## 1640     edible      none       scattered      grasses         tapering
## 1641     edible      none         several        woods         tapering
## 1642     edible      none         several        woods         tapering
## 1643     edible      none        abundant      grasses         tapering
## 1644     edible      none       scattered      grasses         tapering
## 1645     edible      none        abundant      grasses         tapering
## 1646     edible     anise        numerous      meadows        enlarging
## 1647     edible      none        abundant      grasses         tapering
## 1648     edible      none       scattered      grasses         tapering
## 1649     edible      none       scattered      grasses         tapering
## 1650     edible      none        abundant      grasses         tapering
## 1651     edible      none       scattered      grasses         tapering
## 1652     edible      none       scattered      grasses         tapering
## 1653     edible      none       scattered      grasses         tapering
## 1654     edible      none       scattered      grasses         tapering
## 1655     edible      none       scattered      grasses         tapering
## 1656     edible      none        abundant      grasses         tapering
## 1657     edible      none       scattered      grasses         tapering
## 1658     edible      none       scattered      grasses         tapering
## 1659     edible      none        abundant      grasses         tapering
## 1660     edible      none       scattered      grasses         tapering
## 1661     edible      none        abundant      grasses         tapering
## 1662     edible    almond        numerous      grasses        enlarging
## 1663     edible     anise        numerous      grasses        enlarging
## 1664     edible      none        abundant      grasses         tapering
## 1665  poisonous   pungent       scattered      grasses        enlarging
## 1666     edible      none       scattered      grasses         tapering
## 1667  poisonous   pungent       scattered        urban        enlarging
## 1668     edible      none         several        woods         tapering
## 1669  poisonous   pungent         several        urban        enlarging
## 1670     edible     anise       scattered      grasses        enlarging
## 1671     edible     anise        numerous      meadows        enlarging
## 1672     edible     anise        solitary        paths        enlarging
## 1673     edible      none       scattered      grasses         tapering
## 1674     edible      none       scattered      grasses         tapering
## 1675     edible      none        abundant      grasses         tapering
## 1676     edible      none        abundant      grasses         tapering
## 1677     edible      none       scattered      grasses         tapering
## 1678     edible      none        abundant      grasses         tapering
## 1679     edible      none       scattered      grasses         tapering
## 1680     edible     anise        numerous      grasses        enlarging
## 1681     edible      none       scattered      grasses         tapering
## 1682     edible     anise       scattered      meadows        enlarging
## 1683  poisonous   pungent         several      grasses        enlarging
## 1684     edible      none       scattered      grasses         tapering
## 1685     edible      none       scattered      grasses         tapering
## 1686     edible      none       scattered      grasses         tapering
## 1687     edible      none       scattered      grasses         tapering
## 1688     edible      none        solitary        woods         tapering
## 1689     edible      none        solitary        woods         tapering
## 1690     edible    almond        solitary        paths        enlarging
## 1691     edible      none        solitary        woods         tapering
## 1692     edible      none        abundant      grasses         tapering
## 1693     edible      none       scattered      grasses         tapering
## 1694     edible      none        abundant      grasses         tapering
## 1695     edible      none        abundant      grasses         tapering
## 1696     edible      none       scattered      grasses         tapering
## 1697     edible      none        abundant      grasses         tapering
## 1698     edible      none        abundant      grasses         tapering
## 1699     edible      none        abundant      grasses         tapering
## 1700     edible      none        solitary        woods         tapering
## 1701     edible      none       scattered      grasses         tapering
## 1702     edible      none       scattered      grasses         tapering
## 1703  poisonous   pungent       scattered      grasses        enlarging
## 1704     edible      none        solitary        woods         tapering
## 1705     edible      none       scattered      grasses         tapering
## 1706     edible      none       scattered      grasses         tapering
## 1707  poisonous   pungent         several        urban        enlarging
## 1708     edible      none       scattered      grasses         tapering
## 1709     edible      none         several        woods         tapering
## 1710     edible      none        abundant      grasses         tapering
## 1711     edible      none       scattered      grasses         tapering
## 1712     edible      none         several        woods         tapering
## 1713     edible      none        abundant      grasses         tapering
## 1714     edible      none        abundant      grasses         tapering
## 1715     edible      none        solitary        woods         tapering
## 1716     edible     anise        numerous      grasses        enlarging
## 1717     edible     anise        numerous      meadows        enlarging
## 1718     edible      none       scattered      grasses         tapering
## 1719     edible      none        abundant      grasses         tapering
## 1720     edible      none       scattered      grasses         tapering
## 1721     edible      none        abundant      grasses         tapering
## 1722     edible      none        abundant      grasses         tapering
## 1723     edible      none       scattered      grasses         tapering
## 1724     edible    almond        numerous      meadows        enlarging
## 1725  poisonous   pungent         several      grasses        enlarging
## 1726     edible      none        abundant      grasses         tapering
## 1727     edible      none       scattered      grasses         tapering
## 1728     edible    almond       scattered      grasses        enlarging
## 1729     edible      none        abundant      grasses         tapering
## 1730     edible      none        abundant      grasses         tapering
## 1731  poisonous   pungent         several        urban        enlarging
## 1732     edible      none        abundant      grasses         tapering
## 1733     edible      none       scattered      grasses         tapering
## 1734  poisonous   pungent         several      grasses        enlarging
## 1735     edible      none        abundant      grasses         tapering
## 1736     edible      none        abundant      grasses         tapering
## 1737     edible      none         several        woods         tapering
## 1738     edible      none       scattered      grasses         tapering
## 1739  poisonous   pungent         several        urban        enlarging
## 1740     edible      none        abundant      grasses         tapering
## 1741     edible      none       scattered      grasses         tapering
## 1742     edible      none       scattered      grasses         tapering
## 1743     edible      none        abundant      grasses         tapering
## 1744     edible     anise        solitary      grasses        enlarging
## 1745  poisonous   pungent       scattered      grasses        enlarging
## 1746     edible      none        abundant      grasses         tapering
## 1747     edible      none        solitary        urban        enlarging
## 1748  poisonous   pungent       scattered        urban        enlarging
## 1749     edible      none       scattered      grasses         tapering
## 1750     edible      none       scattered      grasses         tapering
## 1751     edible    almond        solitary        paths        enlarging
## 1752     edible      none       scattered      grasses         tapering
## 1753     edible      none        abundant      grasses         tapering
## 1754  poisonous   pungent       scattered      grasses        enlarging
## 1755     edible      none       scattered      grasses         tapering
## 1756     edible      none       scattered      grasses         tapering
## 1757     edible      none       scattered      grasses         tapering
## 1758     edible      none         several        woods         tapering
## 1759     edible      none       scattered      grasses         tapering
## 1760     edible      none        abundant      grasses         tapering
## 1761     edible      none       scattered      grasses         tapering
## 1762     edible      none       scattered      grasses         tapering
## 1763     edible      none        solitary        woods         tapering
## 1764     edible      none       scattered      grasses         tapering
## 1765  poisonous   pungent       scattered        urban        enlarging
## 1766     edible      none        abundant      grasses         tapering
## 1767     edible      none       scattered      grasses         tapering
## 1768     edible      none         several        woods         tapering
## 1769     edible    almond        solitary      grasses        enlarging
## 1770     edible      none        abundant      grasses         tapering
## 1771     edible      none        abundant      grasses         tapering
## 1772     edible      none        abundant      grasses         tapering
## 1773     edible    almond       scattered      grasses        enlarging
## 1774     edible      none        solitary        woods         tapering
## 1775     edible      none        abundant      grasses         tapering
## 1776     edible      none        abundant      grasses         tapering
## 1777  poisonous   pungent       scattered        urban        enlarging
## 1778  poisonous   pungent         several        urban        enlarging
## 1779     edible      none        abundant      grasses         tapering
## 1780     edible      none         several        urban        enlarging
## 1781     edible      none       scattered      grasses         tapering
## 1782     edible      none        abundant      grasses         tapering
## 1783  poisonous   pungent       scattered      grasses        enlarging
## 1784     edible    almond       scattered      grasses        enlarging
## 1785     edible      none        abundant      grasses         tapering
## 1786  poisonous   pungent       scattered        urban        enlarging
## 1787     edible      none        abundant      grasses         tapering
## 1788     edible      none       scattered      grasses         tapering
## 1789     edible      none       scattered      grasses         tapering
## 1790  poisonous   pungent         several        urban        enlarging
## 1791     edible      none        abundant      grasses         tapering
## 1792     edible      none        abundant      grasses         tapering
## 1793     edible      none       scattered      grasses         tapering
## 1794     edible      none        abundant      grasses         tapering
## 1795  poisonous   pungent         several      grasses        enlarging
## 1796     edible      none       scattered      grasses         tapering
## 1797     edible      none        abundant      grasses         tapering
## 1798  poisonous   pungent         several        urban        enlarging
## 1799     edible      none        abundant      grasses         tapering
## 1800     edible      none         several        woods         tapering
## 1801     edible      none        abundant      grasses         tapering
## 1802     edible      none         several        woods         tapering
## 1803     edible      none         several        woods         tapering
## 1804     edible      none        solitary        woods         tapering
## 1805     edible      none         several        woods         tapering
## 1806     edible      none       scattered      grasses         tapering
## 1807     edible      none        solitary        woods         tapering
## 1808     edible      none        solitary        woods         tapering
## 1809     edible      none       scattered      grasses         tapering
## 1810  poisonous   pungent       scattered      grasses        enlarging
## 1811     edible      none         several        woods         tapering
## 1812  poisonous   pungent         several      grasses        enlarging
## 1813     edible    almond       scattered      grasses        enlarging
## 1814     edible      none        abundant      grasses         tapering
## 1815     edible    almond       scattered      grasses        enlarging
## 1816  poisonous      foul        solitary      grasses        enlarging
## 1817     edible      none        abundant      grasses         tapering
## 1818     edible      none       scattered      grasses         tapering
## 1819     edible      none         several        woods         tapering
## 1820     edible      none       scattered      grasses         tapering
## 1821     edible      none       scattered      grasses         tapering
## 1822  poisonous   pungent         several        urban        enlarging
## 1823     edible      none        solitary        woods         tapering
## 1824     edible     anise        numerous      grasses        enlarging
## 1825     edible      none       scattered      grasses         tapering
## 1826     edible      none         several        woods         tapering
## 1827     edible      none       scattered      grasses         tapering
## 1828     edible      none        abundant      grasses         tapering
## 1829     edible      none         several        woods         tapering
## 1830     edible      none        solitary        woods         tapering
## 1831     edible      none         several        woods         tapering
## 1832     edible      none        abundant      grasses         tapering
## 1833     edible      none         several        woods         tapering
## 1834     edible      none         several        woods         tapering
## 1835     edible      none         several        woods         tapering
## 1836     edible      none        solitary        woods         tapering
## 1837     edible      none       scattered      grasses         tapering
## 1838     edible      none        solitary        woods         tapering
## 1839     edible      none       scattered      grasses         tapering
## 1840     edible      none        abundant      grasses         tapering
## 1841     edible      none        abundant      grasses         tapering
## 1842     edible      none         several        woods         tapering
## 1843  poisonous   pungent       scattered        urban        enlarging
## 1844     edible      none         several        woods         tapering
## 1845     edible      none       scattered      grasses         tapering
## 1846     edible      none        abundant      grasses         tapering
## 1847     edible      none         several        woods         tapering
## 1848     edible      none         several        woods         tapering
## 1849     edible      none         several        woods         tapering
## 1850     edible      none         several        woods         tapering
## 1851     edible      none        abundant      grasses         tapering
## 1852     edible      none         several        woods         tapering
## 1853     edible      none         several        woods         tapering
## 1854     edible      none        solitary        woods         tapering
## 1855     edible      none        solitary        woods         tapering
## 1856     edible    almond         several        woods         tapering
## 1857     edible      none         several        woods         tapering
## 1858  poisonous   pungent         several      grasses        enlarging
## 1859     edible      none       scattered      grasses         tapering
## 1860     edible      none        solitary        woods         tapering
## 1861     edible      none         several        woods         tapering
## 1862     edible      none        abundant      grasses         tapering
## 1863     edible      none        solitary        woods         tapering
## 1864     edible      none       scattered      grasses         tapering
## 1865     edible      none        solitary        woods         tapering
## 1866     edible      none         several        woods         tapering
## 1867     edible      none        abundant      grasses         tapering
## 1868     edible      none        abundant      grasses         tapering
## 1869     edible      none       scattered      grasses         tapering
## 1870     edible      none       scattered      grasses         tapering
## 1871     edible      none        solitary        woods         tapering
## 1872     edible      none        abundant      grasses         tapering
## 1873     edible      none        abundant      grasses         tapering
## 1874     edible      none         several        woods         tapering
## 1875     edible      none        solitary        woods         tapering
## 1876     edible      none         several        woods         tapering
## 1877     edible      none        solitary        woods         tapering
## 1878     edible      none       scattered      grasses         tapering
## 1879     edible      none        abundant      grasses         tapering
## 1880     edible      none        abundant      grasses         tapering
## 1881     edible      none        abundant      grasses         tapering
## 1882     edible      none         several        woods         tapering
## 1883     edible      none        solitary        woods         tapering
## 1884     edible      none         several        woods         tapering
## 1885     edible     anise         several        woods         tapering
## 1886     edible      none        abundant      grasses         tapering
## 1887  poisonous   pungent       scattered      grasses        enlarging
## 1888     edible      none         several        woods         tapering
## 1889     edible      none         several        woods         tapering
## 1890     edible      none        abundant      grasses         tapering
## 1891     edible      none        abundant      grasses         tapering
## 1892     edible      none        abundant      grasses         tapering
## 1893     edible      none        abundant      grasses         tapering
## 1894     edible      none        abundant      grasses         tapering
## 1895     edible      none         several        woods         tapering
## 1896     edible      none        solitary        woods         tapering
## 1897     edible      none       scattered      grasses         tapering
## 1898     edible      none        abundant      grasses         tapering
## 1899     edible      none       scattered      grasses         tapering
## 1900     edible      none        solitary        woods         tapering
## 1901     edible      none        abundant      grasses         tapering
## 1902     edible      none        abundant      grasses         tapering
## 1903     edible      none       scattered      grasses         tapering
## 1904     edible      none       scattered      grasses         tapering
## 1905     edible      none        abundant      grasses         tapering
## 1906     edible      none        abundant      grasses         tapering
## 1907     edible      none         several        woods         tapering
## 1908     edible      none        abundant      grasses         tapering
## 1909     edible      none       scattered      grasses         tapering
## 1910     edible      none         several        woods         tapering
## 1911     edible      none         several        woods         tapering
## 1912     edible      none         several        woods         tapering
## 1913     edible      none       scattered      grasses         tapering
## 1914     edible      none        abundant      grasses         tapering
## 1915     edible     anise        solitary      grasses        enlarging
## 1916  poisonous   pungent         several        urban        enlarging
## 1917     edible      none        abundant      grasses         tapering
## 1918     edible      none       scattered      grasses         tapering
## 1919     edible      none         several        woods         tapering
## 1920     edible      none        solitary        woods         tapering
## 1921     edible      none        abundant      grasses         tapering
## 1922     edible      none       scattered      grasses         tapering
## 1923     edible      none       scattered      grasses         tapering
## 1924     edible      none         several        woods         tapering
## 1925     edible      none         several        woods         tapering
## 1926     edible      none       scattered      grasses         tapering
## 1927     edible      none        abundant      grasses         tapering
## 1928     edible      none       scattered      grasses         tapering
## 1929     edible      none       scattered      grasses         tapering
## 1930  poisonous   pungent       scattered        urban        enlarging
## 1931     edible    almond       scattered      grasses        enlarging
## 1932     edible      none         several        woods         tapering
## 1933     edible      none        abundant      grasses         tapering
## 1934     edible      none       scattered      grasses         tapering
## 1935     edible      none       scattered      grasses         tapering
## 1936     edible     anise         several        woods         tapering
## 1937     edible      none        abundant      grasses         tapering
## 1938     edible      none        abundant      grasses         tapering
## 1939     edible      none       scattered      grasses         tapering
## 1940     edible      none         several        woods         tapering
## 1941     edible      none         several        woods         tapering
## 1942     edible      none         several        woods         tapering
## 1943     edible      none       scattered      grasses         tapering
## 1944     edible      none       scattered      grasses         tapering
## 1945  poisonous   pungent         several        urban        enlarging
## 1946     edible      none       scattered      grasses         tapering
## 1947     edible      none        solitary        woods         tapering
## 1948     edible      none         several        woods         tapering
## 1949     edible      none        abundant      grasses         tapering
## 1950     edible      none         several        woods         tapering
## 1951     edible      none         several        woods         tapering
## 1952     edible      none        solitary        woods         tapering
## 1953     edible      none         several        woods         tapering
## 1954     edible      none         several        woods         tapering
## 1955  poisonous   pungent         several      grasses        enlarging
## 1956     edible      none       scattered      grasses         tapering
## 1957     edible      none         several        woods         tapering
## 1958     edible      none        solitary        woods         tapering
## 1959  poisonous   pungent       scattered      grasses        enlarging
## 1960     edible      none        solitary        woods         tapering
## 1961     edible      none       scattered      grasses         tapering
## 1962     edible      none         several        woods         tapering
## 1963     edible      none       scattered      grasses         tapering
## 1964     edible      none        abundant      grasses         tapering
## 1965     edible      none       scattered      grasses         tapering
## 1966     edible      none         several        woods         tapering
## 1967     edible      none       scattered      grasses         tapering
## 1968     edible      none         several        woods         tapering
## 1969     edible      none       scattered      grasses         tapering
## 1970     edible      none        abundant      grasses         tapering
## 1971     edible      none       scattered      grasses         tapering
## 1972  poisonous   pungent         several        urban        enlarging
## 1973     edible      none        solitary        woods         tapering
## 1974     edible      none       scattered      grasses         tapering
## 1975  poisonous   pungent       scattered      grasses        enlarging
## 1976     edible      none         several        woods         tapering
## 1977     edible      none        solitary        woods         tapering
## 1978     edible      none        abundant      grasses         tapering
## 1979     edible      none         several        woods         tapering
## 1980     edible      none       scattered      grasses         tapering
## 1981     edible      none       scattered      grasses         tapering
## 1982     edible     anise        numerous      meadows        enlarging
## 1983     edible      none       scattered      grasses         tapering
## 1984     edible      none         several        woods         tapering
## 1985     edible      none        solitary        woods         tapering
## 1986     edible      none        abundant      grasses         tapering
## 1987  poisonous   pungent       scattered        urban        enlarging
## 1988     edible      none         several        woods         tapering
## 1989  poisonous   pungent       scattered        urban        enlarging
## 1990  poisonous   pungent         several      grasses        enlarging
## 1991     edible      none         several        woods         tapering
## 1992     edible      none        abundant      grasses         tapering
## 1993     edible      none        solitary        woods         tapering
## 1994     edible      none        abundant      grasses         tapering
## 1995     edible      none        solitary        woods         tapering
## 1996     edible      none       scattered      grasses         tapering
## 1997     edible      none        abundant      grasses         tapering
## 1998     edible      none        abundant      grasses         tapering
## 1999     edible      none       scattered      grasses         tapering
## 2000     edible      none         several        woods         tapering
## 2001     edible      none         several        woods         tapering
## 2002     edible      none        abundant      grasses         tapering
## 2003     edible      none        solitary        woods         tapering
## 2004  poisonous   pungent         several        urban        enlarging
## 2005     edible     anise       scattered      grasses        enlarging
## 2006  poisonous   pungent       scattered      grasses        enlarging
## 2007     edible      none       scattered      grasses         tapering
## 2008     edible      none        abundant      grasses         tapering
## 2009  poisonous   pungent         several      grasses        enlarging
## 2010     edible      none        abundant      grasses         tapering
## 2011     edible      none       scattered      grasses         tapering
## 2012     edible      none         several        woods         tapering
## 2013     edible      none        abundant      grasses         tapering
## 2014     edible      none       scattered      grasses         tapering
## 2015     edible      none        abundant      grasses         tapering
## 2016     edible      none       scattered      grasses         tapering
## 2017     edible    almond         several        woods         tapering
## 2018     edible    almond         several        woods         tapering
## 2019     edible      none        abundant      grasses         tapering
## 2020     edible      none        solitary        woods         tapering
## 2021     edible      none        solitary        woods         tapering
## 2022     edible      none        solitary        woods         tapering
## 2023     edible      none       scattered      grasses         tapering
## 2024     edible      none        solitary        woods         tapering
## 2025     edible      none         several        woods         tapering
## 2026     edible      none        abundant      grasses         tapering
## 2027     edible      none         several        woods         tapering
## 2028     edible      none        abundant      grasses         tapering
## 2029     edible     anise       scattered      meadows        enlarging
## 2030     edible      none         several        woods         tapering
## 2031     edible      none       scattered      grasses         tapering
## 2032     edible      none        solitary        woods         tapering
## 2033     edible      none        solitary        woods         tapering
## 2034     edible      none         several        woods         tapering
## 2035     edible      none        abundant      grasses         tapering
## 2036     edible      none       scattered      grasses         tapering
## 2037     edible      none        abundant      grasses         tapering
## 2038     edible      none        abundant      grasses         tapering
## 2039     edible      none        solitary        woods         tapering
## 2040     edible      none        solitary        woods         tapering
## 2041     edible      none        solitary        woods         tapering
## 2042     edible      none       scattered      grasses         tapering
## 2043     edible      none       scattered      grasses         tapering
## 2044     edible      none       scattered      grasses         tapering
## 2045     edible    almond       scattered        paths        enlarging
## 2046     edible      none         several        woods         tapering
## 2047     edible      none       scattered      grasses         tapering
## 2048     edible      none         several        woods         tapering
## 2049     edible      none        solitary        woods         tapering
## 2050     edible      none        abundant      grasses         tapering
## 2051     edible    almond       scattered      meadows        enlarging
## 2052     edible      none       scattered      grasses         tapering
## 2053     edible      none        abundant      grasses         tapering
## 2054     edible      none         several        woods         tapering
## 2055     edible      none       scattered      grasses         tapering
## 2056     edible      none         several        woods         tapering
## 2057     edible      none        solitary        woods         tapering
## 2058     edible      none        abundant      grasses         tapering
## 2059     edible    almond        numerous      meadows        enlarging
## 2060     edible      none       scattered      grasses         tapering
## 2061  poisonous   pungent         several      grasses        enlarging
## 2062     edible      none       scattered      grasses         tapering
## 2063     edible      none         several        woods         tapering
## 2064     edible      none       scattered      grasses         tapering
## 2065     edible      none         several        woods         tapering
## 2066     edible      none         several        woods         tapering
## 2067  poisonous   pungent         several        urban        enlarging
## 2068     edible      none        abundant      grasses         tapering
## 2069     edible      none        solitary        woods         tapering
## 2070     edible      none        solitary        woods         tapering
## 2071     edible      none         several        woods         tapering
## 2072     edible      none        solitary        woods         tapering
## 2073     edible      none        solitary        woods         tapering
## 2074  poisonous   pungent         several        urban        enlarging
## 2075     edible     anise        numerous      meadows        enlarging
## 2076     edible      none         several        woods         tapering
## 2077     edible      none        solitary        woods         tapering
## 2078     edible      none       scattered      grasses         tapering
## 2079     edible      none        solitary        woods         tapering
## 2080     edible      none       scattered      grasses         tapering
## 2081     edible      none       scattered      grasses         tapering
## 2082     edible      none         several        woods         tapering
## 2083     edible      none         several        woods         tapering
## 2084     edible      none       scattered      grasses         tapering
## 2085     edible      none       scattered      grasses         tapering
## 2086     edible      none       scattered      grasses         tapering
## 2087     edible      none        solitary        woods         tapering
## 2088     edible      none        solitary        woods         tapering
## 2089  poisonous   pungent       scattered        urban        enlarging
## 2090     edible      none         several        woods         tapering
## 2091     edible      none        abundant      grasses         tapering
## 2092     edible    almond       scattered      meadows        enlarging
## 2093     edible      none       scattered      grasses         tapering
## 2094     edible      none       scattered      grasses         tapering
## 2095     edible      none        solitary        woods         tapering
## 2096     edible      none         several        woods         tapering
## 2097     edible      none       scattered      grasses         tapering
## 2098  poisonous   pungent       scattered      grasses        enlarging
## 2099     edible      none        abundant      grasses         tapering
## 2100     edible      none        solitary        woods         tapering
## 2101     edible      none         several        woods         tapering
## 2102     edible      none         several        woods         tapering
## 2103     edible      none        solitary        woods         tapering
## 2104     edible      none        solitary        woods         tapering
## 2105     edible      none        solitary        woods         tapering
## 2106     edible      none         several        woods         tapering
## 2107     edible      none        solitary        woods         tapering
## 2108     edible      none         several        woods         tapering
## 2109     edible      none         several        woods         tapering
## 2110     edible      none         several        woods         tapering
## 2111     edible      none         several        woods         tapering
## 2112  poisonous   pungent         several      grasses        enlarging
## 2113     edible      none         several        woods         tapering
## 2114     edible      none         several        woods         tapering
## 2115     edible      none        solitary        woods         tapering
## 2116     edible      none        solitary        woods         tapering
## 2117     edible      none         several        woods         tapering
## 2118     edible      none         several        woods         tapering
## 2119     edible      none         several        woods         tapering
## 2120     edible      none        solitary        woods         tapering
## 2121     edible      none        solitary        woods         tapering
## 2122     edible      none         several        woods         tapering
## 2123     edible      none         several        woods         tapering
## 2124     edible      none         several        woods         tapering
## 2125     edible      none         several        woods         tapering
## 2126     edible      none        solitary        woods         tapering
## 2127     edible      none         several        woods         tapering
## 2128  poisonous      foul        solitary      grasses        enlarging
## 2129  poisonous   pungent       scattered      grasses        enlarging
## 2130     edible      none         several        woods         tapering
## 2131     edible      none       scattered      grasses         tapering
## 2132     edible      none         several        woods         tapering
## 2133     edible      none        solitary        woods         tapering
## 2134     edible      none         several        woods         tapering
## 2135     edible      none        solitary        woods         tapering
## 2136     edible      none         several        woods         tapering
## 2137     edible      none         several        woods         tapering
## 2138     edible      none        solitary        woods         tapering
## 2139     edible      none        solitary        woods         tapering
## 2140     edible      none         several        woods         tapering
## 2141     edible      none         several        woods         tapering
## 2142     edible      none        solitary        woods         tapering
## 2143     edible      none        solitary        woods         tapering
## 2144     edible      none         several        woods         tapering
## 2145     edible      none         several        woods         tapering
## 2146     edible      none         several        woods         tapering
## 2147  poisonous   pungent         several        urban        enlarging
## 2148     edible      none        solitary        woods         tapering
## 2149  poisonous   pungent       scattered      grasses        enlarging
## 2150     edible      none        solitary        woods         tapering
## 2151     edible      none        solitary        woods         tapering
## 2152     edible      none         several        woods         tapering
## 2153     edible      none         several        woods         tapering
## 2154     edible      none        solitary        woods         tapering
## 2155     edible      none         several        woods         tapering
## 2156     edible      none        solitary        woods         tapering
## 2157     edible      none         several        woods         tapering
## 2158     edible      none        solitary        woods         tapering
## 2159     edible      none         several        woods         tapering
## 2160     edible      none        solitary        woods         tapering
## 2161     edible      none        solitary        woods         tapering
## 2162     edible      none         several        woods         tapering
## 2163     edible      none        solitary        woods         tapering
## 2164     edible      none        solitary        woods         tapering
## 2165     edible      none        solitary        woods         tapering
## 2166     edible      none        solitary        woods         tapering
## 2167     edible      none        solitary        woods         tapering
## 2168     edible      none        solitary        woods         tapering
## 2169     edible      none         several        woods         tapering
## 2170     edible      none         several        woods         tapering
## 2171     edible      none         several        woods         tapering
## 2172     edible      none         several        woods         tapering
## 2173     edible      none         several        woods         tapering
## 2174     edible      none        solitary        woods         tapering
## 2175     edible      none         several        woods         tapering
## 2176     edible      none        solitary        woods         tapering
## 2177     edible      none         several        woods         tapering
## 2178  poisonous      foul        solitary        woods        enlarging
## 2179     edible      none        solitary        woods         tapering
## 2180     edible      none        solitary        woods         tapering
## 2181     edible      none         several        woods         tapering
## 2182     edible      none        solitary        woods         tapering
## 2183     edible      none         several        woods         tapering
## 2184     edible      none         several        woods         tapering
## 2185     edible      none        solitary        woods         tapering
## 2186     edible      none        solitary        woods         tapering
## 2187     edible      none        solitary        woods         tapering
## 2188     edible      none         several        woods         tapering
## 2189     edible      none         several        woods         tapering
## 2190     edible      none         several        woods         tapering
## 2191     edible      none        solitary        woods         tapering
## 2192     edible      none       scattered      grasses         tapering
## 2193     edible      none        solitary        woods         tapering
## 2194     edible      none        solitary        woods         tapering
## 2195     edible      none         several        woods         tapering
## 2196     edible      none         several        woods         tapering
## 2197     edible      none        solitary        woods         tapering
## 2198     edible      none         several        woods         tapering
## 2199     edible      none        solitary        woods         tapering
## 2200     edible      none        abundant      grasses         tapering
## 2201     edible      none        solitary        woods         tapering
## 2202     edible      none         several        woods         tapering
## 2203     edible      none        solitary        woods         tapering
## 2204     edible      none        solitary        woods         tapering
## 2205     edible      none         several        woods         tapering
## 2206     edible      none         several        woods         tapering
## 2207     edible      none        solitary        woods         tapering
## 2208     edible      none        solitary        woods         tapering
## 2209     edible      none         several        woods         tapering
## 2210  poisonous  creosote       scattered        woods        enlarging
## 2211     edible      none        solitary        woods         tapering
## 2212     edible      none         several        woods         tapering
## 2213     edible      none        solitary        woods         tapering
## 2214     edible      none         several        woods         tapering
## 2215     edible      none         several        woods         tapering
## 2216     edible      none        solitary        woods         tapering
## 2217     edible      none         several        woods         tapering
## 2218     edible      none         several        woods         tapering
## 2219     edible      none         several        woods         tapering
## 2220     edible      none         several        woods         tapering
## 2221     edible      none         several        woods         tapering
## 2222     edible      none         several        woods         tapering
## 2223     edible      none         several        woods         tapering
## 2224     edible      none        solitary        woods         tapering
## 2225     edible      none         several        woods         tapering
## 2226     edible      none        solitary        woods         tapering
## 2227     edible      none       scattered      grasses         tapering
## 2228     edible      none        solitary        woods         tapering
## 2229     edible      none         several        woods         tapering
## 2230     edible      none         several        woods         tapering
## 2231     edible      none         several        woods         tapering
## 2232     edible      none        solitary        woods         tapering
## 2233     edible      none         several        woods         tapering
## 2234     edible      none         several        woods         tapering
## 2235     edible      none        solitary        woods         tapering
## 2236     edible      none        solitary        woods         tapering
## 2237     edible      none       scattered      grasses         tapering
## 2238  poisonous      foul        solitary        paths        enlarging
## 2239     edible      none        solitary        woods         tapering
## 2240     edible      none        solitary        woods         tapering
## 2241  poisonous   pungent         several      grasses        enlarging
## 2242     edible      none        solitary        woods         tapering
## 2243     edible      none        solitary        woods         tapering
## 2244     edible      none         several        woods         tapering
## 2245     edible      none         several        woods         tapering
## 2246     edible      none         several        woods         tapering
## 2247     edible      none        abundant      grasses         tapering
## 2248     edible      none        solitary        woods         tapering
## 2249     edible      none        solitary        woods         tapering
## 2250     edible      none        solitary        woods         tapering
## 2251     edible      none        solitary        woods         tapering
## 2252     edible      none       scattered      grasses         tapering
## 2253     edible      none         several        woods         tapering
## 2254     edible      none         several        woods         tapering
## 2255     edible      none        solitary        woods         tapering
## 2256     edible      none        solitary        woods         tapering
## 2257     edible      none         several        woods         tapering
## 2258     edible      none         several        woods         tapering
## 2259     edible      none         several        woods         tapering
## 2260     edible      none        abundant      grasses         tapering
## 2261     edible      none        solitary        woods         tapering
## 2262     edible      none        solitary        woods         tapering
## 2263     edible      none        solitary        woods         tapering
## 2264     edible      none        solitary        woods         tapering
## 2265     edible      none        solitary        woods         tapering
## 2266     edible      none        abundant      grasses         tapering
## 2267     edible      none         several        woods         tapering
## 2268     edible      none        solitary        woods         tapering
## 2269     edible      none         several        woods         tapering
## 2270     edible      none         several        woods         tapering
## 2271     edible      none       scattered      grasses         tapering
## 2272     edible      none         several        woods         tapering
## 2273     edible      none        solitary        woods         tapering
## 2274     edible      none         several        woods         tapering
## 2275     edible      none        solitary        woods         tapering
## 2276     edible      none        solitary        woods         tapering
## 2277     edible      none        solitary        woods         tapering
## 2278     edible      none         several        woods         tapering
## 2279     edible      none         several        woods         tapering
## 2280     edible      none        solitary        woods         tapering
## 2281     edible      none        solitary        woods         tapering
## 2282     edible      none         several        woods         tapering
## 2283     edible      none        solitary        woods         tapering
## 2284     edible      none        solitary        woods         tapering
## 2285  poisonous  creosote         several        woods        enlarging
## 2286     edible      none        solitary        woods         tapering
## 2287     edible      none        solitary        woods         tapering
## 2288  poisonous   pungent       scattered        urban        enlarging
## 2289     edible      none        solitary        woods         tapering
## 2290     edible      none        solitary        woods         tapering
## 2291     edible      none         several        woods         tapering
## 2292     edible      none         several        woods         tapering
## 2293     edible      none         several        woods         tapering
## 2294     edible      none        solitary        woods         tapering
## 2295     edible      none       scattered      grasses         tapering
## 2296     edible      none         several        woods         tapering
## 2297     edible      none       scattered      grasses         tapering
## 2298     edible      none        solitary        woods         tapering
## 2299     edible      none         several        woods         tapering
## 2300     edible      none         several        woods         tapering
## 2301     edible      none         several        woods         tapering
## 2302     edible      none         several        woods         tapering
## 2303     edible      none        solitary        woods         tapering
## 2304     edible      none         several        woods         tapering
## 2305     edible      none        solitary        woods         tapering
## 2306     edible      none         several        woods         tapering
## 2307     edible      none         several        woods         tapering
## 2308     edible      none        solitary        woods         tapering
## 2309     edible      none         several        woods         tapering
## 2310     edible      none        solitary        woods         tapering
## 2311     edible      none         several        woods         tapering
## 2312     edible      none        solitary        woods         tapering
## 2313     edible      none         several        woods         tapering
## 2314     edible      none        solitary        woods         tapering
## 2315     edible      none         several        woods         tapering
## 2316     edible      none         several        woods         tapering
## 2317     edible      none        solitary        woods         tapering
## 2318     edible      none        solitary        woods         tapering
## 2319     edible      none         several        woods         tapering
## 2320     edible      none        solitary        woods         tapering
## 2321     edible      none         several        woods         tapering
## 2322     edible      none        solitary        woods         tapering
## 2323     edible      none        solitary        woods         tapering
## 2324     edible      none        solitary        woods         tapering
## 2325     edible      none         several        woods         tapering
## 2326     edible      none        solitary        woods         tapering
## 2327     edible      none         several        woods         tapering
## 2328     edible      none         several        woods         tapering
## 2329     edible      none        solitary        woods         tapering
## 2330     edible      none         several        woods         tapering
## 2331     edible      none         several        woods         tapering
## 2332     edible      none        solitary        woods         tapering
## 2333     edible      none        solitary        woods         tapering
## 2334     edible      none        solitary        woods         tapering
## 2335     edible      none         several        woods         tapering
## 2336     edible      none         several        woods         tapering
## 2337     edible      none         several        woods         tapering
## 2338     edible      none        solitary        woods         tapering
## 2339     edible      none        solitary        woods         tapering
## 2340     edible      none         several        woods         tapering
## 2341     edible      none        solitary        woods         tapering
## 2342     edible      none         several        woods         tapering
## 2343     edible      none         several        woods         tapering
## 2344     edible      none        solitary        woods         tapering
## 2345     edible      none         several        woods         tapering
## 2346     edible      none       scattered      grasses         tapering
## 2347     edible      none        solitary        woods         tapering
## 2348     edible      none       scattered      grasses         tapering
## 2349     edible      none        solitary        woods         tapering
## 2350     edible      none        solitary        woods         tapering
## 2351  poisonous   pungent       scattered        urban        enlarging
## 2352     edible      none         several        woods         tapering
## 2353     edible      none        solitary        woods         tapering
## 2354     edible      none        solitary        woods         tapering
## 2355     edible      none         several        woods         tapering
## 2356     edible      none         several        woods         tapering
## 2357     edible      none        solitary        woods         tapering
## 2358     edible      none        solitary        woods         tapering
## 2359     edible      none         several        woods         tapering
## 2360     edible      none        solitary        woods         tapering
## 2361     edible      none        solitary        woods         tapering
## 2362     edible      none        solitary        woods         tapering
## 2363     edible      none        solitary        woods         tapering
## 2364     edible      none         several        woods         tapering
## 2365     edible      none        solitary        woods         tapering
## 2366     edible      none         several        woods         tapering
## 2367     edible      none        abundant      grasses         tapering
## 2368     edible      none         several        woods         tapering
## 2369     edible      none        solitary        woods         tapering
## 2370     edible      none        solitary        woods         tapering
## 2371     edible      none        solitary        woods         tapering
## 2372     edible      none        solitary        woods         tapering
## 2373     edible      none         several        woods         tapering
## 2374     edible      none        solitary        woods         tapering
## 2375  poisonous   pungent         several        urban        enlarging
## 2376     edible      none         several        woods         tapering
## 2377     edible      none       scattered      grasses         tapering
## 2378     edible      none       scattered      grasses         tapering
## 2379     edible      none         several        woods         tapering
## 2380     edible      none        solitary        woods         tapering
## 2381     edible      none         several        woods         tapering
## 2382     edible      none         several        woods         tapering
## 2383     edible      none        solitary        woods         tapering
## 2384     edible      none         several        woods         tapering
## 2385  poisonous      foul        solitary        woods        enlarging
## 2386     edible      none        solitary        woods         tapering
## 2387     edible      none        abundant      grasses         tapering
## 2388  poisonous   pungent         several      grasses        enlarging
## 2389     edible      none        solitary        woods         tapering
## 2390     edible      none         several        woods         tapering
## 2391     edible      none        solitary        woods         tapering
## 2392     edible      none         several        woods         tapering
## 2393     edible      none         several        woods         tapering
## 2394     edible      none         several        woods         tapering
## 2395     edible      none        solitary        woods         tapering
## 2396     edible      none         several        woods         tapering
## 2397     edible      none        solitary        woods         tapering
## 2398     edible      none        solitary        woods         tapering
## 2399     edible      none        solitary        woods         tapering
## 2400  poisonous   pungent         several      grasses        enlarging
## 2401     edible      none         several        woods         tapering
## 2402     edible      none         several        woods         tapering
## 2403     edible      none         several        woods         tapering
## 2404     edible      none         several        woods         tapering
## 2405     edible      none         several        woods         tapering
## 2406     edible      none        solitary        woods         tapering
## 2407     edible      none        solitary        woods         tapering
## 2408     edible      none        solitary        woods         tapering
## 2409     edible      none        solitary        woods         tapering
## 2410     edible      none         several        woods         tapering
## 2411     edible      none         several        woods         tapering
## 2412     edible      none         several        woods         tapering
## 2413     edible      none         several        woods         tapering
## 2414     edible      none         several        woods         tapering
## 2415     edible      none        solitary        woods         tapering
## 2416     edible      none         several        woods         tapering
## 2417     edible      none        solitary        woods         tapering
## 2418     edible      none        solitary        woods         tapering
## 2419     edible      none         several        woods         tapering
## 2420     edible      none        solitary        woods         tapering
## 2421     edible      none         several        woods         tapering
## 2422     edible      none        solitary        woods         tapering
## 2423     edible      none        solitary        woods         tapering
## 2424     edible      none        solitary        woods         tapering
## 2425     edible      none         several        woods         tapering
## 2426  poisonous  creosote         several        woods        enlarging
## 2427     edible      none        solitary        woods         tapering
## 2428     edible      none        solitary        woods         tapering
## 2429     edible      none        solitary        woods         tapering
## 2430     edible      none         several        woods         tapering
## 2431     edible      none        solitary        woods         tapering
## 2432     edible      none        solitary        woods         tapering
## 2433     edible      none        solitary        woods         tapering
## 2434     edible      none         several        woods         tapering
## 2435     edible      none        solitary        woods         tapering
## 2436     edible      none        solitary        woods         tapering
## 2437     edible      none         several        woods         tapering
## 2438     edible      none        solitary        woods         tapering
## 2439     edible      none         several        woods         tapering
## 2440     edible      none        solitary        woods         tapering
## 2441     edible      none        solitary        woods         tapering
## 2442     edible      none        solitary        woods         tapering
## 2443  poisonous      foul        solitary      grasses        enlarging
## 2444     edible      none         several        woods         tapering
## 2445     edible      none        solitary        woods         tapering
## 2446     edible      none         several        woods         tapering
## 2447     edible      none        solitary        woods         tapering
## 2448     edible      none         several        woods         tapering
## 2449     edible      none        solitary        woods         tapering
## 2450     edible      none        solitary        woods         tapering
## 2451     edible      none        solitary        woods         tapering
## 2452     edible      none        abundant      grasses         tapering
## 2453     edible      none        solitary        woods         tapering
## 2454     edible      none        solitary        woods         tapering
## 2455     edible      none         several        woods         tapering
## 2456     edible      none        solitary        woods         tapering
## 2457     edible      none         several        woods         tapering
## 2458     edible      none        solitary        woods         tapering
## 2459     edible      none         several        woods         tapering
## 2460     edible      none         several        woods         tapering
## 2461     edible      none        solitary        woods         tapering
## 2462     edible      none        solitary        woods         tapering
## 2463     edible      none         several        woods         tapering
## 2464     edible      none        solitary        woods         tapering
## 2465     edible      none         several        woods         tapering
## 2466     edible      none         several        woods         tapering
## 2467     edible      none         several        woods         tapering
## 2468     edible      none        solitary        woods         tapering
## 2469     edible      none         several        woods         tapering
## 2470     edible      none         several        woods         tapering
## 2471     edible      none         several        woods         tapering
## 2472     edible      none         several        woods         tapering
## 2473     edible      none         several        woods         tapering
## 2474     edible      none        solitary        woods         tapering
## 2475     edible      none         several        woods         tapering
## 2476     edible      none         several        woods         tapering
## 2477     edible      none        solitary        woods         tapering
## 2478  poisonous   pungent       scattered        urban        enlarging
## 2479     edible      none       scattered      grasses         tapering
## 2480     edible      none         several        woods         tapering
## 2481     edible      none        solitary        woods         tapering
## 2482  poisonous  creosote       scattered        woods        enlarging
## 2483     edible      none        solitary        woods         tapering
## 2484     edible      none         several        woods         tapering
## 2485     edible      none        solitary        woods         tapering
## 2486     edible      none         several        woods         tapering
## 2487     edible      none       scattered      grasses         tapering
## 2488     edible      none         several        woods         tapering
## 2489     edible      none         several        woods         tapering
## 2490     edible      none         several        woods         tapering
## 2491     edible      none        solitary        woods         tapering
## 2492     edible      none         several        woods         tapering
## 2493     edible      none         several        woods         tapering
## 2494     edible      none        solitary        woods         tapering
## 2495  poisonous   pungent         several        urban        enlarging
## 2496     edible      none        solitary        woods         tapering
## 2497     edible      none        solitary        woods         tapering
## 2498     edible      none         several        woods         tapering
## 2499     edible      none         several        woods         tapering
## 2500     edible      none       scattered      grasses         tapering
## 2501     edible      none        abundant      grasses         tapering
## 2502     edible      none         several        woods         tapering
## 2503     edible      none         several        woods         tapering
## 2504     edible      none        solitary        woods         tapering
## 2505     edible      none        solitary        woods         tapering
## 2506     edible      none        solitary        woods         tapering
## 2507     edible      none        solitary        woods         tapering
## 2508     edible      none         several        woods         tapering
## 2509     edible      none         several        woods         tapering
## 2510     edible      none        solitary        woods         tapering
## 2511     edible      none         several        woods         tapering
## 2512  poisonous  creosote       scattered        woods        enlarging
## 2513     edible      none        solitary        woods         tapering
## 2514     edible      none        solitary        woods         tapering
## 2515     edible      none         several        woods         tapering
## 2516     edible      none         several        woods         tapering
## 2517     edible      none        solitary        woods         tapering
## 2518     edible      none       scattered      grasses         tapering
## 2519     edible      none        solitary        woods         tapering
## 2520     edible      none         several        woods         tapering
## 2521     edible      none         several        woods         tapering
## 2522     edible      none         several        woods         tapering
## 2523     edible      none        solitary        woods         tapering
## 2524     edible      none        solitary        woods         tapering
## 2525     edible      none         several        woods         tapering
## 2526     edible      none        solitary        woods         tapering
## 2527     edible      none        solitary        woods         tapering
## 2528     edible      none         several        woods         tapering
## 2529     edible      none        solitary        woods         tapering
## 2530     edible      none         several        woods         tapering
## 2531     edible      none        solitary        woods         tapering
## 2532     edible      none        solitary        woods         tapering
## 2533  poisonous      foul        solitary        paths        enlarging
## 2534     edible      none         several        woods         tapering
## 2535     edible      none         several        woods         tapering
## 2536  poisonous      foul         several        woods        enlarging
## 2537     edible      none         several        woods         tapering
## 2538     edible      none         several        woods         tapering
## 2539  poisonous      foul        solitary        woods        enlarging
## 2540  poisonous  creosote       scattered        woods        enlarging
## 2541     edible      none         several        woods         tapering
## 2542     edible      none        solitary        woods         tapering
## 2543     edible      none         several        woods         tapering
## 2544     edible      none        solitary        woods         tapering
## 2545     edible      none         several        woods         tapering
## 2546     edible      none        solitary        woods         tapering
## 2547     edible      none        solitary        woods         tapering
## 2548     edible      none         several        woods         tapering
## 2549     edible      none        solitary        woods         tapering
## 2550     edible      none         several        woods         tapering
## 2551     edible      none        solitary        woods         tapering
## 2552     edible      none         several        woods         tapering
## 2553     edible      none        solitary        woods         tapering
## 2554     edible      none        solitary        woods         tapering
## 2555     edible      none         several        woods         tapering
## 2556     edible      none         several        woods         tapering
## 2557     edible      none         several        woods         tapering
## 2558     edible      none         several        woods         tapering
## 2559     edible      none        solitary        woods         tapering
## 2560  poisonous  creosote         several        woods        enlarging
## 2561     edible      none        solitary        woods         tapering
## 2562     edible      none         several        woods         tapering
## 2563     edible      none        solitary        woods         tapering
## 2564     edible      none         several        woods         tapering
## 2565     edible      none        solitary        woods         tapering
## 2566  poisonous      foul        solitary        woods        enlarging
## 2567     edible      none        solitary        woods         tapering
## 2568     edible      none         several        woods         tapering
## 2569     edible      none         several        woods         tapering
## 2570     edible      none         several        woods         tapering
## 2571  poisonous      foul         several      grasses        enlarging
## 2572     edible      none        solitary        woods         tapering
## 2573     edible      none         several        woods         tapering
## 2574     edible      none         several        woods         tapering
## 2575     edible      none        solitary        woods         tapering
## 2576     edible      none        solitary        woods         tapering
## 2577     edible      none        solitary        woods         tapering
## 2578     edible      none        solitary        woods         tapering
## 2579     edible      none        solitary        woods         tapering
## 2580     edible      none         several        woods         tapering
## 2581     edible      none         several        woods         tapering
## 2582     edible      none         several        woods         tapering
## 2583     edible      none         several        woods         tapering
## 2584     edible      none         several        woods         tapering
## 2585     edible      none         several        woods         tapering
## 2586     edible      none        solitary        woods         tapering
## 2587     edible      none         several        woods         tapering
## 2588     edible      none         several        woods         tapering
## 2589     edible      none         several        woods         tapering
## 2590     edible      none        solitary        woods         tapering
## 2591     edible      none         several        woods         tapering
## 2592     edible      none        solitary        woods         tapering
## 2593     edible      none         several        woods         tapering
## 2594  poisonous      foul         several        paths        enlarging
## 2595     edible      none        solitary        woods         tapering
## 2596     edible      none        solitary        woods         tapering
## 2597     edible      none        solitary        woods         tapering
## 2598     edible      none        solitary        woods         tapering
## 2599     edible      none         several        woods         tapering
## 2600     edible      none        solitary        woods         tapering
## 2601     edible      none        solitary        woods         tapering
## 2602     edible      none         several        woods         tapering
## 2603     edible      none        solitary        woods         tapering
## 2604     edible      none         several        woods         tapering
## 2605  poisonous      foul         several        paths        enlarging
## 2606     edible      none         several        woods         tapering
## 2607     edible      none         several        woods         tapering
## 2608     edible      none        solitary        woods         tapering
## 2609     edible      none         several        woods         tapering
## 2610     edible      none        solitary        woods         tapering
## 2611     edible      none         several        woods         tapering
## 2612     edible      none        solitary        woods         tapering
## 2613     edible      none        solitary        woods         tapering
## 2614     edible      none         several        woods         tapering
## 2615     edible      none        solitary        woods         tapering
## 2616     edible      none        solitary        woods         tapering
## 2617     edible      none        solitary        woods         tapering
## 2618     edible      none        solitary        woods         tapering
## 2619     edible      none        solitary        woods         tapering
## 2620     edible      none         several        woods         tapering
## 2621     edible      none         several        woods         tapering
## 2622     edible      none        solitary        woods         tapering
## 2623     edible      none        solitary        woods         tapering
## 2624     edible      none         several        woods         tapering
## 2625     edible      none         several        woods         tapering
## 2626     edible      none         several        woods         tapering
## 2627  poisonous  creosote         several        woods        enlarging
## 2628     edible      none         several        woods         tapering
## 2629     edible      none        solitary        woods         tapering
## 2630     edible      none        abundant      grasses         tapering
## 2631     edible      none         several        woods         tapering
## 2632     edible      none        solitary        woods         tapering
## 2633     edible      none         several        woods         tapering
## 2634     edible      none         several        woods         tapering
## 2635     edible      none         several        woods         tapering
## 2636     edible      none        solitary        woods         tapering
## 2637     edible      none         several        woods         tapering
## 2638     edible      none         several        woods         tapering
## 2639     edible      none         several        woods         tapering
## 2640     edible      none        solitary        woods         tapering
## 2641     edible      none         several        woods         tapering
## 2642     edible      none         several        woods         tapering
## 2643     edible      none         several        woods         tapering
## 2644     edible      none        solitary        woods         tapering
## 2645     edible      none        solitary        woods         tapering
## 2646     edible      none        solitary        woods         tapering
## 2647     edible      none       scattered      grasses         tapering
## 2648     edible      none         several        woods         tapering
## 2649     edible      none        solitary        woods         tapering
## 2650     edible      none        solitary        woods         tapering
## 2651     edible      none         several        woods         tapering
## 2652     edible      none        solitary        woods         tapering
## 2653     edible      none        solitary        woods         tapering
## 2654     edible      none         several        woods         tapering
## 2655     edible      none         several        woods         tapering
## 2656     edible      none        solitary        woods         tapering
## 2657     edible      none         several        woods         tapering
## 2658     edible      none         several        woods         tapering
## 2659     edible      none        solitary        woods         tapering
## 2660     edible      none         several        woods         tapering
## 2661     edible      none         several        woods         tapering
## 2662     edible      none        solitary        woods         tapering
## 2663     edible      none         several        woods         tapering
## 2664     edible      none         several        woods         tapering
## 2665     edible      none        solitary        woods         tapering
## 2666     edible      none         several        woods         tapering
## 2667     edible      none        solitary        woods         tapering
## 2668     edible      none        solitary        woods         tapering
## 2669     edible      none        solitary        woods         tapering
## 2670     edible      none         several        woods         tapering
## 2671     edible      none        solitary        woods         tapering
## 2672     edible      none         several        woods         tapering
## 2673     edible      none        solitary        woods         tapering
## 2674     edible      none         several        woods         tapering
## 2675     edible      none         several        woods         tapering
## 2676     edible      none         several        woods         tapering
## 2677     edible      none         several        woods         tapering
## 2678     edible      none        solitary        woods         tapering
## 2679     edible      none        solitary        woods         tapering
## 2680     edible      none         several        woods         tapering
## 2681     edible      none        solitary        woods         tapering
## 2682     edible      none         several        woods         tapering
## 2683  poisonous  creosote         several        woods        enlarging
## 2684     edible      none        solitary        woods         tapering
## 2685     edible      none         several        woods         tapering
## 2686     edible      none        solitary        woods         tapering
## 2687     edible      none         several        woods         tapering
## 2688     edible      none        solitary        woods         tapering
## 2689     edible      none         several        woods         tapering
## 2690     edible      none        abundant      grasses         tapering
## 2691     edible      none        solitary        woods         tapering
## 2692     edible      none         several        woods         tapering
## 2693     edible      none         several        woods         tapering
## 2694     edible      none         several        woods         tapering
## 2695     edible      none        solitary        woods         tapering
## 2696     edible      none        solitary        woods         tapering
## 2697  poisonous      foul        solitary      grasses        enlarging
## 2698     edible      none         several        woods         tapering
## 2699     edible      none         several        woods         tapering
## 2700     edible      none         several        woods         tapering
## 2701     edible      none        solitary        woods         tapering
## 2702     edible      none         several        woods         tapering
## 2703     edible      none        solitary        woods         tapering
## 2704     edible      none         several        woods         tapering
## 2705     edible      none         several        woods         tapering
## 2706     edible      none        solitary        woods         tapering
## 2707     edible      none         several        woods         tapering
## 2708     edible      none        solitary        woods         tapering
## 2709     edible      none         several        woods         tapering
## 2710     edible      none         several        woods         tapering
## 2711     edible      none        solitary        woods         tapering
## 2712     edible      none        solitary        woods         tapering
## 2713     edible      none        solitary        woods         tapering
## 2714     edible      none         several        woods         tapering
## 2715     edible      none        solitary        woods         tapering
## 2716     edible      none        solitary        woods         tapering
## 2717     edible      none         several        woods         tapering
## 2718     edible      none        solitary        woods         tapering
## 2719     edible      none         several        woods         tapering
## 2720     edible      none         several        woods         tapering
## 2721     edible      none        solitary        woods         tapering
## 2722     edible      none        solitary        woods         tapering
## 2723     edible      none         several        woods         tapering
## 2724     edible      none         several        woods         tapering
## 2725     edible      none        solitary        woods         tapering
## 2726     edible      none        solitary        woods         tapering
## 2727     edible      none        solitary        woods         tapering
## 2728     edible      none         several        woods         tapering
## 2729     edible      none        solitary        woods         tapering
## 2730     edible      none       scattered      grasses         tapering
## 2731     edible      none        solitary        woods         tapering
## 2732     edible      none        solitary        woods         tapering
## 2733     edible      none        solitary        woods         tapering
## 2734     edible      none        solitary        woods         tapering
## 2735     edible      none         several        woods         tapering
## 2736     edible      none        solitary        woods         tapering
## 2737     edible      none        solitary        woods         tapering
## 2738     edible      none        solitary        woods         tapering
## 2739     edible      none        solitary        woods         tapering
## 2740     edible      none        solitary        woods         tapering
## 2741     edible      none        solitary        woods         tapering
## 2742     edible      none        solitary        woods         tapering
## 2743     edible      none         several        woods         tapering
## 2744     edible      none         several        woods         tapering
## 2745     edible      none        solitary        woods         tapering
## 2746     edible      none         several        woods         tapering
## 2747     edible      none        solitary        woods         tapering
## 2748     edible      none        solitary        woods         tapering
## 2749  poisonous  creosote         several        woods        enlarging
## 2750     edible      none        solitary        woods         tapering
## 2751     edible      none        solitary        woods         tapering
## 2752     edible      none        solitary        woods         tapering
## 2753     edible      none         several        woods         tapering
## 2754     edible      none         several        woods         tapering
## 2755     edible      none         several        woods         tapering
## 2756     edible      none        solitary        woods         tapering
## 2757     edible      none         several        woods         tapering
## 2758     edible      none        solitary        woods         tapering
## 2759     edible      none        solitary        woods         tapering
## 2760     edible      none        solitary        woods         tapering
## 2761     edible      none        solitary        woods         tapering
## 2762     edible      none        solitary        woods         tapering
## 2763     edible      none         several        woods         tapering
## 2764     edible      none         several        woods         tapering
## 2765     edible      none         several        woods         tapering
## 2766  poisonous      foul         several        woods        enlarging
## 2767     edible      none         several        woods         tapering
## 2768     edible      none        solitary        woods         tapering
## 2769     edible      none        solitary        woods         tapering
## 2770  poisonous      foul        solitary        woods        enlarging
## 2771     edible      none         several        woods         tapering
## 2772     edible      none         several        woods         tapering
## 2773     edible      none         several        woods         tapering
## 2774     edible      none         several        woods         tapering
## 2775     edible      none        solitary        woods         tapering
## 2776     edible      none         several        woods         tapering
## 2777     edible      none         several        woods         tapering
## 2778     edible      none         several        woods         tapering
## 2779     edible      none         several        woods         tapering
## 2780     edible      none        solitary        woods         tapering
## 2781     edible      none         several        woods         tapering
## 2782     edible      none        solitary        woods         tapering
## 2783     edible      none        solitary        woods         tapering
## 2784     edible      none         several        woods         tapering
## 2785     edible      none        solitary        woods         tapering
## 2786     edible      none        solitary        woods         tapering
## 2787     edible      none        solitary        woods         tapering
## 2788     edible      none       scattered      grasses         tapering
## 2789     edible      none        solitary        woods         tapering
## 2790     edible      none        solitary        woods         tapering
## 2791     edible      none        solitary        woods         tapering
## 2792     edible      none         several        woods         tapering
## 2793     edible      none        solitary        woods         tapering
## 2794     edible      none         several        woods         tapering
## 2795     edible      none         several        woods         tapering
## 2796     edible      none         several        woods         tapering
## 2797  poisonous  creosote       scattered        woods        enlarging
## 2798     edible      none        solitary        woods         tapering
## 2799     edible      none         several        woods         tapering
## 2800     edible      none        solitary        woods         tapering
## 2801     edible      none       scattered      grasses         tapering
## 2802     edible      none        solitary        woods         tapering
## 2803     edible      none         several        woods         tapering
## 2804     edible      none        solitary        woods         tapering
## 2805     edible      none        solitary        woods         tapering
## 2806     edible      none        solitary        woods         tapering
## 2807     edible      none         several        woods         tapering
## 2808     edible      none         several        woods         tapering
## 2809     edible      none         several        woods         tapering
## 2810     edible      none         several        woods         tapering
## 2811     edible      none         several        woods         tapering
## 2812     edible      none         several        woods         tapering
## 2813     edible      none        solitary        woods         tapering
## 2814     edible      none         several        woods         tapering
## 2815     edible      none         several        woods         tapering
## 2816     edible      none        solitary        woods         tapering
## 2817     edible      none       scattered      grasses         tapering
## 2818     edible      none        solitary        woods         tapering
## 2819     edible      none        solitary        woods         tapering
## 2820     edible      none         several        woods         tapering
## 2821     edible      none        solitary        woods         tapering
## 2822     edible      none        solitary        woods         tapering
## 2823     edible      none         several        woods         tapering
## 2824     edible      none        solitary        woods         tapering
## 2825     edible      none         several        woods         tapering
## 2826     edible      none         several        woods         tapering
## 2827     edible      none         several        woods         tapering
## 2828     edible      none        solitary        woods         tapering
## 2829     edible      none        solitary        woods         tapering
## 2830     edible      none         several        woods         tapering
## 2831     edible      none        solitary        woods         tapering
## 2832     edible      none         several        woods         tapering
## 2833     edible      none        solitary        woods         tapering
## 2834     edible      none         several        woods         tapering
## 2835     edible      none        solitary        woods         tapering
## 2836     edible      none         several        woods         tapering
## 2837     edible      none        solitary        woods         tapering
## 2838     edible      none        solitary        woods         tapering
## 2839     edible      none        solitary        woods         tapering
## 2840     edible      none         several        woods         tapering
## 2841  poisonous  creosote         several        woods        enlarging
## 2842     edible      none        solitary        woods         tapering
## 2843     edible      none         several        woods         tapering
## 2844     edible      none       scattered      grasses         tapering
## 2845     edible      none        solitary        woods         tapering
## 2846     edible      none        solitary        woods         tapering
## 2847     edible      none        solitary        woods         tapering
## 2848     edible      none        solitary        woods         tapering
## 2849     edible      none         several        woods         tapering
## 2850     edible      none        solitary        woods         tapering
## 2851     edible      none        solitary        woods         tapering
## 2852     edible      none         several        woods         tapering
## 2853     edible      none         several        woods         tapering
## 2854     edible      none        solitary        woods         tapering
## 2855     edible      none         several        woods         tapering
## 2856     edible      none        solitary        woods         tapering
## 2857     edible      none         several        woods         tapering
## 2858     edible      none        solitary        woods         tapering
## 2859     edible      none        solitary        woods         tapering
## 2860  poisonous  creosote       scattered        woods        enlarging
## 2861     edible      none         several        woods         tapering
## 2862     edible      none         several        woods         tapering
## 2863     edible      none        solitary        woods         tapering
## 2864     edible      none         several        woods         tapering
## 2865     edible      none        solitary        woods         tapering
## 2866     edible      none        solitary        woods         tapering
## 2867     edible      none        solitary        woods         tapering
## 2868     edible      none        solitary        woods         tapering
## 2869     edible      none         several        woods         tapering
## 2870     edible      none         several        woods         tapering
## 2871     edible      none         several        woods         tapering
## 2872     edible      none        solitary        woods         tapering
## 2873     edible      none        solitary        woods         tapering
## 2874     edible      none        solitary        woods         tapering
## 2875     edible      none        solitary        woods         tapering
## 2876     edible      none        solitary        woods         tapering
## 2877     edible      none        solitary        woods         tapering
## 2878     edible      none        solitary        woods         tapering
## 2879     edible      none        solitary        woods         tapering
## 2880     edible      none         several        woods         tapering
## 2881     edible      none       scattered      grasses         tapering
## 2882     edible      none         several        woods         tapering
## 2883     edible      none        solitary        woods         tapering
## 2884     edible      none         several        woods         tapering
## 2885     edible      none        solitary        woods         tapering
## 2886     edible      none         several        woods         tapering
## 2887  poisonous  creosote         several        woods        enlarging
## 2888     edible      none         several        woods         tapering
## 2889     edible      none         several        woods         tapering
## 2890     edible      none        abundant      grasses         tapering
## 2891     edible      none        solitary        woods         tapering
## 2892  poisonous  creosote         several        woods        enlarging
## 2893     edible      none         several        woods         tapering
## 2894     edible      none         several        woods         tapering
## 2895     edible      none         several        woods         tapering
## 2896     edible      none         several        woods         tapering
## 2897     edible      none         several        woods         tapering
## 2898     edible      none        solitary        woods         tapering
## 2899     edible      none         several        woods         tapering
## 2900     edible      none        solitary        woods         tapering
## 2901     edible      none        solitary        woods         tapering
## 2902     edible      none         several        woods         tapering
## 2903  poisonous      foul        solitary        paths        enlarging
## 2904     edible      none        solitary        woods         tapering
## 2905     edible      none         several        woods         tapering
## 2906     edible      none        solitary        woods         tapering
## 2907     edible      none        solitary        woods         tapering
## 2908     edible      none        solitary        woods         tapering
## 2909     edible      none        solitary        woods         tapering
## 2910     edible      none        solitary        woods         tapering
## 2911     edible      none        solitary        woods         tapering
## 2912     edible      none         several        woods         tapering
## 2913     edible      none         several        woods         tapering
## 2914     edible      none        solitary        woods         tapering
## 2915     edible      none         several        woods         tapering
## 2916     edible      none        solitary        woods         tapering
## 2917     edible      none        solitary        woods         tapering
## 2918     edible      none        solitary        woods         tapering
## 2919     edible      none         several        woods         tapering
## 2920     edible      none        solitary        woods         tapering
## 2921     edible      none         several        woods         tapering
## 2922     edible      none        solitary        woods         tapering
## 2923     edible      none        solitary        woods         tapering
## 2924     edible      none        solitary        woods         tapering
## 2925     edible      none        solitary        woods         tapering
## 2926  poisonous      foul        solitary        paths        enlarging
## 2927     edible      none         several        woods         tapering
## 2928     edible      none        solitary        woods         tapering
## 2929     edible      none         several        woods         tapering
## 2930     edible      none         several        woods         tapering
## 2931     edible      none        solitary        woods         tapering
## 2932     edible      none        solitary        woods         tapering
## 2933     edible      none         several        woods         tapering
## 2934     edible      none         several        woods         tapering
## 2935     edible      none         several        woods         tapering
## 2936     edible      none         several        woods         tapering
## 2937  poisonous      foul         several        paths        enlarging
## 2938     edible      none        solitary        woods         tapering
## 2939     edible      none        solitary        woods         tapering
## 2940     edible      none         several        woods         tapering
## 2941     edible      none         several        woods         tapering
## 2942     edible      none        solitary        woods         tapering
## 2943     edible      none         several        woods         tapering
## 2944     edible      none         several        woods         tapering
## 2945     edible      none        solitary        woods         tapering
## 2946     edible      none        solitary        woods         tapering
## 2947     edible      none         several        woods         tapering
## 2948     edible      none         several        woods         tapering
## 2949     edible      none         several        woods         tapering
## 2950     edible      none        solitary        woods         tapering
## 2951     edible      none         several        woods         tapering
## 2952     edible      none        solitary        woods         tapering
## 2953     edible      none        solitary        woods         tapering
## 2954     edible      none        solitary        woods         tapering
## 2955     edible      none         several        woods         tapering
## 2956     edible      none        solitary        woods         tapering
## 2957     edible      none        solitary        woods         tapering
## 2958     edible      none        solitary        woods         tapering
## 2959     edible      none         several        woods         tapering
## 2960     edible      none         several        woods         tapering
## 2961     edible      none        solitary        woods         tapering
## 2962     edible      none        solitary        woods         tapering
## 2963     edible      none        solitary        woods         tapering
## 2964     edible      none        solitary        woods         tapering
## 2965     edible      none         several        woods         tapering
## 2966     edible      none       scattered      grasses         tapering
## 2967     edible      none         several        woods         tapering
## 2968     edible      none        solitary        woods         tapering
## 2969     edible      none        solitary        woods         tapering
## 2970     edible      none        solitary        woods         tapering
## 2971     edible      none         several        woods         tapering
## 2972     edible      none         several        woods         tapering
## 2973     edible      none        solitary        woods         tapering
## 2974     edible      none        solitary        woods         tapering
## 2975     edible      none        solitary        woods         tapering
## 2976     edible      none         several        woods         tapering
## 2977     edible      none        solitary        woods         tapering
## 2978     edible      none        solitary        woods         tapering
## 2979     edible      none         several        woods         tapering
## 2980     edible      none         several        woods         tapering
## 2981     edible      none         several        woods         tapering
## 2982     edible      none         several        woods         tapering
## 2983     edible      none         several        woods         tapering
## 2984     edible      none        solitary        woods         tapering
## 2985     edible      none        solitary        woods         tapering
## 2986     edible      none        solitary        woods         tapering
## 2987     edible      none         several        woods         tapering
## 2988     edible      none        solitary        woods         tapering
## 2989     edible      none         several        woods         tapering
## 2990  poisonous      foul         several        woods        enlarging
## 2991     edible      none         several        woods         tapering
## 2992     edible      none        solitary        woods         tapering
## 2993     edible      none        solitary        woods         tapering
## 2994     edible      none         several        woods         tapering
## 2995     edible      none         several        woods         tapering
## 2996     edible      none        solitary        woods         tapering
## 2997     edible      none        solitary        woods         tapering
## 2998     edible      none         several        woods         tapering
## 2999     edible      none         several        woods         tapering
## 3000     edible      none         several        woods         tapering
## 3001  poisonous      foul         several        paths        enlarging
## 3002     edible      none        solitary        woods         tapering
## 3003  poisonous      foul        solitary        woods        enlarging
## 3004  poisonous  creosote       scattered        woods        enlarging
## 3005     edible      none        solitary        woods         tapering
## 3006     edible      none         several        woods         tapering
## 3007     edible      none        solitary        woods         tapering
## 3008     edible      none        solitary        woods         tapering
## 3009  poisonous      foul        solitary        paths        enlarging
## 3010     edible      none         several        woods         tapering
## 3011     edible      none        solitary        woods         tapering
## 3012     edible      none        solitary        woods         tapering
## 3013  poisonous  creosote       scattered        woods        enlarging
## 3014     edible      none        solitary        woods         tapering
## 3015     edible      none         several        woods         tapering
## 3016  poisonous      foul         several      grasses        enlarging
## 3017  poisonous      foul        solitary        paths        enlarging
## 3018     edible      none         several        woods         tapering
## 3019     edible      none         several        woods         tapering
## 3020     edible      none         several        woods         tapering
## 3021     edible      none         several        woods         tapering
## 3022     edible      none        solitary        woods         tapering
## 3023     edible      none         several        woods         tapering
## 3024     edible      none        solitary        woods         tapering
## 3025     edible      none         several        woods         tapering
## 3026  poisonous  creosote       scattered        woods        enlarging
## 3027  poisonous      foul        solitary        woods        enlarging
## 3028     edible      none        solitary        woods         tapering
## 3029     edible      none         several        woods         tapering
## 3030     edible      none         several        woods         tapering
## 3031     edible      none        solitary        woods         tapering
## 3032     edible      none        solitary        woods         tapering
## 3033     edible      none         several        woods         tapering
## 3034  poisonous      foul         several        paths        enlarging
## 3035     edible      none        solitary        woods         tapering
## 3036     edible      none         several        woods         tapering
## 3037  poisonous  creosote       scattered        woods        enlarging
## 3038     edible      none        solitary        woods         tapering
## 3039     edible      none         several        woods         tapering
## 3040  poisonous      foul         several      grasses        enlarging
## 3041  poisonous      foul         several        woods        enlarging
## 3042     edible      none         several        woods         tapering
## 3043     edible      none         several        woods         tapering
## 3044     edible      none         several        woods         tapering
## 3045     edible      none         several        woods         tapering
## 3046     edible      none         several        woods         tapering
## 3047  poisonous  creosote         several        woods        enlarging
## 3048     edible      none        solitary        woods         tapering
## 3049     edible      none         several        woods         tapering
## 3050     edible      none        solitary        woods         tapering
## 3051     edible      none         several        woods         tapering
## 3052  poisonous  creosote         several        woods        enlarging
## 3053     edible      none         several        woods         tapering
## 3054     edible      none        solitary        woods         tapering
## 3055     edible      none         several        woods         tapering
## 3056     edible      none         several        woods         tapering
## 3057  poisonous  creosote       scattered        woods        enlarging
## 3058  poisonous  creosote       scattered        woods        enlarging
## 3059     edible      none        solitary        woods         tapering
## 3060  poisonous      foul        solitary        woods        enlarging
## 3061  poisonous  creosote         several        woods        enlarging
## 3062  poisonous      foul         several        paths        enlarging
## 3063     edible      none         several        woods         tapering
## 3064  poisonous      foul        solitary        paths        enlarging
## 3065     edible      none         several        woods         tapering
## 3066     edible      none        solitary        woods         tapering
## 3067     edible      none        solitary        woods         tapering
## 3068  poisonous  creosote       scattered        woods        enlarging
## 3069  poisonous      foul         several        paths        enlarging
## 3070     edible      none         several        woods         tapering
## 3071     edible      none        solitary        woods         tapering
## 3072     edible      none        solitary        woods         tapering
## 3073  poisonous      foul         several        paths        enlarging
## 3074     edible      none        solitary        woods         tapering
## 3075  poisonous      foul        solitary        paths        enlarging
## 3076     edible      none        solitary        woods         tapering
## 3077     edible      none         several        woods         tapering
## 3078  poisonous      foul         several        paths        enlarging
## 3079     edible      none         several        woods         tapering
## 3080     edible      none        solitary        woods         tapering
## 3081     edible      none        solitary        woods         tapering
## 3082  poisonous      foul         several        paths        enlarging
## 3083     edible      none         several        woods         tapering
## 3084     edible      none         several        woods         tapering
## 3085  poisonous      foul         several      grasses        enlarging
## 3086     edible      none        solitary        woods         tapering
## 3087  poisonous      foul        solitary        woods        enlarging
## 3088     edible      none        solitary        woods         tapering
## 3089  poisonous      foul        solitary      grasses        enlarging
## 3090  poisonous      foul        solitary        paths        enlarging
## 3091  poisonous      foul        solitary      grasses        enlarging
## 3092     edible      none        solitary        woods         tapering
## 3093  poisonous      foul         several      grasses        enlarging
## 3094     edible      none         several        woods         tapering
## 3095  poisonous  creosote         several        woods        enlarging
## 3096     edible      none         several        woods         tapering
## 3097  poisonous  creosote       scattered        woods        enlarging
## 3098     edible      none        solitary        woods         tapering
## 3099     edible      none        solitary        woods         tapering
## 3100     edible      none        solitary        woods         tapering
## 3101     edible      none        solitary        woods         tapering
## 3102  poisonous      foul        solitary      grasses        enlarging
## 3103  poisonous      foul        solitary        paths        enlarging
## 3104  poisonous  creosote       scattered        woods        enlarging
## 3105     edible      none         several        woods         tapering
## 3106     edible      none        solitary        woods         tapering
## 3107     edible      none         several        woods         tapering
## 3108     edible      none        solitary        woods         tapering
## 3109  poisonous      foul         several      grasses        enlarging
## 3110  poisonous  creosote         several        woods        enlarging
## 3111     edible      none        solitary        woods         tapering
## 3112     edible      none         several        woods         tapering
## 3113     edible      none         several        woods         tapering
## 3114     edible      none         several        woods         tapering
## 3115     edible      none        solitary        woods         tapering
## 3116     edible      none        solitary        woods         tapering
## 3117     edible      none         several        woods         tapering
## 3118  poisonous  creosote         several        woods        enlarging
## 3119  poisonous  creosote         several        woods        enlarging
## 3120     edible      none        solitary        woods         tapering
## 3121     edible      none        solitary        woods         tapering
## 3122  poisonous      foul        solitary        woods        enlarging
## 3123     edible      none         several        woods         tapering
## 3124  poisonous  creosote       scattered        woods        enlarging
## 3125     edible      none        solitary        woods         tapering
## 3126     edible      none        solitary        woods         tapering
## 3127     edible      none         several        woods         tapering
## 3128     edible      none         several        woods         tapering
## 3129     edible      none        solitary        woods         tapering
## 3130     edible      none         several        woods         tapering
## 3131     edible      none        solitary        woods         tapering
## 3132     edible      none        solitary        woods         tapering
## 3133     edible      none         several        woods         tapering
## 3134     edible      none        solitary        woods         tapering
## 3135     edible      none        solitary        woods         tapering
## 3136     edible      none         several        woods         tapering
## 3137     edible      none         several        woods         tapering
## 3138  poisonous      foul         several        paths        enlarging
## 3139     edible      none        solitary        woods         tapering
## 3140     edible      none         several        woods         tapering
## 3141  poisonous      foul        solitary        woods        enlarging
## 3142     edible      none        solitary        woods         tapering
## 3143     edible      none        solitary        woods         tapering
## 3144     edible      none        solitary        woods         tapering
## 3145     edible      none        solitary        woods         tapering
## 3146     edible      none         several        woods         tapering
## 3147  poisonous  creosote       scattered        woods        enlarging
## 3148  poisonous  creosote       scattered        woods        enlarging
## 3149     edible      none         several        woods         tapering
## 3150     edible      none        solitary        woods         tapering
## 3151     edible      none        solitary        woods         tapering
## 3152  poisonous      foul        solitary        woods        enlarging
## 3153     edible      none         several        woods         tapering
## 3154     edible      none        solitary        woods         tapering
## 3155     edible      none        solitary        woods         tapering
## 3156  poisonous  creosote       scattered        woods        enlarging
## 3157     edible      none         several        woods         tapering
## 3158     edible      none         several        woods         tapering
## 3159  poisonous      foul        solitary        woods        enlarging
## 3160     edible      none        solitary        woods         tapering
## 3161  poisonous      foul         several        paths        enlarging
## 3162  poisonous  creosote       scattered        woods        enlarging
## 3163     edible      none         several        woods         tapering
## 3164  poisonous      foul         several        paths        enlarging
## 3165  poisonous  creosote       scattered        woods        enlarging
## 3166  poisonous      foul         several        paths        enlarging
## 3167     edible      none         several        woods         tapering
## 3168  poisonous      foul         several        paths        enlarging
## 3169  poisonous  creosote       scattered        woods        enlarging
## 3170     edible      none        solitary        woods         tapering
## 3171     edible      none         several        woods         tapering
## 3172     edible      none        solitary        woods         tapering
## 3173  poisonous      foul         several        paths        enlarging
## 3174  poisonous  creosote         several        woods        enlarging
## 3175     edible      none         several        woods         tapering
## 3176     edible      none        solitary        woods         tapering
## 3177     edible      none        solitary        woods         tapering
## 3178     edible      none         several        woods         tapering
## 3179  poisonous      foul         several      grasses        enlarging
## 3180     edible      none         several        woods         tapering
## 3181  poisonous  creosote         several        woods        enlarging
## 3182  poisonous  creosote       scattered        woods        enlarging
## 3183     edible      none        solitary        woods         tapering
## 3184     edible      none        solitary        woods         tapering
## 3185     edible      none         several        woods         tapering
## 3186     edible      none         several        woods         tapering
## 3187  poisonous      foul         several        woods        enlarging
## 3188  poisonous      foul        solitary        paths        enlarging
## 3189     edible      none        solitary        woods         tapering
## 3190  poisonous      foul         several      grasses        enlarging
## 3191  poisonous  creosote       scattered        woods        enlarging
## 3192     edible      none        solitary        woods         tapering
## 3193  poisonous      foul         several        woods        enlarging
## 3194     edible      none        solitary        woods         tapering
## 3195     edible      none         several        woods         tapering
## 3196     edible      none        solitary        woods         tapering
## 3197     edible      none         several        woods         tapering
## 3198     edible      none         several        woods         tapering
## 3199  poisonous      foul         several      grasses        enlarging
## 3200     edible      none        solitary        woods         tapering
## 3201  poisonous      foul        solitary        paths        enlarging
## 3202     edible      none        solitary        woods         tapering
## 3203     edible      none         several        woods         tapering
## 3204     edible      none        solitary        woods         tapering
## 3205  poisonous      foul        solitary      grasses        enlarging
## 3206     edible      none         several        woods         tapering
## 3207     edible      none        solitary        woods         tapering
## 3208  poisonous      foul         several      grasses        enlarging
## 3209  poisonous  creosote       scattered        woods        enlarging
## 3210     edible      none         several        woods         tapering
## 3211  poisonous      foul         several        woods        enlarging
## 3212     edible      none        solitary        woods         tapering
## 3213     edible      none         several        woods         tapering
## 3214     edible      none         several        woods         tapering
## 3215     edible      none         several        woods         tapering
## 3216     edible      none         several        woods         tapering
## 3217     edible      none         several        woods         tapering
## 3218  poisonous  creosote         several        woods        enlarging
## 3219     edible      none        solitary        woods         tapering
## 3220     edible      none        solitary        woods         tapering
## 3221     edible      none        solitary        woods         tapering
## 3222     edible      none        solitary        woods         tapering
## 3223     edible      none        solitary        woods         tapering
## 3224     edible      none         several        woods         tapering
## 3225     edible      none        solitary        woods         tapering
## 3226  poisonous      foul        solitary        paths        enlarging
## 3227  poisonous  creosote         several        woods        enlarging
## 3228     edible      none         several        woods         tapering
## 3229     edible      none         several        woods         tapering
## 3230     edible      none         several        woods         tapering
## 3231  poisonous      foul        solitary        paths        enlarging
## 3232  poisonous  creosote       scattered        woods        enlarging
## 3233  poisonous      foul        solitary        paths        enlarging
## 3234     edible      none        solitary        woods         tapering
## 3235  poisonous      foul         several      grasses        enlarging
## 3236     edible      none        solitary        woods         tapering
## 3237     edible      none        solitary        woods         tapering
## 3238     edible      none         several        woods         tapering
## 3239  poisonous      foul         several        woods        enlarging
## 3240     edible      none        solitary        woods         tapering
## 3241     edible      none         several        woods         tapering
## 3242  poisonous  creosote       scattered        woods        enlarging
## 3243  poisonous      foul        solitary      grasses        enlarging
## 3244     edible      none        solitary        woods         tapering
## 3245  poisonous      foul        solitary        woods        enlarging
## 3246  poisonous      foul        solitary        woods        enlarging
## 3247     edible      none         several        woods         tapering
## 3248  poisonous      foul        solitary      grasses        enlarging
## 3249     edible      none        solitary        woods         tapering
## 3250     edible      none        solitary        woods         tapering
## 3251     edible      none         several        woods         tapering
## 3252     edible      none        solitary        woods         tapering
## 3253  poisonous  creosote       scattered        woods        enlarging
## 3254     edible      none         several        woods         tapering
## 3255     edible      none         several        woods         tapering
## 3256     edible      none         several        woods         tapering
## 3257     edible      none         several        woods         tapering
## 3258  poisonous  creosote         several        woods        enlarging
## 3259  poisonous      foul        solitary      grasses        enlarging
## 3260     edible      none        solitary        woods         tapering
## 3261     edible      none        solitary        woods         tapering
## 3262  poisonous  creosote         several        woods        enlarging
## 3263     edible      none        solitary        woods         tapering
## 3264  poisonous      foul        solitary        paths        enlarging
## 3265  poisonous      foul        solitary        paths        enlarging
## 3266     edible      none        solitary        woods         tapering
## 3267     edible      none         several        woods         tapering
## 3268  poisonous  creosote         several        woods        enlarging
## 3269  poisonous      foul         several        woods        enlarging
## 3270  poisonous  creosote       scattered        woods        enlarging
## 3271     edible      none         several        woods         tapering
## 3272     edible      none         several        woods         tapering
## 3273     edible      none        solitary        woods         tapering
## 3274  poisonous      foul        solitary      grasses        enlarging
## 3275     edible      none        solitary        woods         tapering
## 3276  poisonous  creosote         several        woods        enlarging
## 3277  poisonous      foul         several        woods        enlarging
## 3278     edible      none        solitary        woods         tapering
## 3279     edible      none        solitary        woods         tapering
## 3280  poisonous      foul         several        paths        enlarging
## 3281  poisonous      foul         several        paths        enlarging
## 3282  poisonous  creosote         several        woods        enlarging
## 3283     edible      none         several        woods         tapering
## 3284  poisonous      foul         several        woods        enlarging
## 3285     edible      none        solitary        woods         tapering
## 3286     edible      none         several        woods         tapering
## 3287     edible      none        solitary        woods         tapering
## 3288     edible      none        solitary        woods         tapering
## 3289     edible      none        solitary        woods         tapering
## 3290     edible      none        solitary        woods         tapering
## 3291     edible      none        solitary        woods         tapering
## 3292  poisonous  creosote       scattered        woods        enlarging
## 3293     edible      none         several        woods         tapering
## 3294     edible      none         several        woods         tapering
## 3295  poisonous  creosote       scattered        woods        enlarging
## 3296     edible      none        solitary        woods         tapering
## 3297     edible      none         several        woods         tapering
## 3298  poisonous      foul         several      grasses        enlarging
## 3299     edible      none         several        woods         tapering
## 3300  poisonous      foul        solitary      grasses        enlarging
## 3301     edible      none        solitary        woods         tapering
## 3302     edible      none        solitary        woods         tapering
## 3303     edible      none         several        woods         tapering
## 3304  poisonous      foul         several      grasses        enlarging
## 3305     edible      none         several        woods         tapering
## 3306  poisonous  creosote       scattered        woods        enlarging
## 3307     edible      none        solitary        woods         tapering
## 3308     edible      none        solitary        woods         tapering
## 3309     edible      none        solitary        woods         tapering
## 3310     edible      none         several        woods         tapering
## 3311     edible      none        solitary        woods         tapering
## 3312     edible      none         several        woods         tapering
## 3313  poisonous      foul        solitary        woods        enlarging
## 3314     edible      none        solitary        woods         tapering
## 3315     edible      none         several        woods         tapering
## 3316     edible      none        solitary        woods         tapering
## 3317     edible      none         several        woods         tapering
## 3318     edible      none        solitary        woods         tapering
## 3319     edible      none        solitary        woods         tapering
## 3320     edible      none         several        woods         tapering
## 3321     edible      none         several        woods         tapering
## 3322  poisonous  creosote       scattered        woods        enlarging
## 3323  poisonous      foul         several        woods        enlarging
## 3324     edible      none         several        woods         tapering
## 3325     edible      none         several        woods         tapering
## 3326  poisonous  creosote       scattered        woods        enlarging
## 3327  poisonous  creosote         several        woods        enlarging
## 3328  poisonous      foul        solitary        paths        enlarging
## 3329     edible      none         several        woods         tapering
## 3330     edible      none         several        woods         tapering
## 3331  poisonous  creosote       scattered        woods        enlarging
## 3332     edible      none        solitary        woods         tapering
## 3333     edible      none        solitary        woods         tapering
## 3334  poisonous      foul         several      grasses        enlarging
## 3335     edible      none         several        woods         tapering
## 3336     edible      none        solitary        woods         tapering
## 3337  poisonous  creosote         several        woods        enlarging
## 3338     edible      none        solitary        woods         tapering
## 3339  poisonous      foul         several        woods        enlarging
## 3340     edible      none        solitary        woods         tapering
## 3341  poisonous      foul        solitary        paths        enlarging
## 3342     edible      none         several        woods         tapering
## 3343     edible      none        solitary        woods         tapering
## 3344     edible      none         several        woods         tapering
## 3345     edible      none         several        woods         tapering
## 3346  poisonous  creosote         several        woods        enlarging
## 3347     edible      none        solitary        woods         tapering
## 3348     edible      none         several        woods         tapering
## 3349  poisonous      foul        solitary        paths        enlarging
## 3350     edible      none         several        woods         tapering
## 3351  poisonous  creosote       scattered        woods        enlarging
## 3352  poisonous      foul         several      grasses        enlarging
## 3353     edible      none         several        woods         tapering
## 3354     edible      none         several        woods         tapering
## 3355     edible      none         several        woods         tapering
## 3356     edible      none        solitary        woods         tapering
## 3357  poisonous  creosote         several        woods        enlarging
## 3358  poisonous      foul         several      grasses        enlarging
## 3359  poisonous  creosote         several        woods        enlarging
## 3360     edible      none         several        woods         tapering
## 3361     edible      none         several        woods         tapering
## 3362  poisonous      foul        solitary        woods        enlarging
## 3363  poisonous      foul        solitary      grasses        enlarging
## 3364     edible      none        solitary        woods         tapering
## 3365  poisonous  creosote       scattered        woods        enlarging
## 3366  poisonous  creosote       scattered        woods        enlarging
## 3367     edible      none         several        woods         tapering
## 3368     edible      none        solitary        woods         tapering
## 3369     edible      none        solitary        woods         tapering
## 3370     edible      none         several        woods         tapering
## 3371  poisonous  creosote         several        woods        enlarging
## 3372  poisonous      foul        solitary        woods        enlarging
## 3373     edible      none         several        woods         tapering
## 3374     edible      none         several        woods         tapering
## 3375     edible      none         several        woods         tapering
## 3376     edible      none        solitary        woods         tapering
## 3377     edible      none        solitary        woods         tapering
## 3378     edible      none         several        woods         tapering
## 3379  poisonous      foul         several        paths        enlarging
## 3380     edible      none        solitary        woods         tapering
## 3381  poisonous  creosote       scattered        woods        enlarging
## 3382     edible      none        solitary        woods         tapering
## 3383     edible      none        solitary        woods         tapering
## 3384     edible      none         several        woods         tapering
## 3385     edible      none         several        woods         tapering
## 3386     edible      none         several        woods         tapering
## 3387     edible      none         several        woods         tapering
## 3388  poisonous  creosote         several        woods        enlarging
## 3389  poisonous      foul        solitary        woods        enlarging
## 3390  poisonous  creosote         several        woods        enlarging
## 3391     edible      none        solitary        woods         tapering
## 3392     edible      none         several        woods         tapering
## 3393  poisonous  creosote       scattered        woods        enlarging
## 3394     edible      none        solitary        woods         tapering
## 3395  poisonous  creosote         several        woods        enlarging
## 3396     edible      none        solitary        woods         tapering
## 3397  poisonous  creosote       scattered        woods        enlarging
## 3398     edible      none         several        woods         tapering
## 3399  poisonous      foul        solitary      grasses        enlarging
## 3400  poisonous  creosote       scattered        woods        enlarging
## 3401     edible      none        solitary        woods         tapering
## 3402  poisonous      foul        solitary      grasses        enlarging
## 3403  poisonous  creosote         several        woods        enlarging
## 3404     edible      none        solitary        woods         tapering
## 3405  poisonous  creosote       scattered        woods        enlarging
## 3406     edible      none         several        woods         tapering
## 3407     edible      none        solitary        woods         tapering
## 3408     edible      none        solitary        woods         tapering
## 3409     edible      none         several        woods         tapering
## 3410     edible      none        solitary        woods         tapering
## 3411  poisonous  creosote       scattered        woods        enlarging
## 3412     edible      none         several        woods         tapering
## 3413     edible      none         several        woods         tapering
## 3414     edible      none        solitary        woods         tapering
## 3415     edible      none        solitary        woods         tapering
## 3416     edible      none         several        woods         tapering
## 3417  poisonous      foul        solitary      grasses        enlarging
## 3418  poisonous  creosote       scattered        woods        enlarging
## 3419     edible      none        solitary        woods         tapering
## 3420     edible      none        solitary        woods         tapering
## 3421  poisonous  creosote         several        woods        enlarging
## 3422     edible      none        solitary        woods         tapering
## 3423     edible      none        solitary        woods         tapering
## 3424     edible      none         several        woods         tapering
## 3425  poisonous      foul         several        paths        enlarging
## 3426  poisonous  creosote         several        woods        enlarging
## 3427     edible      none        solitary        woods         tapering
## 3428     edible      none        solitary        woods         tapering
## 3429     edible      none        solitary        woods         tapering
## 3430     edible      none         several        woods         tapering
## 3431     edible      none         several        woods         tapering
## 3432  poisonous      foul         several        paths        enlarging
## 3433     edible      none        solitary        woods         tapering
## 3434     edible      none         several        woods         tapering
## 3435  poisonous  creosote         several        woods        enlarging
## 3436     edible      none         several        woods         tapering
## 3437  poisonous      foul        solitary        paths        enlarging
## 3438     edible      none        solitary        woods         tapering
## 3439  poisonous      foul         several        paths        enlarging
## 3440     edible      none         several        woods         tapering
## 3441  poisonous  creosote       scattered        woods        enlarging
## 3442     edible      none         several        woods         tapering
## 3443  poisonous  creosote         several        woods        enlarging
## 3444  poisonous  creosote       scattered        woods        enlarging
## 3445     edible      none         several        woods         tapering
## 3446  poisonous  creosote         several        woods        enlarging
## 3447  poisonous      foul        solitary        woods        enlarging
## 3448     edible      none         several        woods         tapering
## 3449     edible      none        solitary        woods         tapering
## 3450     edible      none        solitary        woods         tapering
## 3451  poisonous      foul        solitary      grasses        enlarging
## 3452  poisonous  creosote         several        woods        enlarging
## 3453  poisonous      foul         several        paths        enlarging
## 3454  poisonous  creosote       scattered        woods        enlarging
## 3455     edible      none        solitary        woods         tapering
## 3456     edible      none        solitary        woods         tapering
## 3457  poisonous  creosote       scattered        woods        enlarging
## 3458     edible      none        solitary        woods         tapering
## 3459     edible      none         several        woods         tapering
## 3460     edible      none        solitary        woods         tapering
## 3461     edible      none        solitary        woods         tapering
## 3462     edible      none        solitary        woods         tapering
## 3463  poisonous  creosote       scattered        woods        enlarging
## 3464     edible      none        solitary        woods         tapering
## 3465  poisonous      foul        solitary        woods        enlarging
## 3466     edible      none         several        woods         tapering
## 3467     edible      none         several        woods         tapering
## 3468  poisonous  creosote         several        woods        enlarging
## 3469  poisonous  creosote         several        woods        enlarging
## 3470     edible      none        solitary        woods         tapering
## 3471     edible      none         several        woods         tapering
## 3472     edible      none        solitary        woods         tapering
## 3473  poisonous      foul         several        paths        enlarging
## 3474     edible      none         several        woods         tapering
## 3475     edible      none        solitary        woods         tapering
## 3476     edible      none        solitary        woods         tapering
## 3477  poisonous  creosote       scattered        woods        enlarging
## 3478     edible      none         several        woods         tapering
## 3479  poisonous      foul         several        paths        enlarging
## 3480     edible      none         several        woods         tapering
## 3481     edible      none         several        woods         tapering
## 3482     edible      none        solitary        woods         tapering
## 3483  poisonous  creosote         several        woods        enlarging
## 3484  poisonous  creosote       scattered        woods        enlarging
## 3485     edible      none         several        woods         tapering
## 3486     edible      none         several        woods         tapering
## 3487     edible      none        solitary        woods         tapering
## 3488  poisonous      foul         several      grasses        enlarging
## 3489     edible      none        solitary        woods         tapering
## 3490  poisonous      foul        solitary        paths        enlarging
## 3491     edible      none        solitary        woods         tapering
## 3492  poisonous      foul         several      grasses        enlarging
## 3493     edible      none         several        woods         tapering
## 3494     edible      none        solitary        woods         tapering
## 3495     edible      none         several        woods         tapering
## 3496  poisonous      foul        solitary        woods        enlarging
## 3497     edible      none        solitary        woods         tapering
## 3498     edible      none         several        woods         tapering
## 3499     edible      none         several        woods         tapering
## 3500  poisonous  creosote       scattered        woods        enlarging
## 3501     edible      none        solitary        woods         tapering
## 3502     edible      none        solitary        woods         tapering
## 3503     edible      none        solitary        woods         tapering
## 3504     edible      none         several        woods         tapering
## 3505     edible      none         several        woods         tapering
## 3506  poisonous      foul         several      grasses        enlarging
## 3507     edible      none         several        woods         tapering
## 3508  poisonous      foul        solitary        woods        enlarging
## 3509     edible      none         several        woods         tapering
## 3510     edible      none        solitary        woods         tapering
## 3511  poisonous      foul         several        woods        enlarging
## 3512     edible      none        solitary        woods         tapering
## 3513  poisonous      foul         several        woods        enlarging
## 3514     edible      none        solitary        woods         tapering
## 3515  poisonous  creosote         several        woods        enlarging
## 3516     edible      none         several        woods         tapering
## 3517     edible      none        solitary        woods         tapering
## 3518     edible      none         several        woods         tapering
## 3519     edible      none         several        woods         tapering
## 3520     edible      none         several        woods         tapering
## 3521  poisonous  creosote       scattered        woods        enlarging
## 3522  poisonous      foul         several        woods        enlarging
## 3523     edible      none         several        woods         tapering
## 3524     edible      none        solitary        woods         tapering
## 3525  poisonous  creosote         several        woods        enlarging
## 3526     edible      none        solitary        woods         tapering
## 3527     edible      none         several        woods         tapering
## 3528     edible      none        solitary        woods         tapering
## 3529     edible      none        solitary        woods         tapering
## 3530     edible      none        solitary        woods         tapering
## 3531  poisonous  creosote         several        woods        enlarging
## 3532     edible      none        solitary        woods         tapering
## 3533  poisonous      foul         several        woods        enlarging
## 3534     edible      none         several        woods         tapering
## 3535     edible      none         several        woods         tapering
## 3536  poisonous  creosote       scattered        woods        enlarging
## 3537     edible      none        solitary        woods         tapering
## 3538     edible      none         several        woods         tapering
## 3539  poisonous      foul        solitary        woods        enlarging
## 3540     edible      none        solitary        woods         tapering
## 3541     edible      none         several        woods         tapering
## 3542     edible      none         several        woods         tapering
## 3543  poisonous  creosote       scattered        woods        enlarging
## 3544  poisonous      foul         several        woods        enlarging
## 3545     edible      none         several        woods         tapering
## 3546     edible      none         several        woods         tapering
## 3547  poisonous  creosote         several        woods        enlarging
## 3548     edible      none        solitary        woods         tapering
## 3549     edible      none        solitary        woods         tapering
## 3550     edible      none         several        woods         tapering
## 3551     edible      none         several        woods         tapering
## 3552     edible      none        solitary        woods         tapering
## 3553     edible      none        solitary        woods         tapering
## 3554  poisonous  creosote         several        woods        enlarging
## 3555     edible      none         several        woods         tapering
## 3556  poisonous      foul        solitary        woods        enlarging
## 3557  poisonous  creosote         several        woods        enlarging
## 3558     edible      none         several        woods         tapering
## 3559  poisonous      foul         several        woods        enlarging
## 3560  poisonous  creosote       scattered        woods        enlarging
## 3561     edible      none        solitary        woods         tapering
## 3562     edible      none         several        woods         tapering
## 3563     edible      none         several        woods         tapering
## 3564     edible      none        solitary        woods         tapering
## 3565  poisonous      foul         several      grasses        enlarging
## 3566     edible      none        solitary        woods         tapering
## 3567  poisonous      foul         several        paths        enlarging
## 3568     edible      none         several        woods         tapering
## 3569     edible      none        solitary        woods         tapering
## 3570  poisonous      foul        solitary        woods        enlarging
## 3571     edible      none         several        woods         tapering
## 3572  poisonous      foul        solitary        paths        enlarging
## 3573     edible      none         several        woods         tapering
## 3574     edible      none         several        woods         tapering
## 3575     edible      none         several        woods         tapering
## 3576     edible      none         several        woods         tapering
## 3577     edible      none        solitary        woods         tapering
## 3578     edible      none         several        woods         tapering
## 3579     edible      none         several        woods         tapering
## 3580     edible      none         several        woods         tapering
## 3581  poisonous      foul         several      grasses        enlarging
## 3582     edible      none        solitary        woods         tapering
## 3583  poisonous  creosote         several        woods        enlarging
## 3584     edible      none         several        woods         tapering
## 3585     edible      none         several        woods         tapering
## 3586     edible      none        solitary        woods         tapering
## 3587     edible      none        solitary        woods         tapering
## 3588     edible      none         several        woods         tapering
## 3589     edible      none         several        woods         tapering
## 3590  poisonous  creosote       scattered        woods        enlarging
## 3591     edible      none        solitary        woods         tapering
## 3592     edible      none         several        woods         tapering
## 3593     edible      none        solitary        woods         tapering
## 3594  poisonous      foul        solitary      grasses        enlarging
## 3595     edible      none         several        woods         tapering
## 3596     edible      none        solitary        woods         tapering
## 3597  poisonous      foul        solitary      grasses        enlarging
## 3598     edible      none        solitary        woods         tapering
## 3599  poisonous      foul         several      grasses        enlarging
## 3600     edible      none        solitary        woods         tapering
## 3601     edible      none        solitary        woods         tapering
## 3602     edible      none        solitary        woods         tapering
## 3603     edible      none         several        woods         tapering
## 3604  poisonous      foul         several        woods        enlarging
## 3605  poisonous  creosote         several        woods        enlarging
## 3606  poisonous      foul         several      grasses        enlarging
## 3607  poisonous      foul         several        paths        enlarging
## 3608  poisonous      foul        solitary        paths        enlarging
## 3609     edible      none         several        woods         tapering
## 3610  poisonous      foul         several        woods        enlarging
## 3611     edible      none         several        woods         tapering
## 3612     edible      none         several        woods         tapering
## 3613     edible      none        solitary        woods         tapering
## 3614  poisonous      foul        solitary        woods        enlarging
## 3615     edible      none        solitary        woods         tapering
## 3616  poisonous  creosote       scattered        woods        enlarging
## 3617     edible      none        solitary        woods         tapering
## 3618     edible      none        solitary        woods         tapering
## 3619     edible      none         several        woods         tapering
## 3620     edible      none        solitary        woods         tapering
## 3621  poisonous      foul        solitary      grasses        enlarging
## 3622  poisonous      foul         several        paths        enlarging
## 3623     edible      none         several        woods         tapering
## 3624     edible      none         several        woods         tapering
## 3625  poisonous      foul         several        woods        enlarging
## 3626     edible      none        solitary        woods         tapering
## 3627  poisonous  creosote       scattered        woods        enlarging
## 3628     edible      none         several        woods         tapering
## 3629     edible      none        solitary        woods         tapering
## 3630  poisonous      foul        solitary        paths        enlarging
## 3631     edible      none        solitary        woods         tapering
## 3632  poisonous  creosote       scattered        woods        enlarging
## 3633  poisonous      foul         several      grasses        enlarging
## 3634     edible      none         several        woods         tapering
## 3635  poisonous      foul         several        woods        enlarging
## 3636     edible      none         several        woods         tapering
## 3637     edible      none        solitary        woods         tapering
## 3638     edible      none        solitary        woods         tapering
## 3639     edible      none        solitary        woods         tapering
## 3640     edible      none        solitary        woods         tapering
## 3641     edible      none        solitary        woods         tapering
## 3642     edible      none        solitary        woods         tapering
## 3643     edible      none        solitary        woods         tapering
## 3644  poisonous      foul        solitary      grasses        enlarging
## 3645     edible      none        solitary        woods         tapering
## 3646     edible      none         several        woods         tapering
## 3647  poisonous      foul        solitary      grasses        enlarging
## 3648  poisonous      foul         several        woods        enlarging
## 3649  poisonous      foul        solitary        paths        enlarging
## 3650     edible      none        solitary        woods         tapering
## 3651     edible      none         several        woods         tapering
## 3652  poisonous      foul        solitary        woods        enlarging
## 3653  poisonous      foul         several        paths        enlarging
## 3654  poisonous      foul         several        paths        enlarging
## 3655     edible      none         several        woods         tapering
## 3656  poisonous  creosote       scattered        woods        enlarging
## 3657     edible      none         several        woods         tapering
## 3658  poisonous      foul        solitary        woods        enlarging
## 3659     edible      none         several        woods         tapering
## 3660     edible      none        solitary        woods         tapering
## 3661  poisonous      foul        solitary        paths        enlarging
## 3662     edible      none        solitary        woods         tapering
## 3663  poisonous  creosote         several        woods        enlarging
## 3664     edible      none         several        woods         tapering
## 3665     edible      none         several        woods         tapering
## 3666     edible      none        solitary        woods         tapering
## 3667  poisonous      foul         several        woods        enlarging
## 3668     edible      none         several        woods         tapering
## 3669     edible      none        solitary        woods         tapering
## 3670  poisonous  creosote       scattered        woods        enlarging
## 3671     edible      none         several        woods         tapering
## 3672     edible      none        solitary        woods         tapering
## 3673     edible      none        solitary        woods         tapering
## 3674     edible      none         several        woods         tapering
## 3675  poisonous      foul         several        paths        enlarging
## 3676     edible      none        solitary        woods         tapering
## 3677     edible      none         several        woods         tapering
## 3678     edible      none        solitary        woods         tapering
## 3679  poisonous  creosote       scattered        woods        enlarging
## 3680     edible      none        solitary        woods         tapering
## 3681     edible      none         several        woods         tapering
## 3682     edible      none        solitary        woods         tapering
## 3683  poisonous  creosote       scattered        woods        enlarging
## 3684  poisonous      foul         several        paths        enlarging
## 3685     edible      none         several        woods         tapering
## 3686  poisonous      foul         several      grasses        enlarging
## 3687  poisonous  creosote       scattered        woods        enlarging
## 3688     edible      none        solitary        woods         tapering
## 3689     edible      none         several        woods         tapering
## 3690     edible      none         several        woods         tapering
## 3691     edible      none         several        woods         tapering
## 3692  poisonous  creosote         several        woods        enlarging
## 3693     edible      none         several        woods         tapering
## 3694  poisonous      foul         several      grasses        enlarging
## 3695     edible      none        solitary        woods         tapering
## 3696     edible      none         several        woods         tapering
## 3697  poisonous  creosote         several        woods        enlarging
## 3698     edible      none        solitary        woods         tapering
## 3699  poisonous  creosote         several        woods        enlarging
## 3700     edible      none        solitary        woods         tapering
## 3701  poisonous      foul        solitary      grasses        enlarging
## 3702     edible      none        solitary        woods         tapering
## 3703  poisonous  creosote       scattered        woods        enlarging
## 3704  poisonous      foul         several        paths        enlarging
## 3705     edible      none        solitary        woods         tapering
## 3706     edible      none        solitary        woods         tapering
## 3707  poisonous  creosote       scattered        woods        enlarging
## 3708  poisonous      foul         several      grasses        enlarging
## 3709     edible      none        solitary        woods         tapering
## 3710  poisonous      foul         several        woods        enlarging
## 3711     edible      none         several        woods         tapering
## 3712     edible      none         several        woods         tapering
## 3713  poisonous      foul        solitary        woods        enlarging
## 3714     edible      none        solitary        woods         tapering
## 3715     edible      none         several        woods         tapering
## 3716     edible      none        solitary        woods         tapering
## 3717     edible      none         several        woods         tapering
## 3718  poisonous      foul         several        woods        enlarging
## 3719     edible      none         several        woods         tapering
## 3720     edible      none        solitary        woods         tapering
## 3721     edible      none         several        woods         tapering
## 3722     edible      none        solitary        woods         tapering
## 3723     edible      none         several        woods         tapering
## 3724  poisonous      foul         several        woods        enlarging
## 3725  poisonous  creosote         several        woods        enlarging
## 3726  poisonous      foul         several        paths        enlarging
## 3727     edible      none         several        woods         tapering
## 3728     edible      none        solitary        woods         tapering
## 3729     edible      none        solitary        woods         tapering
## 3730     edible      none        solitary        woods         tapering
## 3731     edible      none         several        woods         tapering
## 3732     edible      none        solitary        woods         tapering
## 3733     edible      none         several        woods         tapering
## 3734  poisonous      foul        solitary      grasses        enlarging
## 3735     edible      none        solitary        woods         tapering
## 3736     edible      none        solitary        woods         tapering
## 3737  poisonous      foul         several        woods        enlarging
## 3738  poisonous  creosote       scattered        woods        enlarging
## 3739  poisonous  creosote         several        woods        enlarging
## 3740     edible      none        solitary        woods         tapering
## 3741  poisonous      foul         several        paths        enlarging
## 3742  poisonous  creosote         several        woods        enlarging
## 3743     edible      none         several        woods         tapering
## 3744     edible      none        solitary        woods         tapering
## 3745     edible      none         several        woods         tapering
## 3746  poisonous      foul         several        woods        enlarging
## 3747     edible      none         several        woods         tapering
## 3748     edible      none         several        woods         tapering
## 3749     edible      none         several        woods         tapering
## 3750  poisonous      foul         several        paths        enlarging
## 3751  poisonous  creosote         several        woods        enlarging
## 3752     edible      none         several        woods         tapering
## 3753  poisonous  creosote       scattered        woods        enlarging
## 3754  poisonous  creosote         several        woods        enlarging
## 3755  poisonous      foul        solitary      grasses        enlarging
## 3756     edible      none         several        woods         tapering
## 3757     edible      none         several        woods         tapering
## 3758  poisonous      foul        solitary        paths        enlarging
## 3759     edible      none        solitary        woods         tapering
## 3760     edible      none         several        woods         tapering
## 3761     edible      none         several        woods         tapering
## 3762     edible      none        solitary        woods         tapering
## 3763     edible      none         several        woods         tapering
## 3764     edible      none        solitary        woods         tapering
## 3765     edible      none         several        woods         tapering
## 3766     edible      none         several        woods         tapering
## 3767     edible      none        solitary        woods         tapering
## 3768     edible      none        solitary        woods         tapering
## 3769     edible      none        solitary        woods         tapering
## 3770     edible      none        solitary        woods         tapering
## 3771     edible      none        solitary        woods         tapering
## 3772     edible      none         several        woods         tapering
## 3773     edible      none        solitary        woods         tapering
## 3774     edible      none        solitary        woods         tapering
## 3775  poisonous      foul        solitary        paths        enlarging
## 3776     edible      none        solitary        woods         tapering
## 3777     edible      none        solitary        woods         tapering
## 3778     edible      none         several        woods         tapering
## 3779     edible      none        solitary        woods         tapering
## 3780     edible      none        solitary        woods         tapering
## 3781  poisonous      foul         several        woods        enlarging
## 3782     edible      none         several        woods         tapering
## 3783  poisonous      foul         several        woods        enlarging
## 3784     edible      none        solitary        woods         tapering
## 3785     edible      none         several        woods         tapering
## 3786     edible      none        solitary        woods         tapering
## 3787  poisonous      foul         several        paths        enlarging
## 3788     edible      none         several        woods         tapering
## 3789     edible      none        solitary        woods         tapering
## 3790  poisonous      foul         several        woods        enlarging
## 3791     edible      none         several        woods         tapering
## 3792  poisonous  creosote       scattered        woods        enlarging
## 3793     edible      none        solitary        woods         tapering
## 3794  poisonous  creosote       scattered        woods        enlarging
## 3795     edible      none         several        woods         tapering
## 3796  poisonous  creosote         several        woods        enlarging
## 3797     edible      none        solitary        woods         tapering
## 3798     edible      none         several        woods         tapering
## 3799     edible      none        solitary        woods         tapering
## 3800     edible      none        solitary        woods         tapering
## 3801  poisonous  creosote       scattered        woods        enlarging
## 3802     edible      none        solitary        woods         tapering
## 3803     edible      none         several        woods         tapering
## 3804  poisonous  creosote         several        woods        enlarging
## 3805     edible      none        solitary        woods         tapering
## 3806  poisonous  creosote         several        woods        enlarging
## 3807     edible      none        solitary        woods         tapering
## 3808  poisonous      foul        solitary      grasses        enlarging
## 3809     edible      none        solitary        woods         tapering
## 3810  poisonous      foul        solitary      grasses        enlarging
## 3811     edible      none         several        woods         tapering
## 3812     edible      none         several        woods         tapering
## 3813     edible      none         several        woods         tapering
## 3814  poisonous  creosote       scattered        woods        enlarging
## 3815  poisonous      foul        solitary        paths        enlarging
## 3816     edible      none         several        woods         tapering
## 3817     edible      none         several        woods         tapering
## 3818     edible      none         several        woods         tapering
## 3819     edible      none        solitary        woods         tapering
## 3820     edible      none         several        woods         tapering
## 3821     edible      none        solitary        woods         tapering
## 3822  poisonous      foul        solitary        woods        enlarging
## 3823     edible      none        solitary        woods         tapering
## 3824     edible      none        solitary        woods         tapering
## 3825     edible      none        solitary        woods         tapering
## 3826  poisonous  creosote         several        woods        enlarging
## 3827     edible      none        solitary        woods         tapering
## 3828     edible      none        solitary        woods         tapering
## 3829  poisonous      foul        solitary      grasses        enlarging
## 3830     edible      none        solitary        woods         tapering
## 3831  poisonous  creosote         several        woods        enlarging
## 3832     edible      none         several        woods         tapering
## 3833  poisonous  creosote       scattered        woods        enlarging
## 3834  poisonous      foul         several        woods        enlarging
## 3835  poisonous      foul        solitary        woods        enlarging
## 3836     edible      none         several        woods         tapering
## 3837     edible      none         several        woods         tapering
## 3838     edible      none        solitary        woods         tapering
## 3839     edible      none        solitary        woods         tapering
## 3840  poisonous      foul         several        paths        enlarging
## 3841     edible      none        solitary        woods         tapering
## 3842     edible      none        solitary        woods         tapering
## 3843  poisonous      foul         several      grasses        enlarging
## 3844     edible      none        solitary        woods         tapering
## 3845  poisonous  creosote       scattered        woods        enlarging
## 3846     edible      none        solitary        woods         tapering
## 3847     edible      none        solitary        woods         tapering
## 3848     edible      none        solitary        woods         tapering
## 3849     edible      none        solitary        woods         tapering
## 3850     edible      none        solitary        woods         tapering
## 3851     edible      none        solitary        woods         tapering
## 3852  poisonous  creosote       scattered        woods        enlarging
## 3853     edible      none         several        woods         tapering
## 3854  poisonous      foul        solitary      grasses        enlarging
## 3855     edible      none         several        woods         tapering
## 3856     edible      none         several        woods         tapering
## 3857     edible      none         several        woods         tapering
## 3858  poisonous  creosote         several        woods        enlarging
## 3859  poisonous  creosote         several        woods        enlarging
## 3860     edible      none         several        woods         tapering
## 3861     edible      none         several        woods         tapering
## 3862     edible      none         several        woods         tapering
## 3863     edible      none        solitary        woods         tapering
## 3864  poisonous      foul         several        woods        enlarging
## 3865  poisonous  creosote         several        woods        enlarging
## 3866     edible      none        solitary        woods         tapering
## 3867     edible      none         several        woods         tapering
## 3868  poisonous  creosote         several        woods        enlarging
## 3869  poisonous  creosote       scattered        woods        enlarging
## 3870     edible      none         several        woods         tapering
## 3871  poisonous      foul         several        woods        enlarging
## 3872  poisonous  creosote         several        woods        enlarging
## 3873  poisonous      foul         several        woods        enlarging
## 3874  poisonous  creosote         several        woods        enlarging
## 3875     edible      none         several        woods         tapering
## 3876  poisonous  creosote       scattered        woods        enlarging
## 3877     edible      none         several        woods         tapering
## 3878  poisonous  creosote         several        woods        enlarging
## 3879  poisonous  creosote       scattered        woods        enlarging
## 3880     edible      none        solitary        woods         tapering
## 3881  poisonous  creosote       scattered        woods        enlarging
## 3882  poisonous  creosote         several        woods        enlarging
## 3883     edible      none        solitary        woods         tapering
## 3884     edible      none        solitary        woods         tapering
## 3885  poisonous  creosote       scattered        woods        enlarging
## 3886     edible      none         several        woods         tapering
## 3887  poisonous  creosote       scattered        woods        enlarging
## 3888     edible      none         several        woods         tapering
## 3889  poisonous      foul         several        woods        enlarging
## 3890  poisonous      foul        solitary      grasses        enlarging
## 3891     edible      none         several        woods         tapering
## 3892  poisonous      foul         several      grasses        enlarging
## 3893     edible      none         several        woods         tapering
## 3894  poisonous      foul        solitary      grasses        enlarging
## 3895  poisonous      foul        solitary        paths        enlarging
## 3896     edible      none         several        woods         tapering
## 3897     edible      none         several        woods         tapering
## 3898  poisonous  creosote         several        woods        enlarging
## 3899     edible      none        solitary        woods         tapering
## 3900  poisonous      foul        solitary        paths        enlarging
## 3901  poisonous      foul         several        woods        enlarging
## 3902  poisonous      foul        solitary        paths        enlarging
## 3903  poisonous      foul         several      grasses        enlarging
## 3904  poisonous  creosote         several        woods        enlarging
## 3905  poisonous      foul        solitary        woods        enlarging
## 3906  poisonous      foul         several        woods        enlarging
## 3907  poisonous      foul         several        paths        enlarging
## 3908  poisonous      foul         several        woods        enlarging
## 3909  poisonous      foul        solitary        woods        enlarging
## 3910     edible      none        solitary        woods         tapering
## 3911  poisonous      foul        solitary      grasses        enlarging
## 3912  poisonous      foul        solitary        paths        enlarging
## 3913  poisonous      foul        solitary      grasses        enlarging
## 3914     edible      none        solitary        woods         tapering
## 3915     edible      none         several        woods         tapering
## 3916     edible      none         several        woods         tapering
## 3917  poisonous      foul         several      grasses        enlarging
## 3918  poisonous      foul         several      grasses        enlarging
## 3919  poisonous      foul         several        woods        enlarging
## 3920     edible      none        solitary        woods         tapering
## 3921  poisonous      foul         several      grasses        enlarging
## 3922     edible      none         several        woods         tapering
## 3923     edible      none         several        woods         tapering
## 3924     edible      none         several        woods         tapering
## 3925  poisonous      foul        solitary        woods        enlarging
## 3926  poisonous      foul        solitary      grasses        enlarging
## 3927  poisonous      foul        solitary      grasses        enlarging
## 3928     edible      none         several        woods         tapering
## 3929  poisonous      foul        solitary        woods        enlarging
## 3930  poisonous      foul        solitary        paths        enlarging
## 3931  poisonous      foul         several      grasses        enlarging
## 3932  poisonous      foul         several        woods        enlarging
## 3933  poisonous      foul        solitary        paths        enlarging
## 3934  poisonous      foul         several        paths        enlarging
## 3935  poisonous  creosote       scattered        woods        enlarging
## 3936  poisonous      foul         several      grasses        enlarging
## 3937     edible      none         several        woods         tapering
## 3938     edible      none        solitary        woods         tapering
## 3939  poisonous  creosote         several        woods        enlarging
## 3940  poisonous      foul         several      grasses        enlarging
## 3941  poisonous      foul         several      grasses        enlarging
## 3942     edible      none        solitary        woods         tapering
## 3943     edible      none        solitary        woods         tapering
## 3944  poisonous      foul         several        woods        enlarging
## 3945     edible      none         several        woods         tapering
## 3946  poisonous      foul         several        woods        enlarging
## 3947  poisonous      foul        solitary      grasses        enlarging
## 3948     edible      none         several        woods         tapering
## 3949  poisonous      foul         several      grasses        enlarging
## 3950  poisonous      foul        solitary      grasses        enlarging
## 3951  poisonous      foul         several      grasses        enlarging
## 3952  poisonous      foul        solitary      grasses        enlarging
## 3953  poisonous  creosote       scattered        woods        enlarging
## 3954  poisonous  creosote       scattered        woods        enlarging
## 3955  poisonous      foul         several        paths        enlarging
## 3956  poisonous      foul        solitary        paths        enlarging
## 3957  poisonous      foul         several        woods        enlarging
## 3958     edible      none         several        woods         tapering
## 3959  poisonous      foul         several        urban         tapering
## 3960  poisonous      foul        solitary        woods        enlarging
## 3961     edible      none         several        woods         tapering
## 3962  poisonous      foul        solitary        woods        enlarging
## 3963  poisonous      foul        solitary        paths        enlarging
## 3964  poisonous      foul         several        paths        enlarging
## 3965  poisonous      foul        solitary      grasses        enlarging
## 3966  poisonous      foul        solitary      grasses        enlarging
## 3967  poisonous      foul        solitary        paths        enlarging
## 3968  poisonous      foul        solitary        paths        enlarging
## 3969  poisonous  creosote         several        woods        enlarging
## 3970  poisonous      foul         several        paths        enlarging
## 3971  poisonous      foul        solitary        paths        enlarging
## 3972     edible      none         several        woods         tapering
## 3973     edible      none         several        woods         tapering
## 3974  poisonous      foul        solitary        paths        enlarging
## 3975  poisonous  creosote       scattered        woods        enlarging
## 3976  poisonous      foul         several      grasses        enlarging
## 3977  poisonous      foul         several      grasses        enlarging
## 3978  poisonous  creosote         several        woods        enlarging
## 3979     edible      none         several        woods         tapering
## 3980  poisonous      foul         several      grasses        enlarging
## 3981  poisonous  creosote         several        woods        enlarging
## 3982  poisonous      foul         several      grasses         tapering
## 3983  poisonous      foul         several        paths        enlarging
## 3984     edible      none       clustered        waste        enlarging
## 3985  poisonous      foul        solitary      grasses        enlarging
## 3986  poisonous      foul        solitary      grasses        enlarging
## 3987  poisonous      foul        solitary      grasses        enlarging
## 3988  poisonous      foul        solitary      grasses        enlarging
## 3989     edible      none        solitary        woods         tapering
## 3990  poisonous      foul         several        woods        enlarging
## 3991  poisonous      foul         several        woods        enlarging
## 3992  poisonous      foul        solitary      grasses        enlarging
## 3993  poisonous  creosote       scattered        woods        enlarging
## 3994  poisonous  creosote         several        woods        enlarging
## 3995  poisonous      foul         several      grasses        enlarging
## 3996  poisonous      foul       scattered      grasses         tapering
## 3997  poisonous      foul         several      grasses        enlarging
## 3998     edible      none        solitary        woods         tapering
## 3999  poisonous      foul         several        woods        enlarging
## 4000     edible      none         several        woods         tapering
## 4001  poisonous      foul        solitary        paths        enlarging
## 4002     edible      none         several        woods         tapering
## 4003     edible      none        solitary        woods         tapering
## 4004  poisonous      foul        solitary        paths        enlarging
## 4005  poisonous      foul        solitary        woods        enlarging
## 4006     edible      none         several        woods         tapering
## 4007  poisonous      foul         several        paths        enlarging
## 4008     edible      none        solitary        woods         tapering
## 4009     edible      none        solitary        woods         tapering
## 4010     edible      none         several        woods         tapering
## 4011  poisonous      foul        solitary        paths        enlarging
## 4012     edible      none         several        woods         tapering
## 4013  poisonous      foul         several        woods        enlarging
## 4014  poisonous      foul         several        paths        enlarging
## 4015  poisonous      foul         several        woods        enlarging
## 4016  poisonous      foul         several        paths        enlarging
## 4017  poisonous      foul         several        woods        enlarging
## 4018     edible      none         several        woods         tapering
## 4019     edible      none         several        woods         tapering
## 4020  poisonous      foul         several      grasses        enlarging
## 4021  poisonous      foul        solitary        woods        enlarging
## 4022  poisonous      foul        solitary        paths        enlarging
## 4023  poisonous     fishy         several        paths         tapering
## 4024  poisonous      foul        solitary        paths        enlarging
## 4025  poisonous      foul         several      grasses        enlarging
## 4026  poisonous  creosote         several        woods        enlarging
## 4027  poisonous      foul         several      grasses        enlarging
## 4028  poisonous      foul       scattered      grasses         tapering
## 4029  poisonous      foul         several        woods        enlarging
## 4030  poisonous      foul        solitary        woods        enlarging
## 4031  poisonous  creosote       scattered        woods        enlarging
## 4032  poisonous      foul         several        woods        enlarging
## 4033     edible      none         several        woods         tapering
## 4034  poisonous      foul        solitary      grasses        enlarging
## 4035  poisonous      foul         several        woods        enlarging
## 4036  poisonous      foul         several        paths        enlarging
## 4037  poisonous      foul         several      grasses        enlarging
## 4038  poisonous      foul        solitary        woods        enlarging
## 4039     edible      none         several        woods         tapering
## 4040  poisonous      foul        solitary        woods        enlarging
## 4041     edible      none        solitary        woods         tapering
## 4042  poisonous      foul         several        woods        enlarging
## 4043  poisonous      foul        solitary        paths        enlarging
## 4044  poisonous      foul         several        woods        enlarging
## 4045  poisonous  creosote         several        woods        enlarging
## 4046  poisonous      foul        solitary        woods        enlarging
## 4047     edible      none         several        woods         tapering
## 4048  poisonous  creosote       scattered        woods        enlarging
## 4049  poisonous      foul         several        woods        enlarging
## 4050  poisonous      foul        solitary        woods        enlarging
## 4051  poisonous  creosote         several        woods        enlarging
## 4052  poisonous      foul        solitary        woods        enlarging
## 4053  poisonous      foul         several        paths        enlarging
## 4054     edible      none         several        woods         tapering
## 4055  poisonous      foul         several        paths        enlarging
## 4056  poisonous      foul         several        paths        enlarging
## 4057  poisonous  creosote       scattered        woods        enlarging
## 4058  poisonous  creosote         several        woods        enlarging
## 4059     edible      none         several        woods         tapering
## 4060  poisonous      foul         several      grasses        enlarging
## 4061     edible      none        solitary        woods         tapering
## 4062     edible      none        solitary        woods         tapering
## 4063  poisonous      foul        solitary        woods        enlarging
## 4064  poisonous      foul        solitary      grasses        enlarging
## 4065  poisonous      foul         several        woods        enlarging
## 4066  poisonous      foul        solitary        woods        enlarging
## 4067  poisonous      foul        solitary        paths        enlarging
## 4068     edible      none        solitary        woods         tapering
## 4069  poisonous      foul         several        paths        enlarging
## 4070  poisonous      foul         several        paths        enlarging
## 4071  poisonous      foul         several        paths        enlarging
## 4072  poisonous      foul        solitary        paths        enlarging
## 4073     edible      none         several        woods         tapering
## 4074     edible      none         several        woods         tapering
## 4075  poisonous      foul        solitary      grasses        enlarging
## 4076     edible      none        solitary        woods        enlarging
## 4077     edible      none        solitary        woods         tapering
## 4078  poisonous      foul         several      grasses        enlarging
## 4079  poisonous      foul         several      grasses        enlarging
## 4080  poisonous      foul        solitary        woods        enlarging
## 4081  poisonous      foul        solitary        paths        enlarging
## 4082  poisonous      foul         several        paths        enlarging
## 4083  poisonous      foul        solitary        woods        enlarging
## 4084  poisonous      foul         several        paths        enlarging
## 4085  poisonous      foul         several        paths        enlarging
## 4086  poisonous      foul        solitary        paths        enlarging
## 4087     edible      none         several        woods         tapering
## 4088  poisonous      foul        solitary        woods        enlarging
## 4089     edible      none         several        woods         tapering
## 4090  poisonous      foul         several        woods        enlarging
## 4091  poisonous      foul         several        woods        enlarging
## 4092     edible      none        solitary        woods         tapering
## 4093     edible      none        solitary        woods         tapering
## 4094  poisonous      foul         several      grasses        enlarging
## 4095     edible      none         several        woods         tapering
## 4096     edible      none        solitary        woods         tapering
## 4097  poisonous      foul         several        paths        enlarging
## 4098  poisonous  creosote         several        woods        enlarging
## 4099  poisonous      foul        solitary        woods        enlarging
## 4100  poisonous     fishy         several        woods         tapering
## 4101  poisonous      foul         several        paths        enlarging
## 4102  poisonous      foul        solitary        woods        enlarging
## 4103     edible      none        solitary        woods         tapering
## 4104  poisonous      foul         several       leaves         tapering
## 4105     edible      none         several        woods         tapering
## 4106  poisonous      none         several      meadows        enlarging
## 4107     edible      none        solitary        woods         tapering
## 4108  poisonous      foul         several      grasses        enlarging
## 4109     edible      none        solitary        woods         tapering
## 4110  poisonous      foul        solitary        paths        enlarging
## 4111  poisonous      foul        solitary      grasses        enlarging
## 4112  poisonous      foul         several      grasses        enlarging
## 4113     edible      none         several        woods         tapering
## 4114  poisonous      foul        solitary        paths        enlarging
## 4115  poisonous      foul         several      grasses        enlarging
## 4116  poisonous      foul         several        woods        enlarging
## 4117  poisonous      foul        solitary        paths        enlarging
## 4118  poisonous      foul         several      grasses        enlarging
## 4119  poisonous      foul         several      grasses        enlarging
## 4120  poisonous      foul         several        paths        enlarging
## 4121     edible      none         several        woods         tapering
## 4122  poisonous      foul         several        woods        enlarging
## 4123  poisonous      foul         several      grasses        enlarging
## 4124     edible      none         several        woods         tapering
## 4125  poisonous      foul         several        paths        enlarging
## 4126  poisonous      foul         several        paths        enlarging
## 4127     edible      none        solitary        woods         tapering
## 4128  poisonous      foul        solitary        paths        enlarging
## 4129     edible      none        solitary        woods         tapering
## 4130  poisonous      foul         several      grasses        enlarging
## 4131  poisonous      foul         several        woods        enlarging
## 4132  poisonous      foul         several        woods        enlarging
## 4133  poisonous  creosote       scattered        woods        enlarging
## 4134     edible      none         several        woods         tapering
## 4135  poisonous      foul        solitary      grasses        enlarging
## 4136  poisonous      foul        solitary        woods        enlarging
## 4137  poisonous      foul         several        paths        enlarging
## 4138     edible      none         several        woods         tapering
## 4139  poisonous      foul        solitary        woods        enlarging
## 4140  poisonous      foul        solitary        woods        enlarging
## 4141     edible      none         several        woods         tapering
## 4142     edible      none         several        woods         tapering
## 4143  poisonous      foul         several        urban         tapering
## 4144  poisonous      foul        solitary        paths        enlarging
## 4145  poisonous      foul         several        paths        enlarging
## 4146  poisonous      foul         several        paths        enlarging
## 4147  poisonous      foul         several        woods        enlarging
## 4148  poisonous      foul         several        woods        enlarging
## 4149  poisonous      foul         several        paths        enlarging
## 4150     edible      none        solitary        woods         tapering
## 4151  poisonous      foul         several      grasses        enlarging
## 4152  poisonous      foul         several      grasses        enlarging
## 4153  poisonous      foul        solitary        paths        enlarging
## 4154     edible      none         several        woods         tapering
## 4155     edible      none         several        woods         tapering
## 4156     edible      none        solitary        woods         tapering
## 4157  poisonous      foul         several      grasses        enlarging
## 4158  poisonous      foul        solitary        paths        enlarging
## 4159     edible      none        solitary        woods         tapering
## 4160  poisonous      foul        solitary      grasses        enlarging
## 4161     edible      none         several        woods         tapering
## 4162  poisonous      foul         several        paths        enlarging
## 4163  poisonous      foul         several        woods        enlarging
## 4164  poisonous      foul         several        woods        enlarging
## 4165     edible      none         several       leaves        enlarging
## 4166  poisonous      foul         several        woods        enlarging
## 4167  poisonous      foul        solitary      grasses        enlarging
## 4168  poisonous      foul         several      grasses        enlarging
## 4169  poisonous      foul        solitary      grasses        enlarging
## 4170  poisonous      foul       scattered        urban         tapering
## 4171  poisonous      foul         several        woods        enlarging
## 4172  poisonous      foul         several      grasses        enlarging
## 4173  poisonous      foul        solitary        paths        enlarging
## 4174  poisonous      foul         several        paths        enlarging
## 4175  poisonous      foul        solitary        woods        enlarging
## 4176     edible      none        solitary        woods         tapering
## 4177  poisonous      foul        solitary        paths        enlarging
## 4178  poisonous      foul        solitary        paths        enlarging
## 4179     edible      none        solitary        woods         tapering
## 4180  poisonous      foul         several        paths        enlarging
## 4181  poisonous      foul        solitary        woods        enlarging
## 4182  poisonous      foul        solitary        woods        enlarging
## 4183     edible      none        solitary        woods         tapering
## 4184  poisonous      foul         several      grasses        enlarging
## 4185  poisonous      foul        solitary        paths        enlarging
## 4186     edible      none        solitary        woods         tapering
## 4187     edible      none         several        woods         tapering
## 4188  poisonous      foul         several        woods        enlarging
## 4189  poisonous      foul         several        paths        enlarging
## 4190  poisonous      foul         several        woods        enlarging
## 4191  poisonous      foul         several        paths        enlarging
## 4192  poisonous      foul        solitary        paths        enlarging
## 4193  poisonous      foul        solitary      grasses        enlarging
## 4194  poisonous      foul       scattered        urban         tapering
## 4195     edible      none        solitary        woods         tapering
## 4196  poisonous     fishy         several        woods         tapering
## 4197     edible      none         several        woods         tapering
## 4198  poisonous  creosote         several        woods        enlarging
## 4199  poisonous  creosote         several        woods        enlarging
## 4200  poisonous     fishy         several       leaves         tapering
## 4201  poisonous      foul        solitary        paths        enlarging
## 4202  poisonous      foul         several      grasses        enlarging
## 4203  poisonous      foul       scattered        urban         tapering
## 4204  poisonous      foul        solitary        paths        enlarging
## 4205  poisonous      foul        solitary        woods        enlarging
## 4206  poisonous      foul        solitary        paths        enlarging
## 4207  poisonous      foul        solitary        woods        enlarging
## 4208  poisonous      foul        solitary        woods        enlarging
## 4209  poisonous      foul        solitary      grasses        enlarging
## 4210  poisonous      foul        solitary      grasses        enlarging
## 4211  poisonous      foul        solitary      grasses        enlarging
## 4212  poisonous      foul         several      grasses        enlarging
## 4213  poisonous      foul         several      grasses        enlarging
## 4214  poisonous      foul        solitary      grasses        enlarging
## 4215  poisonous      foul         several      grasses        enlarging
## 4216  poisonous      foul         several        urban         tapering
## 4217  poisonous      foul        solitary      grasses        enlarging
## 4218  poisonous      foul        solitary      grasses        enlarging
## 4219  poisonous      foul        solitary        woods        enlarging
## 4220  poisonous      foul        solitary        woods        enlarging
## 4221  poisonous      foul         several        woods        enlarging
## 4222  poisonous      foul         several        paths        enlarging
## 4223  poisonous      foul        solitary        paths        enlarging
## 4224     edible      none         several        woods         tapering
## 4225  poisonous      foul         several        woods        enlarging
## 4226  poisonous      foul        solitary        woods        enlarging
## 4227  poisonous      foul         several        paths        enlarging
## 4228  poisonous      foul         several      grasses        enlarging
## 4229  poisonous      foul         several        paths        enlarging
## 4230  poisonous      foul        solitary        woods        enlarging
## 4231  poisonous      foul        solitary        paths        enlarging
## 4232  poisonous      foul       scattered        urban         tapering
## 4233  poisonous      foul         several      grasses        enlarging
## 4234  poisonous      foul         several        woods        enlarging
## 4235  poisonous      foul        solitary        paths        enlarging
## 4236  poisonous      foul        solitary        woods        enlarging
## 4237  poisonous      foul         several        woods        enlarging
## 4238  poisonous      foul         several        paths        enlarging
## 4239  poisonous      foul        solitary      grasses        enlarging
## 4240  poisonous      foul        solitary        paths        enlarging
## 4241  poisonous      foul         several      grasses        enlarging
## 4242  poisonous      foul        solitary        woods        enlarging
## 4243  poisonous      foul         several        woods        enlarging
## 4244  poisonous      foul         several        woods        enlarging
## 4245  poisonous      foul       scattered      grasses         tapering
## 4246  poisonous      foul        solitary      grasses        enlarging
## 4247  poisonous      foul       scattered      grasses         tapering
## 4248  poisonous      foul         several        woods        enlarging
## 4249  poisonous      foul         several        woods        enlarging
## 4250  poisonous      foul        solitary      grasses        enlarging
## 4251  poisonous      foul        solitary      grasses        enlarging
## 4252  poisonous      foul         several      grasses        enlarging
## 4253     edible      none        solitary        woods         tapering
## 4254  poisonous      foul        solitary        paths        enlarging
## 4255  poisonous      foul        solitary        paths        enlarging
## 4256  poisonous      foul         several      grasses        enlarging
## 4257  poisonous      foul         several        paths        enlarging
## 4258  poisonous      foul        solitary        woods        enlarging
## 4259  poisonous      foul         several        paths        enlarging
## 4260  poisonous      foul        solitary      grasses        enlarging
## 4261  poisonous      foul        solitary        paths        enlarging
## 4262  poisonous  creosote       scattered        woods        enlarging
## 4263  poisonous      foul        solitary        woods        enlarging
## 4264  poisonous      foul        solitary      grasses        enlarging
## 4265  poisonous      foul        solitary      grasses        enlarging
## 4266  poisonous      foul         several      grasses        enlarging
## 4267  poisonous      foul         several      grasses        enlarging
## 4268  poisonous      foul         several        woods        enlarging
## 4269  poisonous      foul        solitary      grasses        enlarging
## 4270  poisonous      foul         several        paths        enlarging
## 4271  poisonous      foul        solitary        woods        enlarging
## 4272  poisonous      foul         several        woods        enlarging
## 4273  poisonous      foul        solitary        paths        enlarging
## 4274  poisonous      foul         several        woods        enlarging
## 4275  poisonous      foul        solitary        paths        enlarging
## 4276     edible      none         several       leaves        enlarging
## 4277  poisonous      foul        solitary        paths        enlarging
## 4278  poisonous      foul        solitary      grasses        enlarging
## 4279  poisonous      foul        solitary      grasses        enlarging
## 4280  poisonous      foul         several        woods        enlarging
## 4281  poisonous      foul        solitary        paths        enlarging
## 4282  poisonous      foul         several      grasses        enlarging
## 4283     edible      none       clustered        waste        enlarging
## 4284  poisonous      foul         several        paths        enlarging
## 4285  poisonous      foul        solitary        woods        enlarging
## 4286  poisonous      foul        solitary        woods        enlarging
## 4287  poisonous      foul        solitary        paths        enlarging
## 4288  poisonous      foul         several        woods        enlarging
## 4289  poisonous      foul        solitary      grasses        enlarging
## 4290  poisonous      foul         several      grasses        enlarging
## 4291     edible      none       clustered        waste        enlarging
## 4292  poisonous      foul         several        woods        enlarging
## 4293  poisonous      foul         several        paths        enlarging
## 4294  poisonous      foul        solitary        paths        enlarging
## 4295  poisonous      foul         several      grasses        enlarging
## 4296  poisonous      foul        solitary        paths        enlarging
## 4297  poisonous      foul        solitary        paths        enlarging
## 4298  poisonous      foul        solitary      grasses        enlarging
## 4299  poisonous      foul        solitary      grasses        enlarging
## 4300  poisonous      foul        solitary        woods        enlarging
## 4301  poisonous      foul         several        woods        enlarging
## 4302  poisonous      foul         several      grasses        enlarging
## 4303  poisonous      foul        solitary        woods        enlarging
## 4304  poisonous      foul        solitary      grasses        enlarging
## 4305     edible      none        solitary        woods         tapering
## 4306  poisonous      foul        solitary        woods        enlarging
## 4307  poisonous      foul         several        woods        enlarging
## 4308  poisonous      foul         several      grasses        enlarging
## 4309  poisonous      foul         several      grasses        enlarging
## 4310  poisonous      foul        solitary      grasses        enlarging
## 4311  poisonous      foul        solitary        paths        enlarging
## 4312  poisonous      foul        solitary        woods        enlarging
## 4313  poisonous      foul         several      grasses        enlarging
## 4314  poisonous      foul        solitary        paths        enlarging
## 4315  poisonous      foul         several      grasses        enlarging
## 4316  poisonous      foul         several        woods        enlarging
## 4317  poisonous      foul         several      grasses        enlarging
## 4318  poisonous      foul        solitary        woods        enlarging
## 4319  poisonous      foul        solitary      grasses        enlarging
## 4320  poisonous      foul         several      grasses        enlarging
## 4321  poisonous      foul        solitary      grasses        enlarging
## 4322  poisonous      foul        solitary        paths        enlarging
## 4323  poisonous      foul        solitary      grasses        enlarging
## 4324  poisonous      foul        solitary      grasses        enlarging
## 4325  poisonous      foul         several        paths        enlarging
## 4326     edible      none         several        woods        enlarging
## 4327  poisonous      foul        solitary      grasses        enlarging
## 4328  poisonous      foul        solitary        woods        enlarging
## 4329  poisonous     spicy         several        paths         tapering
## 4330  poisonous      foul         several        woods        enlarging
## 4331  poisonous      none         several        woods        enlarging
## 4332  poisonous      foul        solitary        woods        enlarging
## 4333  poisonous      foul         several        woods        enlarging
## 4334  poisonous      foul        solitary      grasses        enlarging
## 4335  poisonous      foul        solitary      grasses        enlarging
## 4336  poisonous      foul         several        woods        enlarging
## 4337  poisonous      foul         several        woods        enlarging
## 4338  poisonous      foul         several        woods        enlarging
## 4339  poisonous      foul        solitary      grasses        enlarging
## 4340  poisonous      foul        solitary      grasses        enlarging
## 4341     edible      none        solitary        woods         tapering
## 4342  poisonous      foul        solitary        paths        enlarging
## 4343  poisonous      foul         several      grasses        enlarging
## 4344  poisonous      foul         several      grasses        enlarging
## 4345  poisonous      foul         several        paths        enlarging
## 4346  poisonous      foul        solitary      grasses        enlarging
## 4347  poisonous      foul         several      grasses        enlarging
## 4348  poisonous      foul        solitary      grasses        enlarging
## 4349  poisonous      foul       scattered        urban         tapering
## 4350  poisonous      foul         several      grasses        enlarging
## 4351  poisonous      foul         several        paths        enlarging
## 4352  poisonous      foul         several        paths        enlarging
## 4353  poisonous      foul        solitary        woods        enlarging
## 4354  poisonous      foul         several        woods        enlarging
## 4355  poisonous      foul        solitary      grasses        enlarging
## 4356  poisonous      foul         several      grasses        enlarging
## 4357     edible      none       clustered        waste        enlarging
## 4358  poisonous      foul         several        woods        enlarging
## 4359  poisonous      foul        solitary        woods        enlarging
## 4360  poisonous      foul        solitary        woods        enlarging
## 4361  poisonous      foul        solitary        paths        enlarging
## 4362  poisonous      foul         several        woods        enlarging
## 4363  poisonous      foul        solitary      grasses        enlarging
## 4364  poisonous      none       clustered       leaves        enlarging
## 4365  poisonous      foul         several        urban         tapering
## 4366  poisonous      foul        solitary        paths        enlarging
## 4367  poisonous      foul        solitary        woods        enlarging
## 4368  poisonous      foul         several        paths        enlarging
## 4369  poisonous      foul         several        paths        enlarging
## 4370  poisonous      foul        solitary        woods        enlarging
## 4371  poisonous      foul         several        woods        enlarging
## 4372  poisonous      foul         several      grasses        enlarging
## 4373  poisonous      foul        solitary      grasses        enlarging
## 4374  poisonous      foul       scattered        urban         tapering
## 4375     edible      none         several        woods         tapering
## 4376  poisonous     fishy         several        woods         tapering
## 4377  poisonous      foul        solitary        woods        enlarging
## 4378  poisonous      foul        solitary      grasses        enlarging
## 4379     edible      none         several        woods         tapering
## 4380     edible      none       clustered        waste        enlarging
## 4381  poisonous      foul        solitary      grasses        enlarging
## 4382  poisonous      foul        solitary        woods        enlarging
## 4383  poisonous      foul         several        paths        enlarging
## 4384  poisonous      foul        solitary      grasses        enlarging
## 4385  poisonous      foul        solitary      grasses        enlarging
## 4386  poisonous      foul        solitary      grasses        enlarging
## 4387  poisonous      foul        solitary      grasses        enlarging
## 4388  poisonous      foul         several      grasses        enlarging
## 4389  poisonous      foul         several      grasses        enlarging
## 4390  poisonous      foul        solitary      grasses        enlarging
## 4391  poisonous      foul        solitary        paths        enlarging
## 4392  poisonous      foul        solitary      grasses        enlarging
## 4393  poisonous      foul        solitary        woods        enlarging
## 4394  poisonous      foul         several        woods        enlarging
## 4395  poisonous      foul        solitary        paths        enlarging
## 4396     edible      none        solitary        woods        enlarging
## 4397  poisonous      foul         several      grasses        enlarging
## 4398  poisonous      foul         several      grasses        enlarging
## 4399  poisonous      foul        solitary      grasses        enlarging
## 4400  poisonous      foul         several      grasses        enlarging
## 4401  poisonous      foul         several      grasses        enlarging
## 4402  poisonous      foul         several      grasses        enlarging
## 4403  poisonous      foul        solitary        woods        enlarging
## 4404  poisonous      foul         several      grasses        enlarging
## 4405  poisonous      foul        solitary        woods        enlarging
## 4406  poisonous      foul         several        paths        enlarging
## 4407  poisonous      foul         several        paths        enlarging
## 4408  poisonous      foul        solitary      grasses        enlarging
## 4409  poisonous      foul        solitary        woods        enlarging
## 4410     edible      none        solitary        woods         tapering
## 4411  poisonous      foul         several        urban         tapering
## 4412  poisonous      foul         several        woods        enlarging
## 4413  poisonous      foul         several        paths        enlarging
## 4414  poisonous      foul        solitary      grasses        enlarging
## 4415  poisonous      foul        solitary        paths        enlarging
## 4416  poisonous      foul         several        woods        enlarging
## 4417     edible      none         several        woods         tapering
## 4418  poisonous      foul        solitary      grasses        enlarging
## 4419     edible      none       clustered        waste        enlarging
## 4420  poisonous      foul        solitary      grasses        enlarging
## 4421  poisonous      foul        solitary        woods        enlarging
## 4422  poisonous      foul        solitary      grasses        enlarging
## 4423  poisonous      foul         several        paths        enlarging
## 4424     edible      none        solitary        woods         tapering
## 4425  poisonous      foul         several        woods        enlarging
## 4426  poisonous      foul         several      grasses        enlarging
## 4427  poisonous      foul         several        woods        enlarging
## 4428  poisonous      foul         several      grasses        enlarging
## 4429  poisonous     fishy         several        woods         tapering
## 4430  poisonous      foul         several        paths        enlarging
## 4431  poisonous      foul         several      grasses        enlarging
## 4432  poisonous      foul         several        paths        enlarging
## 4433  poisonous      foul         several        woods        enlarging
## 4434  poisonous      foul         several        paths        enlarging
## 4435  poisonous      foul         several      grasses        enlarging
## 4436  poisonous      foul         several        woods        enlarging
## 4437  poisonous      foul         several      grasses        enlarging
## 4438  poisonous  creosote         several        woods        enlarging
## 4439  poisonous      foul        solitary      grasses        enlarging
## 4440  poisonous      foul       scattered        urban         tapering
## 4441  poisonous      foul         several      grasses        enlarging
## 4442  poisonous      foul        solitary        paths        enlarging
## 4443  poisonous      foul        solitary        woods        enlarging
## 4444     edible      none        solitary        woods         tapering
## 4445  poisonous      foul        solitary        woods        enlarging
## 4446  poisonous      foul         several      grasses        enlarging
## 4447  poisonous      foul        solitary        paths        enlarging
## 4448  poisonous      foul        solitary      grasses        enlarging
## 4449  poisonous      foul        solitary        woods        enlarging
## 4450  poisonous      foul        solitary        paths        enlarging
## 4451     edible      none         several        woods         tapering
## 4452  poisonous      foul        solitary      grasses        enlarging
## 4453  poisonous      foul         several      grasses        enlarging
## 4454  poisonous      foul         several        paths        enlarging
## 4455  poisonous      foul        solitary      grasses        enlarging
## 4456  poisonous      foul        solitary        paths        enlarging
## 4457  poisonous      foul        solitary      grasses        enlarging
## 4458  poisonous      foul        solitary      grasses        enlarging
## 4459     edible      none       clustered        waste        enlarging
## 4460  poisonous      foul        solitary        paths        enlarging
## 4461  poisonous     spicy         several        woods         tapering
## 4462  poisonous      foul        solitary        paths        enlarging
## 4463  poisonous      foul        solitary        paths        enlarging
## 4464  poisonous      foul         several      grasses        enlarging
## 4465  poisonous      foul         several        woods        enlarging
## 4466  poisonous      foul        solitary      grasses        enlarging
## 4467  poisonous      foul        solitary      grasses        enlarging
## 4468  poisonous      foul        solitary        woods        enlarging
## 4469  poisonous      foul         several        urban         tapering
## 4470  poisonous      foul         several      grasses        enlarging
## 4471  poisonous      foul        solitary        paths        enlarging
## 4472  poisonous      foul        solitary      grasses        enlarging
## 4473  poisonous      foul         several        paths        enlarging
## 4474  poisonous      foul         several      grasses        enlarging
## 4475  poisonous      foul        solitary      grasses        enlarging
## 4476  poisonous      foul         several        paths        enlarging
## 4477  poisonous      foul        solitary        paths        enlarging
## 4478  poisonous      foul        solitary        paths        enlarging
## 4479  poisonous      foul         several        paths        enlarging
## 4480     edible      none        solitary        woods         tapering
## 4481  poisonous      foul         several        woods        enlarging
## 4482  poisonous      foul         several        paths        enlarging
## 4483  poisonous      foul         several      grasses        enlarging
## 4484  poisonous      foul         several      grasses        enlarging
## 4485  poisonous      foul        solitary        woods        enlarging
## 4486  poisonous      foul         several        paths        enlarging
## 4487  poisonous      foul         several        woods        enlarging
## 4488  poisonous      foul         several        woods        enlarging
## 4489  poisonous      foul        solitary        woods        enlarging
## 4490  poisonous      foul        solitary        woods        enlarging
## 4491     edible      none         several       leaves        enlarging
## 4492  poisonous      foul         several      grasses        enlarging
## 4493  poisonous      foul        solitary        paths        enlarging
## 4494  poisonous      none         several        woods        enlarging
## 4495  poisonous      foul        solitary        paths        enlarging
## 4496  poisonous      foul         several      grasses         tapering
## 4497     edible      none       clustered        waste        enlarging
## 4498  poisonous     fishy         several        paths         tapering
## 4499  poisonous  creosote         several        woods        enlarging
## 4500  poisonous      foul        solitary        woods        enlarging
## 4501  poisonous      foul         several      grasses        enlarging
## 4502  poisonous      foul        solitary        woods        enlarging
## 4503  poisonous      foul         several      grasses        enlarging
## 4504  poisonous      foul         several      grasses        enlarging
## 4505  poisonous      foul        solitary        woods        enlarging
## 4506  poisonous      foul        solitary        woods        enlarging
## 4507  poisonous      foul        solitary      grasses        enlarging
## 4508  poisonous      foul        solitary      grasses        enlarging
## 4509  poisonous      foul         several        woods        enlarging
## 4510  poisonous      foul         several        paths        enlarging
## 4511  poisonous      foul        solitary        paths        enlarging
## 4512  poisonous      foul        solitary        paths        enlarging
## 4513  poisonous      foul        solitary        woods        enlarging
## 4514  poisonous      foul         several        paths        enlarging
## 4515  poisonous      foul         several        woods        enlarging
## 4516  poisonous      foul         several      grasses        enlarging
## 4517  poisonous      foul         several      grasses        enlarging
## 4518  poisonous      foul         several        woods        enlarging
## 4519     edible      none       clustered        waste        enlarging
## 4520  poisonous      foul         several        woods        enlarging
## 4521  poisonous      foul         several        woods        enlarging
## 4522  poisonous     spicy         several       leaves         tapering
## 4523  poisonous      foul        solitary        woods        enlarging
## 4524  poisonous      foul         several        paths        enlarging
## 4525  poisonous      foul        solitary        woods        enlarging
## 4526  poisonous      foul        solitary      grasses        enlarging
## 4527  poisonous      foul         several        woods        enlarging
## 4528  poisonous      foul         several      grasses        enlarging
## 4529  poisonous      foul        solitary        paths        enlarging
## 4530  poisonous      foul         several        paths        enlarging
## 4531  poisonous      foul        solitary      grasses        enlarging
## 4532  poisonous      foul        solitary      grasses        enlarging
## 4533     edible      none         several        woods        enlarging
## 4534     edible      none       clustered        waste        enlarging
## 4535  poisonous      foul        solitary        woods        enlarging
## 4536  poisonous      foul        solitary        paths        enlarging
## 4537  poisonous      foul         several      grasses        enlarging
## 4538  poisonous      foul        solitary        woods        enlarging
## 4539  poisonous      foul         several      grasses        enlarging
## 4540  poisonous      foul        solitary      grasses        enlarging
## 4541  poisonous      foul         several      grasses        enlarging
## 4542  poisonous      foul        solitary      grasses        enlarging
## 4543  poisonous      foul         several        woods        enlarging
## 4544  poisonous      foul         several        woods        enlarging
## 4545  poisonous      foul         several      grasses        enlarging
## 4546  poisonous      foul        solitary      grasses        enlarging
## 4547  poisonous      foul         several      grasses        enlarging
## 4548  poisonous      foul         several      grasses         tapering
## 4549  poisonous      none         several      meadows        enlarging
## 4550  poisonous      foul        solitary        paths        enlarging
## 4551  poisonous      foul         several        paths        enlarging
## 4552  poisonous      foul         several      grasses        enlarging
## 4553  poisonous      foul         several        woods        enlarging
## 4554  poisonous      foul         several        paths        enlarging
## 4555  poisonous      foul        solitary        woods        enlarging
## 4556     edible      none         several        woods         tapering
## 4557     edible      none         several        woods        enlarging
## 4558  poisonous      foul        solitary        woods        enlarging
## 4559  poisonous      foul         several      grasses        enlarging
## 4560  poisonous      foul         several        woods        enlarging
## 4561  poisonous      foul         several        woods        enlarging
## 4562  poisonous      foul        solitary        paths        enlarging
## 4563  poisonous      foul         several        woods        enlarging
## 4564  poisonous      foul        solitary        paths        enlarging
## 4565  poisonous      foul         several      grasses        enlarging
## 4566  poisonous      foul        solitary        paths        enlarging
## 4567  poisonous      foul        solitary      grasses        enlarging
## 4568  poisonous      foul         several        paths        enlarging
## 4569  poisonous      foul        solitary        paths        enlarging
## 4570     edible      none         several        woods         tapering
## 4571  poisonous      foul        solitary        woods        enlarging
## 4572  poisonous      foul         several        woods        enlarging
## 4573  poisonous      foul        solitary        paths        enlarging
## 4574  poisonous      foul         several        paths        enlarging
## 4575  poisonous      foul        solitary        paths        enlarging
## 4576  poisonous      foul        solitary        woods        enlarging
## 4577  poisonous      foul         several      grasses        enlarging
## 4578  poisonous      foul        solitary        woods        enlarging
## 4579  poisonous      foul         several        woods        enlarging
## 4580  poisonous      foul        solitary        woods        enlarging
## 4581  poisonous      foul         several        paths        enlarging
## 4582  poisonous      foul        solitary        paths        enlarging
## 4583  poisonous  creosote         several        woods        enlarging
## 4584  poisonous      foul        solitary        woods        enlarging
## 4585  poisonous      foul         several        paths        enlarging
## 4586  poisonous      foul         several        woods        enlarging
## 4587  poisonous      foul         several      grasses        enlarging
## 4588  poisonous      foul         several        woods        enlarging
## 4589  poisonous      foul         several        woods        enlarging
## 4590  poisonous      foul        solitary        paths        enlarging
## 4591  poisonous      foul         several      grasses        enlarging
## 4592  poisonous      foul         several      grasses        enlarging
## 4593  poisonous      foul        solitary        paths        enlarging
## 4594  poisonous      foul         several        woods        enlarging
## 4595  poisonous      foul         several      grasses        enlarging
## 4596  poisonous      foul        solitary        paths        enlarging
## 4597  poisonous      foul        solitary        woods        enlarging
## 4598  poisonous      foul         several      grasses        enlarging
## 4599  poisonous      foul        solitary        woods        enlarging
## 4600  poisonous      foul        solitary        woods        enlarging
## 4601  poisonous      foul         several      grasses        enlarging
## 4602  poisonous      foul         several        woods        enlarging
## 4603  poisonous      foul        solitary      grasses        enlarging
## 4604  poisonous      foul         several        woods        enlarging
## 4605  poisonous      foul        solitary        woods        enlarging
## 4606  poisonous      foul         several        woods        enlarging
## 4607  poisonous      foul        solitary        woods        enlarging
## 4608  poisonous      foul         several        woods        enlarging
## 4609  poisonous      foul         several      grasses        enlarging
## 4610  poisonous     fishy         several        woods         tapering
## 4611     edible      none       clustered        waste        enlarging
## 4612  poisonous      foul         several      grasses        enlarging
## 4613  poisonous      foul        solitary        woods        enlarging
## 4614  poisonous      foul        solitary        woods        enlarging
## 4615  poisonous      foul        solitary        woods        enlarging
## 4616  poisonous      foul         several        paths        enlarging
## 4617  poisonous      foul        solitary        woods        enlarging
## 4618  poisonous      foul         several        paths        enlarging
## 4619  poisonous      foul         several        paths        enlarging
## 4620  poisonous      foul        solitary      grasses        enlarging
## 4621  poisonous      foul        solitary        woods        enlarging
## 4622  poisonous      foul         several        paths        enlarging
## 4623  poisonous      foul        solitary      grasses        enlarging
## 4624  poisonous      foul        solitary      grasses        enlarging
## 4625  poisonous      foul         several        woods        enlarging
## 4626  poisonous      foul         several        woods        enlarging
## 4627  poisonous      foul         several        paths        enlarging
## 4628  poisonous  creosote       scattered        woods        enlarging
## 4629  poisonous      foul         several      grasses         tapering
## 4630     edible      none         several        woods         tapering
## 4631  poisonous      foul         several        paths        enlarging
## 4632  poisonous      foul        solitary        woods        enlarging
## 4633  poisonous      foul         several      grasses        enlarging
## 4634     edible      none         several        woods         tapering
## 4635  poisonous      foul        solitary        woods        enlarging
## 4636  poisonous      foul         several        paths        enlarging
## 4637  poisonous      foul        solitary        paths        enlarging
## 4638  poisonous      foul         several        paths        enlarging
## 4639  poisonous      foul        solitary        woods        enlarging
## 4640  poisonous      foul         several      grasses        enlarging
## 4641  poisonous      foul       scattered        urban         tapering
## 4642  poisonous      foul         several        woods        enlarging
## 4643  poisonous      foul         several      grasses        enlarging
## 4644  poisonous      foul        solitary        paths        enlarging
## 4645  poisonous      foul         several        paths        enlarging
## 4646  poisonous      foul         several        woods        enlarging
## 4647     edible      none         several        woods        enlarging
## 4648  poisonous      foul        solitary        woods        enlarging
## 4649  poisonous      foul         several      grasses        enlarging
## 4650  poisonous      foul        solitary      grasses        enlarging
## 4651  poisonous      foul        solitary      grasses        enlarging
## 4652     edible      none        solitary        woods         tapering
## 4653  poisonous      foul         several        paths        enlarging
## 4654  poisonous      foul        solitary        woods        enlarging
## 4655  poisonous      foul        solitary        paths        enlarging
## 4656  poisonous      foul        solitary      grasses        enlarging
## 4657  poisonous      foul         several        woods        enlarging
## 4658  poisonous      foul         several        paths        enlarging
## 4659  poisonous      foul         several        paths        enlarging
## 4660  poisonous      foul         several      grasses        enlarging
## 4661  poisonous      foul       scattered        urban         tapering
## 4662     edible      none       clustered        waste        enlarging
## 4663     edible      none        solitary        woods        enlarging
## 4664  poisonous      foul         several      grasses        enlarging
## 4665  poisonous      foul        solitary        woods        enlarging
## 4666  poisonous      foul        solitary        paths        enlarging
## 4667  poisonous      foul        solitary        woods        enlarging
## 4668  poisonous      foul        solitary        paths        enlarging
## 4669  poisonous      foul        solitary      grasses        enlarging
## 4670  poisonous      foul        solitary      grasses        enlarging
## 4671  poisonous      foul        solitary        paths        enlarging
## 4672  poisonous      foul        solitary        paths        enlarging
## 4673     edible      none       clustered        waste        enlarging
## 4674  poisonous      foul        solitary        paths        enlarging
## 4675  poisonous      foul        solitary        paths        enlarging
## 4676  poisonous      foul        solitary        paths        enlarging
## 4677  poisonous      foul         several      grasses        enlarging
## 4678  poisonous      foul        solitary        woods        enlarging
## 4679  poisonous      foul        solitary        woods        enlarging
## 4680  poisonous      foul        solitary        paths        enlarging
## 4681  poisonous      foul        solitary      grasses        enlarging
## 4682  poisonous      foul        solitary        woods        enlarging
## 4683  poisonous      foul        solitary        paths        enlarging
## 4684  poisonous      foul        solitary        woods        enlarging
## 4685  poisonous      foul        solitary        paths        enlarging
## 4686  poisonous      foul         several        paths        enlarging
## 4687  poisonous      foul         several        woods        enlarging
## 4688  poisonous      foul        solitary      grasses        enlarging
## 4689  poisonous      foul         several        woods        enlarging
## 4690  poisonous      foul        solitary      grasses        enlarging
## 4691  poisonous      foul         several        woods        enlarging
## 4692  poisonous      foul        solitary        paths        enlarging
## 4693  poisonous      foul        solitary      grasses        enlarging
## 4694  poisonous      foul         several        paths        enlarging
## 4695  poisonous      foul         several        paths        enlarging
## 4696     edible      none        solitary        woods         tapering
## 4697  poisonous      foul        solitary        woods        enlarging
## 4698  poisonous      foul        solitary        paths        enlarging
## 4699  poisonous      foul       scattered      grasses         tapering
## 4700  poisonous      foul         several        paths        enlarging
## 4701  poisonous      foul         several        paths        enlarging
## 4702  poisonous  creosote       scattered        woods        enlarging
## 4703  poisonous      foul        solitary        woods        enlarging
## 4704  poisonous      foul       scattered        urban         tapering
## 4705  poisonous      foul        solitary      grasses        enlarging
## 4706  poisonous      foul        solitary        woods        enlarging
## 4707  poisonous      foul        solitary      grasses        enlarging
## 4708  poisonous      none         several      grasses        enlarging
## 4709  poisonous      foul         several        urban         tapering
## 4710  poisonous      foul         several      grasses        enlarging
## 4711  poisonous      foul        solitary      grasses        enlarging
## 4712  poisonous      foul         several      grasses        enlarging
## 4713  poisonous      foul        solitary        paths        enlarging
## 4714  poisonous      foul         several        paths        enlarging
## 4715  poisonous      foul        solitary        paths        enlarging
## 4716  poisonous      foul         several        paths        enlarging
## 4717     edible      none         several        woods        enlarging
## 4718  poisonous      foul        solitary      grasses        enlarging
## 4719     edible      none         several        woods         tapering
## 4720  poisonous      foul        solitary      grasses        enlarging
## 4721  poisonous      foul         several      grasses        enlarging
## 4722  poisonous      foul         several       leaves         tapering
## 4723  poisonous      foul        solitary      grasses        enlarging
## 4724  poisonous      foul        solitary        woods        enlarging
## 4725  poisonous      foul        solitary      grasses        enlarging
## 4726  poisonous      foul         several        paths        enlarging
## 4727  poisonous      foul        solitary      grasses        enlarging
## 4728  poisonous      foul        solitary        woods        enlarging
## 4729  poisonous      foul        solitary      grasses        enlarging
## 4730  poisonous      foul         several        paths        enlarging
## 4731  poisonous      foul        solitary      grasses        enlarging
## 4732     edible      none        solitary        woods         tapering
## 4733  poisonous      foul         several      grasses        enlarging
## 4734     edible      none        solitary        woods         tapering
## 4735  poisonous      foul        solitary        woods        enlarging
## 4736  poisonous      foul        solitary        paths        enlarging
## 4737  poisonous      foul        solitary        paths        enlarging
## 4738  poisonous      foul        solitary        paths        enlarging
## 4739  poisonous      foul         several        woods        enlarging
## 4740  poisonous      foul         several        woods        enlarging
## 4741  poisonous      foul        solitary        paths        enlarging
## 4742  poisonous      foul        solitary      grasses        enlarging
## 4743  poisonous      foul         several        woods        enlarging
## 4744  poisonous      foul        solitary        paths        enlarging
## 4745  poisonous      foul         several        woods        enlarging
## 4746  poisonous      foul        solitary        woods        enlarging
## 4747  poisonous      foul        solitary        paths        enlarging
## 4748  poisonous      foul         several        woods        enlarging
## 4749  poisonous  creosote       scattered        woods        enlarging
## 4750  poisonous      foul         several        woods        enlarging
## 4751  poisonous      foul         several        woods        enlarging
## 4752  poisonous      foul        solitary      grasses        enlarging
## 4753  poisonous      foul         several        woods        enlarging
## 4754  poisonous      foul         several        paths        enlarging
## 4755  poisonous      foul        solitary        paths        enlarging
## 4756  poisonous      foul         several        woods        enlarging
## 4757  poisonous      foul         several        woods        enlarging
## 4758  poisonous      foul         several      grasses        enlarging
## 4759  poisonous      foul        solitary        woods        enlarging
## 4760  poisonous      foul        solitary        woods        enlarging
## 4761  poisonous      foul         several        woods        enlarging
## 4762  poisonous      foul        solitary        woods        enlarging
## 4763  poisonous      foul         several        woods        enlarging
## 4764  poisonous      foul        solitary      grasses        enlarging
## 4765  poisonous      foul         several      grasses        enlarging
## 4766  poisonous      foul        solitary        woods        enlarging
## 4767  poisonous      foul        solitary        paths        enlarging
## 4768  poisonous      foul         several      grasses        enlarging
## 4769  poisonous      foul         several        paths        enlarging
## 4770  poisonous      foul         several        woods        enlarging
## 4771  poisonous      foul        solitary        woods        enlarging
## 4772  poisonous      foul         several        paths        enlarging
## 4773  poisonous      foul         several        paths        enlarging
## 4774  poisonous      foul         several        woods        enlarging
## 4775  poisonous      foul        solitary        woods        enlarging
## 4776  poisonous      foul         several        paths        enlarging
## 4777     edible      none       clustered        waste        enlarging
## 4778  poisonous      foul         several        woods        enlarging
## 4779  poisonous  creosote         several        woods        enlarging
## 4780  poisonous      foul        solitary      grasses        enlarging
## 4781  poisonous      foul        solitary        paths        enlarging
## 4782  poisonous      foul        solitary      grasses        enlarging
## 4783     edible      none        solitary        woods         tapering
## 4784  poisonous      foul         several        woods        enlarging
## 4785  poisonous      foul        solitary      grasses        enlarging
## 4786  poisonous      foul         several      grasses        enlarging
## 4787  poisonous      foul        solitary      grasses        enlarging
## 4788     edible      none         several        woods         tapering
## 4789  poisonous      foul        solitary        paths        enlarging
## 4790  poisonous      foul         several        paths        enlarging
## 4791  poisonous      foul         several        paths        enlarging
## 4792  poisonous      foul        solitary        woods        enlarging
## 4793  poisonous      foul        solitary        woods        enlarging
## 4794  poisonous      foul         several      grasses        enlarging
## 4795  poisonous      foul         several      grasses        enlarging
## 4796  poisonous      foul        solitary      grasses        enlarging
## 4797  poisonous      foul        solitary        paths        enlarging
## 4798  poisonous      foul        solitary      grasses        enlarging
## 4799     edible      none        solitary        woods         tapering
## 4800  poisonous      foul       scattered      grasses         tapering
## 4801  poisonous      foul         several        paths         tapering
## 4802  poisonous      foul         several      grasses         tapering
## 4803  poisonous      foul        solitary      grasses        enlarging
## 4804  poisonous      foul         several      grasses        enlarging
## 4805  poisonous      foul         several        woods        enlarging
## 4806     edible      none       clustered        waste        enlarging
## 4807  poisonous      foul         several        paths        enlarging
## 4808  poisonous      foul         several      grasses        enlarging
## 4809  poisonous      foul        solitary        woods        enlarging
## 4810  poisonous      foul        solitary        woods        enlarging
## 4811  poisonous      foul        solitary      grasses        enlarging
## 4812     edible      none       clustered        waste        enlarging
## 4813  poisonous      foul         several      grasses        enlarging
## 4814  poisonous      none         several        woods        enlarging
## 4815  poisonous      foul         several        woods        enlarging
## 4816  poisonous      foul         several        paths        enlarging
## 4817  poisonous     spicy         several        paths         tapering
## 4818  poisonous      foul         several        woods        enlarging
## 4819  poisonous      foul        solitary        paths        enlarging
## 4820  poisonous      foul         several      grasses         tapering
## 4821  poisonous      foul         several        woods        enlarging
## 4822  poisonous      foul        solitary      grasses        enlarging
## 4823  poisonous      foul        solitary      grasses        enlarging
## 4824     edible      none       clustered        waste        enlarging
## 4825  poisonous      foul         several        woods        enlarging
## 4826  poisonous      none         several        woods        enlarging
## 4827  poisonous      foul         several        woods        enlarging
## 4828  poisonous      foul       scattered        urban         tapering
## 4829  poisonous      foul         several        woods        enlarging
## 4830  poisonous      foul         several      grasses        enlarging
## 4831     edible      none       clustered        waste        enlarging
## 4832  poisonous      foul         several        paths        enlarging
## 4833  poisonous      foul         several        paths        enlarging
## 4834     edible      none         several       leaves        enlarging
## 4835  poisonous  creosote         several        woods        enlarging
## 4836  poisonous      foul        solitary      grasses        enlarging
## 4837  poisonous      foul         several        paths        enlarging
## 4838  poisonous      foul        solitary        woods        enlarging
## 4839  poisonous      foul         several        paths        enlarging
## 4840  poisonous      none         several      grasses        enlarging
## 4841  poisonous      foul         several      grasses         tapering
## 4842     edible      none        solitary        woods         tapering
## 4843  poisonous      none         several      meadows        enlarging
## 4844     edible      none       clustered        waste        enlarging
## 4845  poisonous      foul         several      grasses         tapering
## 4846     edible      none       clustered        waste        enlarging
## 4847  poisonous      foul        solitary        paths        enlarging
## 4848  poisonous      foul         several        urban         tapering
## 4849  poisonous      foul         several        woods        enlarging
## 4850  poisonous      foul         several        woods        enlarging
## 4851  poisonous      foul         several        woods        enlarging
## 4852  poisonous      foul        solitary        paths        enlarging
## 4853  poisonous      foul         several        woods        enlarging
## 4854  poisonous      foul        solitary        woods        enlarging
## 4855  poisonous      foul        solitary        paths        enlarging
## 4856  poisonous      foul        solitary        paths        enlarging
## 4857  poisonous      foul         several        paths        enlarging
## 4858     edible      none       clustered        waste        enlarging
## 4859     edible      none       clustered        waste        enlarging
## 4860     edible      none       clustered        waste        enlarging
## 4861  poisonous      foul         several        woods        enlarging
## 4862     edible      none         several        woods         tapering
## 4863  poisonous      foul        solitary        paths        enlarging
## 4864  poisonous      foul        solitary      grasses        enlarging
## 4865  poisonous      foul         several      grasses         tapering
## 4866  poisonous      foul         several        paths        enlarging
## 4867  poisonous      foul        solitary        woods        enlarging
## 4868  poisonous      foul         several      grasses        enlarging
## 4869  poisonous      foul         several       leaves         tapering
## 4870  poisonous      foul         several        paths        enlarging
## 4871     edible      none       clustered        waste        enlarging
## 4872     edible      none         several        woods         tapering
## 4873  poisonous      foul        solitary      grasses        enlarging
## 4874  poisonous      foul         several        paths        enlarging
## 4875  poisonous      foul        solitary        woods        enlarging
## 4876     edible      none         several        woods         tapering
## 4877  poisonous      foul         several        paths        enlarging
## 4878  poisonous      foul        solitary        paths        enlarging
## 4879  poisonous      foul         several        paths        enlarging
## 4880  poisonous      foul        solitary        woods        enlarging
## 4881  poisonous      foul         several        woods        enlarging
## 4882  poisonous      none         several      meadows        enlarging
## 4883  poisonous      foul        solitary        paths        enlarging
## 4884  poisonous      foul         several        woods         tapering
## 4885  poisonous      foul        solitary      grasses        enlarging
## 4886  poisonous      foul         several      grasses        enlarging
## 4887  poisonous      foul        solitary        paths        enlarging
## 4888     edible      none       clustered        waste        enlarging
## 4889  poisonous      foul       scattered      grasses         tapering
## 4890  poisonous      foul        solitary      grasses        enlarging
## 4891  poisonous      foul         several        paths        enlarging
## 4892  poisonous      foul         several      grasses        enlarging
## 4893  poisonous      foul       scattered        urban         tapering
## 4894  poisonous  creosote         several        woods        enlarging
## 4895  poisonous      foul        solitary        paths        enlarging
## 4896  poisonous      foul        solitary      grasses        enlarging
## 4897  poisonous      foul        solitary        paths        enlarging
## 4898     edible      none        solitary        woods        enlarging
## 4899     edible      none         several        woods        enlarging
## 4900  poisonous      foul         several        woods        enlarging
## 4901  poisonous      foul        solitary        paths        enlarging
## 4902  poisonous      foul        solitary      grasses        enlarging
## 4903  poisonous     fishy         several        paths         tapering
## 4904  poisonous     fishy         several       leaves         tapering
## 4905  poisonous      foul        solitary        woods        enlarging
## 4906  poisonous      foul         several      grasses        enlarging
## 4907  poisonous      foul        solitary        woods        enlarging
## 4908  poisonous      foul        solitary      grasses        enlarging
## 4909  poisonous      foul         several        woods        enlarging
## 4910  poisonous      foul        solitary        paths        enlarging
## 4911     edible      none       clustered        waste        enlarging
## 4912  poisonous      foul        solitary        paths        enlarging
## 4913  poisonous      foul        solitary        paths        enlarging
## 4914  poisonous      foul       scattered      grasses         tapering
## 4915  poisonous      foul         several      grasses        enlarging
## 4916  poisonous      foul        solitary        woods        enlarging
## 4917  poisonous      foul        solitary        paths        enlarging
## 4918  poisonous      foul         several        urban         tapering
## 4919  poisonous      foul        solitary      grasses        enlarging
## 4920  poisonous      foul         several      grasses        enlarging
## 4921  poisonous  creosote         several        woods        enlarging
## 4922  poisonous      foul        solitary        paths        enlarging
## 4923     edible      none        solitary        woods         tapering
## 4924  poisonous      foul        solitary      grasses        enlarging
## 4925  poisonous      foul        solitary        paths        enlarging
## 4926     edible      none       clustered        waste        enlarging
## 4927  poisonous      foul         several      grasses        enlarging
## 4928  poisonous      foul         several        woods        enlarging
## 4929  poisonous      foul        solitary      grasses        enlarging
## 4930     edible      none         several       leaves        enlarging
## 4931     edible      none       clustered        waste        enlarging
## 4932  poisonous      foul         several        paths        enlarging
## 4933  poisonous      foul         several      grasses        enlarging
## 4934  poisonous      foul         several      grasses         tapering
## 4935  poisonous      foul        solitary      grasses        enlarging
## 4936  poisonous      foul         several        paths        enlarging
## 4937  poisonous      foul         several      grasses        enlarging
## 4938  poisonous     spicy         several        paths         tapering
## 4939     edible      none       clustered        waste        enlarging
## 4940  poisonous      foul        solitary        woods        enlarging
## 4941  poisonous      foul         several        paths        enlarging
## 4942  poisonous      foul        solitary        paths        enlarging
## 4943  poisonous      foul         several        woods        enlarging
## 4944  poisonous      foul         several      grasses        enlarging
## 4945     edible      none       clustered        waste        enlarging
## 4946  poisonous      none         several        woods        enlarging
## 4947  poisonous      foul        solitary        woods        enlarging
## 4948  poisonous      foul        solitary        woods        enlarging
## 4949  poisonous      foul         several        paths        enlarging
## 4950  poisonous      foul         several        urban         tapering
## 4951     edible      none       clustered        waste        enlarging
## 4952  poisonous      foul       scattered        urban         tapering
## 4953  poisonous      foul        solitary        paths        enlarging
## 4954  poisonous      foul         several        paths        enlarging
## 4955  poisonous      foul         several        paths        enlarging
## 4956  poisonous      foul        solitary      grasses        enlarging
## 4957  poisonous      foul         several        woods        enlarging
## 4958  poisonous      foul         several        urban         tapering
## 4959  poisonous      foul        solitary        paths        enlarging
## 4960  poisonous      foul        solitary        woods        enlarging
## 4961  poisonous      foul        solitary      grasses        enlarging
## 4962  poisonous      foul        solitary        woods        enlarging
## 4963  poisonous      foul       scattered        urban         tapering
## 4964     edible      none       clustered        waste        enlarging
## 4965     edible      none       clustered        waste        enlarging
## 4966     edible      none       clustered        waste        enlarging
## 4967  poisonous      none         several      grasses        enlarging
## 4968  poisonous      foul         several        paths        enlarging
## 4969  poisonous      foul         several        paths        enlarging
## 4970  poisonous      foul         several      grasses        enlarging
## 4971  poisonous      foul        solitary        woods        enlarging
## 4972  poisonous      foul        solitary        paths        enlarging
## 4973  poisonous      foul         several        woods        enlarging
## 4974  poisonous      foul        solitary        woods        enlarging
## 4975  poisonous      foul         several        woods        enlarging
## 4976  poisonous      foul         several      grasses        enlarging
## 4977  poisonous      foul        solitary      grasses        enlarging
## 4978  poisonous      foul         several        woods        enlarging
## 4979  poisonous      foul        solitary        paths        enlarging
## 4980  poisonous      foul         several      grasses        enlarging
## 4981  poisonous      foul        solitary        woods        enlarging
## 4982  poisonous      foul         several        paths        enlarging
## 4983  poisonous      foul        solitary        paths        enlarging
## 4984     edible      none        solitary        woods        enlarging
## 4985  poisonous      foul         several      grasses        enlarging
## 4986  poisonous     fishy         several       leaves         tapering
## 4987  poisonous      foul         several      grasses        enlarging
## 4988  poisonous      foul        solitary        paths        enlarging
## 4989  poisonous      foul         several      grasses        enlarging
## 4990  poisonous      foul         several        woods        enlarging
## 4991  poisonous      foul        solitary        woods        enlarging
## 4992  poisonous      foul         several        paths        enlarging
## 4993     edible      none       clustered        waste        enlarging
## 4994  poisonous      foul        solitary        paths        enlarging
## 4995  poisonous      foul         several        woods        enlarging
## 4996     edible      none       clustered        waste        enlarging
## 4997  poisonous      foul        solitary        paths        enlarging
## 4998  poisonous      foul         several        woods        enlarging
## 4999  poisonous      foul         several        paths         tapering
## 5000  poisonous      foul         several        woods        enlarging
## 5001  poisonous      none         several        woods        enlarging
## 5002  poisonous      none         several      grasses        enlarging
## 5003  poisonous      foul         several        woods        enlarging
## 5004  poisonous      foul        solitary        woods        enlarging
## 5005     edible      none        solitary        woods        enlarging
## 5006  poisonous      foul         several      grasses        enlarging
## 5007  poisonous      foul        solitary      grasses        enlarging
## 5008  poisonous      foul        solitary      grasses        enlarging
## 5009  poisonous      foul        solitary        woods        enlarging
## 5010     edible      none       clustered        waste        enlarging
## 5011  poisonous      foul         several      grasses        enlarging
## 5012  poisonous      foul         several      grasses        enlarging
## 5013  poisonous      foul         several        paths        enlarging
## 5014  poisonous      foul         several        paths        enlarging
## 5015     edible      none       clustered        waste        enlarging
## 5016  poisonous      foul        solitary        woods        enlarging
## 5017  poisonous      foul         several        paths        enlarging
## 5018  poisonous      foul         several        woods        enlarging
## 5019  poisonous      foul         several        paths        enlarging
## 5020  poisonous      foul         several        urban         tapering
## 5021  poisonous  creosote         several        woods        enlarging
## 5022  poisonous      foul        solitary        woods        enlarging
## 5023     edible      none         several        woods        enlarging
## 5024  poisonous      foul        solitary        woods        enlarging
## 5025  poisonous      foul        solitary        woods        enlarging
## 5026  poisonous      foul         several      grasses        enlarging
## 5027  poisonous      foul         several        paths        enlarging
## 5028  poisonous      foul       scattered        urban         tapering
## 5029  poisonous      foul        solitary        woods        enlarging
## 5030  poisonous      foul        solitary        paths        enlarging
## 5031  poisonous      foul        solitary        woods        enlarging
## 5032  poisonous      foul         several        woods        enlarging
## 5033  poisonous      foul         several      grasses        enlarging
## 5034  poisonous      foul        solitary        woods        enlarging
## 5035  poisonous      foul        solitary      grasses        enlarging
## 5036  poisonous      foul        solitary        paths        enlarging
## 5037  poisonous      foul         several      grasses        enlarging
## 5038  poisonous      foul        solitary        woods        enlarging
## 5039  poisonous      foul        solitary        paths        enlarging
## 5040  poisonous      foul         several        paths        enlarging
## 5041  poisonous     spicy         several       leaves         tapering
## 5042  poisonous      foul        solitary        paths        enlarging
## 5043  poisonous      foul         several        paths        enlarging
## 5044  poisonous      foul         several      grasses         tapering
## 5045  poisonous      foul         several        woods        enlarging
## 5046  poisonous      foul        solitary        paths        enlarging
## 5047  poisonous      foul        solitary        paths        enlarging
## 5048  poisonous      foul         several        woods        enlarging
## 5049  poisonous      foul        solitary        woods        enlarging
## 5050  poisonous      foul         several        woods        enlarging
## 5051  poisonous     fishy         several       leaves         tapering
## 5052     edible      none       clustered        waste        enlarging
## 5053     edible      none       clustered        waste        enlarging
## 5054  poisonous      foul        solitary        woods        enlarging
## 5055  poisonous      foul        solitary        paths        enlarging
## 5056  poisonous      foul        solitary      grasses        enlarging
## 5057  poisonous      foul        solitary      grasses        enlarging
## 5058  poisonous      foul       scattered        urban         tapering
## 5059  poisonous      foul         several        paths        enlarging
## 5060  poisonous      foul       scattered        urban         tapering
## 5061  poisonous      foul         several        paths        enlarging
## 5062  poisonous      foul        solitary        paths        enlarging
## 5063  poisonous      foul       scattered        urban         tapering
## 5064  poisonous      foul       scattered      grasses         tapering
## 5065  poisonous      foul       scattered        urban         tapering
## 5066  poisonous      foul        solitary        woods        enlarging
## 5067  poisonous      foul        solitary        paths        enlarging
## 5068  poisonous      foul         several      grasses        enlarging
## 5069  poisonous      foul         several        paths        enlarging
## 5070     edible      none        solitary        woods        enlarging
## 5071     edible      none       clustered        waste        enlarging
## 5072  poisonous      foul         several      grasses        enlarging
## 5073  poisonous      foul         several      grasses        enlarging
## 5074  poisonous     fishy         several       leaves         tapering
## 5075  poisonous      foul         several        paths        enlarging
## 5076  poisonous      foul        solitary        paths        enlarging
## 5077  poisonous      foul         several        paths        enlarging
## 5078  poisonous      foul        solitary        woods        enlarging
## 5079     edible      none        solitary        woods         tapering
## 5080  poisonous      foul        solitary      grasses        enlarging
## 5081  poisonous      foul         several        woods        enlarging
## 5082  poisonous      foul         several        paths        enlarging
## 5083  poisonous      foul        solitary      grasses        enlarging
## 5084  poisonous      foul        solitary        paths        enlarging
## 5085  poisonous      none         several        woods        enlarging
## 5086  poisonous      foul        solitary      grasses        enlarging
## 5087     edible      none         several       leaves        enlarging
## 5088  poisonous      foul         several        paths        enlarging
## 5089  poisonous      foul        solitary        paths        enlarging
## 5090  poisonous      foul         several        woods        enlarging
## 5091  poisonous      foul         several        paths        enlarging
## 5092  poisonous      foul         several      grasses        enlarging
## 5093  poisonous      foul         several        woods        enlarging
## 5094  poisonous      foul        solitary        woods        enlarging
## 5095  poisonous      foul         several        paths        enlarging
## 5096  poisonous      foul        solitary        woods        enlarging
## 5097  poisonous      none         several      grasses        enlarging
## 5098     edible      none       clustered        waste        enlarging
## 5099  poisonous      foul         several        paths        enlarging
## 5100  poisonous      foul         several      grasses        enlarging
## 5101     edible      none       clustered        waste        enlarging
## 5102  poisonous      foul        solitary        woods        enlarging
## 5103  poisonous      foul       scattered        urban         tapering
## 5104  poisonous     spicy         several        paths         tapering
## 5105  poisonous     fishy         several        woods         tapering
## 5106  poisonous     fishy         several        paths         tapering
## 5107  poisonous      none       clustered       leaves        enlarging
## 5108  poisonous      foul         several        urban         tapering
## 5109     edible      none         several       leaves        enlarging
## 5110  poisonous      foul        solitary      grasses        enlarging
## 5111  poisonous      foul         several        woods        enlarging
## 5112  poisonous      foul        solitary        paths        enlarging
## 5113     edible      none       clustered        waste        enlarging
## 5114  poisonous      foul         several      grasses         tapering
## 5115  poisonous      foul       scattered      grasses         tapering
## 5116  poisonous     fishy         several        paths         tapering
## 5117     edible      none         several       leaves        enlarging
## 5118  poisonous      foul       scattered        urban         tapering
## 5119  poisonous      foul         several      grasses         tapering
## 5120  poisonous      foul         several        urban         tapering
## 5121  poisonous      foul         several      grasses         tapering
## 5122     edible      none         several       leaves        enlarging
## 5123  poisonous      foul         several        woods        enlarging
## 5124  poisonous      foul         several      grasses         tapering
## 5125  poisonous      foul       scattered        urban         tapering
## 5126  poisonous      none       clustered       leaves        enlarging
## 5127  poisonous      foul       scattered        urban         tapering
## 5128  poisonous      none       clustered       leaves        enlarging
## 5129  poisonous      foul         several      grasses         tapering
## 5130  poisonous      foul       scattered        urban         tapering
## 5131  poisonous      none         several        woods        enlarging
## 5132  poisonous     spicy         several        woods         tapering
## 5133  poisonous     fishy         several        woods         tapering
## 5134     edible      none       clustered        waste        enlarging
## 5135     edible      none       clustered        waste        enlarging
## 5136  poisonous      foul         several      grasses         tapering
## 5137  poisonous      none         several      meadows        enlarging
## 5138  poisonous      foul        solitary        paths        enlarging
## 5139  poisonous      foul        solitary      grasses        enlarging
## 5140  poisonous      none         several      grasses        enlarging
## 5141  poisonous      foul         several        paths         tapering
## 5142  poisonous     fishy         several        paths         tapering
## 5143  poisonous      foul        solitary        woods        enlarging
## 5144     edible      none       clustered        waste        enlarging
## 5145  poisonous      foul         several       leaves         tapering
## 5146  poisonous      foul        solitary      grasses        enlarging
## 5147  poisonous     fishy         several        woods         tapering
## 5148     edible      none         several       leaves        enlarging
## 5149  poisonous      foul         several        paths         tapering
## 5150     edible      none       clustered        waste        enlarging
## 5151     edible      none       clustered        waste        enlarging
## 5152  poisonous      foul        solitary        paths        enlarging
## 5153  poisonous      none         several      meadows        enlarging
## 5154  poisonous      none         several        woods        enlarging
## 5155  poisonous     fishy         several       leaves         tapering
## 5156  poisonous      foul       scattered      grasses         tapering
## 5157  poisonous      foul         several      grasses         tapering
## 5158  poisonous      foul        solitary        paths        enlarging
## 5159  poisonous      foul         several      grasses         tapering
## 5160  poisonous      foul         several       leaves         tapering
## 5161  poisonous      foul         several      grasses         tapering
## 5162  poisonous      none         several        woods        enlarging
## 5163     edible      none       clustered        waste        enlarging
## 5164  poisonous      foul       scattered      grasses         tapering
## 5165  poisonous      foul       scattered      grasses         tapering
## 5166     edible      none       clustered        waste        enlarging
## 5167  poisonous      foul        solitary        paths        enlarging
## 5168  poisonous      none         several        woods        enlarging
## 5169     edible      none       clustered        waste        enlarging
## 5170  poisonous      foul        solitary      grasses        enlarging
## 5171  poisonous      foul         several      grasses         tapering
## 5172  poisonous      foul       scattered      grasses         tapering
## 5173  poisonous      foul         several      grasses        enlarging
## 5174  poisonous      foul         several        woods        enlarging
## 5175     edible      none       clustered        waste        enlarging
## 5176     edible      none       clustered        waste        enlarging
## 5177  poisonous      none         several      grasses        enlarging
## 5178     edible      none         several       leaves        enlarging
## 5179     edible      none       clustered        waste        enlarging
## 5180  poisonous      foul         several        urban         tapering
## 5181  poisonous      foul         several      grasses         tapering
## 5182  poisonous      foul        solitary        woods        enlarging
## 5183  poisonous      foul         several        urban         tapering
## 5184  poisonous      foul       scattered      grasses         tapering
## 5185     edible      none         several       leaves        enlarging
## 5186  poisonous     fishy         several        woods         tapering
## 5187  poisonous      foul        solitary        woods        enlarging
## 5188     edible      none         several        woods        enlarging
## 5189  poisonous      foul         several        paths        enlarging
## 5190  poisonous      none         several      grasses        enlarging
## 5191  poisonous      foul         several        urban         tapering
## 5192  poisonous     spicy         several        woods         tapering
## 5193     edible      none       clustered        waste        enlarging
## 5194  poisonous      foul         several       leaves         tapering
## 5195  poisonous      foul         several        paths        enlarging
## 5196  poisonous      foul       scattered        urban         tapering
## 5197     edible      none       clustered        waste        enlarging
## 5198  poisonous      foul         several        paths        enlarging
## 5199  poisonous      foul         several      grasses        enlarging
## 5200  poisonous      foul        solitary        woods        enlarging
## 5201  poisonous      foul       scattered      grasses         tapering
## 5202  poisonous      foul         several        paths         tapering
## 5203  poisonous      foul         several        woods        enlarging
## 5204  poisonous      foul         several        woods        enlarging
## 5205  poisonous      none         several        woods        enlarging
## 5206     edible      none       clustered        waste        enlarging
## 5207  poisonous      foul         several      grasses        enlarging
## 5208  poisonous     fishy         several       leaves         tapering
## 5209  poisonous      foul       scattered        urban         tapering
## 5210     edible      none       clustered        waste        enlarging
## 5211  poisonous      foul         several        paths        enlarging
## 5212  poisonous     fishy         several        woods         tapering
## 5213  poisonous      foul         several        urban         tapering
## 5214  poisonous      foul         several      grasses         tapering
## 5215  poisonous      none         several      meadows        enlarging
## 5216     edible      none       clustered        waste        enlarging
## 5217  poisonous      foul         several        urban         tapering
## 5218  poisonous     fishy         several        woods         tapering
## 5219     edible      none       clustered        waste        enlarging
## 5220  poisonous      foul        solitary        woods        enlarging
## 5221     edible      none       clustered        waste        enlarging
## 5222  poisonous      foul       scattered        urban         tapering
## 5223     edible      none       clustered        waste        enlarging
## 5224  poisonous      none         several        woods        enlarging
## 5225  poisonous      foul         several      grasses         tapering
## 5226  poisonous      foul         several        paths         tapering
## 5227  poisonous      foul         several        woods         tapering
## 5228  poisonous      foul       scattered        urban         tapering
## 5229  poisonous      foul         several       leaves         tapering
## 5230     edible      none       clustered        waste        enlarging
## 5231     edible      none         several       leaves        enlarging
## 5232  poisonous      foul         several      grasses        enlarging
## 5233     edible      none       clustered        waste        enlarging
## 5234  poisonous      foul        solitary        paths        enlarging
## 5235  poisonous      foul         several        woods        enlarging
## 5236  poisonous      foul         several        urban         tapering
## 5237  poisonous      none       clustered       leaves        enlarging
## 5238     edible      none         several       leaves        enlarging
## 5239  poisonous      none         several        woods        enlarging
## 5240  poisonous      foul       scattered      grasses         tapering
## 5241  poisonous      none         several        woods        enlarging
## 5242  poisonous      foul         several        woods        enlarging
## 5243     edible      none       clustered        waste        enlarging
## 5244  poisonous      foul         several        paths        enlarging
## 5245  poisonous     fishy         several        paths         tapering
## 5246  poisonous      foul        solitary        woods        enlarging
## 5247  poisonous      foul         several        paths        enlarging
## 5248  poisonous      none         several      grasses        enlarging
## 5249  poisonous      foul        solitary      grasses        enlarging
## 5250  poisonous      foul         several      grasses         tapering
## 5251  poisonous      foul         several      grasses         tapering
## 5252     edible      none       clustered        waste        enlarging
## 5253  poisonous      foul         several        paths        enlarging
## 5254  poisonous      foul       scattered      grasses         tapering
## 5255  poisonous      none         several      meadows        enlarging
## 5256  poisonous      foul         several      grasses         tapering
## 5257     edible      none       clustered        waste        enlarging
## 5258  poisonous      foul       scattered        urban         tapering
## 5259  poisonous      none         several        woods        enlarging
## 5260  poisonous      foul         several      grasses         tapering
## 5261  poisonous      foul        solitary        woods        enlarging
## 5262  poisonous      none         several        woods        enlarging
## 5263  poisonous      foul       scattered        urban         tapering
## 5264     edible      none       clustered        waste        enlarging
## 5265  poisonous      foul         several        woods         tapering
## 5266  poisonous     fishy         several        woods         tapering
## 5267  poisonous     fishy         several       leaves         tapering
## 5268  poisonous      foul         several        urban         tapering
## 5269     edible      none       clustered        waste        enlarging
## 5270  poisonous      foul        solitary      grasses        enlarging
## 5271     edible      none       clustered        waste        enlarging
## 5272  poisonous      foul       scattered        urban         tapering
## 5273     edible      none         several       leaves        enlarging
## 5274  poisonous     spicy         several       leaves         tapering
## 5275  poisonous      foul         several      grasses         tapering
## 5276  poisonous      foul         several        urban         tapering
## 5277  poisonous      none         several        woods        enlarging
## 5278  poisonous      none         several      meadows        enlarging
## 5279  poisonous      foul        solitary        paths        enlarging
## 5280     edible      none       clustered        waste        enlarging
## 5281  poisonous      none       clustered       leaves        enlarging
## 5282  poisonous      foul         several        urban         tapering
## 5283     edible      none        solitary        woods        enlarging
## 5284     edible      none         several        woods        enlarging
## 5285     edible      none       clustered        waste        enlarging
## 5286  poisonous      foul         several      grasses         tapering
## 5287  poisonous     fishy         several        woods         tapering
## 5288  poisonous      foul        solitary        paths        enlarging
## 5289  poisonous      foul       scattered      grasses         tapering
## 5290  poisonous      foul       scattered      grasses         tapering
## 5291     edible      none       clustered        waste        enlarging
## 5292  poisonous     fishy         several        woods         tapering
## 5293  poisonous      foul        solitary      grasses        enlarging
## 5294  poisonous      foul        solitary        woods        enlarging
## 5295     edible      none       clustered        waste        enlarging
## 5296  poisonous      foul       scattered      grasses         tapering
## 5297  poisonous     spicy         several       leaves         tapering
## 5298  poisonous      foul       scattered      grasses         tapering
## 5299     edible      none         several       leaves        enlarging
## 5300  poisonous      foul         several      grasses         tapering
## 5301  poisonous      foul         several        paths        enlarging
## 5302     edible      none        solitary        woods        enlarging
## 5303  poisonous      foul         several        paths        enlarging
## 5304  poisonous      foul         several       leaves         tapering
## 5305  poisonous     spicy         several       leaves         tapering
## 5306     edible      none       clustered        waste        enlarging
## 5307  poisonous      foul         several        urban         tapering
## 5308     edible      none       clustered        waste        enlarging
## 5309     edible      none       clustered        waste        enlarging
## 5310  poisonous      foul         several        paths         tapering
## 5311  poisonous      none         several        woods        enlarging
## 5312  poisonous     spicy         several        paths         tapering
## 5313     edible      none       clustered        waste        enlarging
## 5314  poisonous      foul         several      grasses         tapering
## 5315  poisonous      foul         several      grasses        enlarging
## 5316     edible      none       clustered        waste        enlarging
## 5317  poisonous      none         several      meadows        enlarging
## 5318     edible      none         several       leaves        enlarging
## 5319  poisonous      foul         several        paths        enlarging
## 5320  poisonous      foul       scattered      grasses         tapering
## 5321  poisonous     spicy         several       leaves         tapering
## 5322  poisonous      foul       scattered        urban         tapering
## 5323  poisonous      foul       scattered        urban         tapering
## 5324  poisonous      foul         several        paths         tapering
## 5325     edible      none         several        woods        enlarging
## 5326  poisonous     spicy         several       leaves         tapering
## 5327  poisonous      foul         several      grasses        enlarging
## 5328  poisonous     fishy         several       leaves         tapering
## 5329  poisonous      foul         several      grasses         tapering
## 5330  poisonous      foul         several        woods        enlarging
## 5331  poisonous      foul       scattered        urban         tapering
## 5332  poisonous      none         several        woods        enlarging
## 5333  poisonous      foul         several        urban         tapering
## 5334  poisonous      foul         several        urban         tapering
## 5335     edible      none         several       leaves        enlarging
## 5336  poisonous      foul         several        urban         tapering
## 5337  poisonous     spicy         several        paths         tapering
## 5338  poisonous      none         several      grasses        enlarging
## 5339  poisonous      foul        solitary        paths        enlarging
## 5340     edible      none       clustered        waste        enlarging
## 5341  poisonous      none         several      grasses        enlarging
## 5342  poisonous      none         several        woods        enlarging
## 5343  poisonous      foul        solitary        paths        enlarging
## 5344     edible      none         several       leaves        enlarging
## 5345     edible      none         several       leaves        enlarging
## 5346  poisonous     fishy         several       leaves         tapering
## 5347  poisonous      foul         several        urban         tapering
## 5348  poisonous      foul       scattered        urban         tapering
## 5349  poisonous      foul         several      grasses         tapering
## 5350  poisonous      foul       scattered      grasses         tapering
## 5351     edible      none         several        woods        enlarging
## 5352  poisonous      foul        solitary        woods        enlarging
## 5353  poisonous      foul       scattered        urban         tapering
## 5354  poisonous      foul         several        paths         tapering
## 5355  poisonous      foul        solitary      grasses        enlarging
## 5356  poisonous      foul         several        urban         tapering
## 5357  poisonous      foul       scattered        urban         tapering
## 5358  poisonous      foul        solitary        paths        enlarging
## 5359  poisonous      foul        solitary        paths        enlarging
## 5360  poisonous      foul         several        woods         tapering
## 5361  poisonous      none         several        woods        enlarging
## 5362     edible      none       clustered        waste        enlarging
## 5363  poisonous      foul        solitary        woods        enlarging
## 5364  poisonous      foul       scattered        urban         tapering
## 5365  poisonous     fishy         several       leaves         tapering
## 5366  poisonous      foul         several        woods        enlarging
## 5367  poisonous      foul        solitary        woods        enlarging
## 5368  poisonous      foul       scattered        urban         tapering
## 5369  poisonous      none         several      meadows        enlarging
## 5370  poisonous      foul        solitary      grasses        enlarging
## 5371     edible      none       clustered        waste        enlarging
## 5372  poisonous      foul       scattered      grasses         tapering
## 5373  poisonous      foul       scattered      grasses         tapering
## 5374  poisonous      foul       scattered      grasses         tapering
## 5375  poisonous      foul         several        woods         tapering
## 5376  poisonous      none         several      meadows        enlarging
## 5377  poisonous      foul       scattered        urban         tapering
## 5378     edible      none       clustered        waste        enlarging
## 5379  poisonous     spicy         several        paths         tapering
## 5380  poisonous      foul         several        paths        enlarging
## 5381  poisonous      foul         several        urban         tapering
## 5382     edible      none       clustered        waste        enlarging
## 5383  poisonous      foul         several        urban         tapering
## 5384     edible      none         several       leaves        enlarging
## 5385     edible      none       clustered        waste        enlarging
## 5386     edible      none         several       leaves        enlarging
## 5387     edible      none       clustered        waste        enlarging
## 5388  poisonous      foul         several        urban         tapering
## 5389     edible      none       clustered        waste        enlarging
## 5390     edible      none       clustered        waste        enlarging
## 5391  poisonous      foul         several      grasses         tapering
## 5392     edible      none       clustered        waste        enlarging
## 5393  poisonous      foul         several      grasses         tapering
## 5394  poisonous      none         several        woods        enlarging
## 5395  poisonous      foul       scattered        urban         tapering
## 5396  poisonous      foul         several      grasses        enlarging
## 5397  poisonous      foul        solitary        paths        enlarging
## 5398  poisonous      none         several        woods        enlarging
## 5399  poisonous      foul        solitary        paths        enlarging
## 5400  poisonous      foul         several        paths        enlarging
## 5401     edible      none         several       leaves        enlarging
## 5402  poisonous     fishy         several        woods         tapering
## 5403  poisonous      foul       scattered      grasses         tapering
## 5404  poisonous      foul         several        paths         tapering
## 5405  poisonous      none         several      grasses        enlarging
## 5406  poisonous      foul        solitary        woods        enlarging
## 5407  poisonous      foul       scattered      grasses         tapering
## 5408  poisonous      foul         several        paths        enlarging
## 5409  poisonous      foul       scattered      grasses         tapering
## 5410  poisonous      foul       scattered        urban         tapering
## 5411  poisonous     fishy         several        paths         tapering
## 5412  poisonous      foul         several        paths        enlarging
## 5413     edible      none       clustered        waste        enlarging
## 5414  poisonous      foul         several      grasses        enlarging
## 5415     edible      none       clustered        waste        enlarging
## 5416     edible      none       clustered        waste        enlarging
## 5417     edible      none       clustered        waste        enlarging
## 5418  poisonous      foul         several        urban         tapering
## 5419  poisonous      foul         several        woods        enlarging
## 5420     edible      none       clustered        waste        enlarging
## 5421     edible      none       clustered        waste        enlarging
## 5422  poisonous      foul         several        woods        enlarging
## 5423  poisonous      none         several      meadows        enlarging
## 5424  poisonous      foul       scattered        urban         tapering
## 5425  poisonous      foul       scattered      grasses         tapering
## 5426  poisonous      foul       scattered      grasses         tapering
## 5427  poisonous      foul        solitary        paths        enlarging
## 5428  poisonous      foul       scattered      grasses         tapering
## 5429  poisonous      foul       scattered        urban         tapering
## 5430     edible      none        solitary        woods        enlarging
## 5431  poisonous      foul         several      grasses        enlarging
## 5432  poisonous      foul         several        woods         tapering
## 5433  poisonous      foul       scattered      grasses         tapering
## 5434     edible      none         several       leaves        enlarging
## 5435  poisonous      foul         several        urban         tapering
## 5436     edible      none        solitary        woods        enlarging
## 5437  poisonous      foul         several        paths        enlarging
## 5438  poisonous      foul         several      grasses        enlarging
## 5439  poisonous      none         several      meadows        enlarging
## 5440  poisonous     fishy         several        woods         tapering
## 5441  poisonous     spicy         several       leaves         tapering
## 5442  poisonous      foul         several        paths        enlarging
## 5443     edible      none       clustered        waste        enlarging
## 5444  poisonous      foul       scattered      grasses         tapering
## 5445  poisonous      foul         several      grasses         tapering
## 5446  poisonous     fishy         several        paths         tapering
## 5447  poisonous      foul       scattered        urban         tapering
## 5448  poisonous     fishy         several        paths         tapering
## 5449  poisonous      foul       scattered      grasses         tapering
## 5450  poisonous      foul         several        urban         tapering
## 5451  poisonous      foul       scattered      grasses         tapering
## 5452  poisonous      foul         several        paths        enlarging
## 5453  poisonous      foul         several        paths        enlarging
## 5454  poisonous      foul        solitary      grasses        enlarging
## 5455  poisonous      foul        solitary      grasses        enlarging
## 5456  poisonous      foul       scattered        urban         tapering
## 5457  poisonous      foul       scattered        urban         tapering
## 5458  poisonous      foul       scattered        urban         tapering
## 5459  poisonous      foul        solitary      grasses        enlarging
## 5460  poisonous      foul       scattered      grasses         tapering
## 5461  poisonous     spicy         several        woods         tapering
## 5462  poisonous      foul       scattered      grasses         tapering
## 5463     edible      none       clustered        waste        enlarging
## 5464  poisonous      none         several      meadows        enlarging
## 5465  poisonous     fishy         several        paths         tapering
## 5466     edible      none       clustered        waste        enlarging
## 5467  poisonous      foul         several        urban         tapering
## 5468  poisonous      foul         several        urban         tapering
## 5469  poisonous     fishy         several        woods         tapering
## 5470  poisonous      foul       scattered      grasses         tapering
## 5471  poisonous     fishy         several       leaves         tapering
## 5472  poisonous      none         several      grasses        enlarging
## 5473  poisonous     fishy         several        woods         tapering
## 5474  poisonous      foul         several        paths        enlarging
## 5475  poisonous      foul         several        woods        enlarging
## 5476  poisonous      foul         several      grasses        enlarging
## 5477  poisonous      none         several      meadows        enlarging
## 5478  poisonous      foul       scattered      grasses         tapering
## 5479     edible      none       clustered        waste        enlarging
## 5480  poisonous      foul         several      grasses         tapering
## 5481     edible      none       clustered        waste        enlarging
## 5482  poisonous      foul       scattered        urban         tapering
## 5483  poisonous     fishy         several        paths         tapering
## 5484  poisonous      foul         several        woods        enlarging
## 5485  poisonous      foul         several        paths        enlarging
## 5486  poisonous      foul        solitary        paths        enlarging
## 5487     edible      none       clustered        waste        enlarging
## 5488  poisonous      foul         several        paths        enlarging
## 5489  poisonous     spicy         several        woods         tapering
## 5490  poisonous      foul         several      grasses         tapering
## 5491  poisonous      foul        solitary        woods        enlarging
## 5492     edible      none       clustered        waste        enlarging
## 5493  poisonous      none         several      meadows        enlarging
## 5494  poisonous      none         several      meadows        enlarging
## 5495  poisonous      foul        solitary        paths        enlarging
## 5496  poisonous      foul         several      grasses        enlarging
## 5497     edible      none         several        woods        enlarging
## 5498  poisonous      foul       scattered      grasses         tapering
## 5499  poisonous      foul       scattered      grasses         tapering
## 5500  poisonous      foul       scattered        urban         tapering
## 5501  poisonous     fishy         several        paths         tapering
## 5502     edible      none       clustered        waste        enlarging
## 5503     edible      none       clustered        waste        enlarging
## 5504     edible      none       clustered        waste        enlarging
## 5505  poisonous      foul         several      grasses         tapering
## 5506  poisonous      foul        solitary      grasses        enlarging
## 5507  poisonous     fishy         several       leaves         tapering
## 5508  poisonous      none       clustered       leaves        enlarging
## 5509  poisonous      foul         several      grasses         tapering
## 5510  poisonous      foul       scattered      grasses         tapering
## 5511  poisonous     fishy         several       leaves         tapering
## 5512  poisonous      foul       scattered      grasses         tapering
## 5513  poisonous     spicy         several        woods         tapering
## 5514     edible      none       clustered        waste        enlarging
## 5515     edible      none        solitary        woods        enlarging
## 5516  poisonous      foul        solitary      grasses        enlarging
## 5517  poisonous     fishy         several        woods         tapering
## 5518  poisonous      foul        solitary        woods        enlarging
## 5519  poisonous     spicy         several       leaves         tapering
## 5520  poisonous      foul         several        urban         tapering
## 5521  poisonous     spicy         several        woods         tapering
## 5522     edible      none         several       leaves        enlarging
## 5523  poisonous      foul         several        urban         tapering
## 5524  poisonous      foul        solitary        paths        enlarging
## 5525     edible      none       clustered        waste        enlarging
## 5526  poisonous      none         several      meadows        enlarging
## 5527  poisonous      foul         several        paths        enlarging
## 5528     edible      none         several        woods        enlarging
## 5529  poisonous      foul         several       leaves         tapering
## 5530  poisonous     fishy         several        paths         tapering
## 5531  poisonous      foul         several      grasses         tapering
## 5532  poisonous      foul         several        woods        enlarging
## 5533  poisonous      foul         several        woods         tapering
## 5534     edible      none       clustered        waste        enlarging
## 5535  poisonous      foul         several       leaves         tapering
## 5536     edible      none       clustered        waste        enlarging
## 5537     edible      none       clustered        waste        enlarging
## 5538     edible      none       clustered        waste        enlarging
## 5539  poisonous      foul         several      grasses         tapering
## 5540     edible      none       clustered        waste        enlarging
## 5541  poisonous      foul        solitary      grasses        enlarging
## 5542  poisonous      foul        solitary        woods        enlarging
## 5543  poisonous      foul        solitary      grasses        enlarging
## 5544     edible      none       clustered        waste        enlarging
## 5545  poisonous      foul         several        urban         tapering
## 5546     edible      none         several       leaves        enlarging
## 5547     edible      none         several       leaves        enlarging
## 5548  poisonous      none         several      meadows        enlarging
## 5549  poisonous     fishy         several        paths         tapering
## 5550  poisonous      foul       scattered        urban         tapering
## 5551     edible      none         several        woods        enlarging
## 5552  poisonous      foul       scattered      grasses         tapering
## 5553     edible      none        solitary        woods        enlarging
## 5554  poisonous     fishy         several        paths         tapering
## 5555  poisonous      foul         several        urban         tapering
## 5556     edible      none       clustered        waste        enlarging
## 5557     edible      none       clustered        waste        enlarging
## 5558  poisonous     spicy         several        paths         tapering
## 5559  poisonous      foul         several        paths         tapering
## 5560  poisonous      foul         several      grasses         tapering
## 5561  poisonous      foul         several        paths        enlarging
## 5562     edible      none       clustered        waste        enlarging
## 5563     edible      none       clustered        waste        enlarging
## 5564  poisonous      foul         several        urban         tapering
## 5565  poisonous      foul         several      grasses        enlarging
## 5566  poisonous      none         several      meadows        enlarging
## 5567  poisonous      foul         several        paths        enlarging
## 5568  poisonous      foul         several      grasses         tapering
## 5569     edible      none       clustered        waste        enlarging
## 5570     edible      none       clustered        waste        enlarging
## 5571  poisonous      none         several      meadows        enlarging
## 5572  poisonous      foul         several        woods        enlarging
## 5573  poisonous     fishy         several        woods         tapering
## 5574  poisonous      foul       scattered      grasses         tapering
## 5575  poisonous      foul         several      grasses         tapering
## 5576  poisonous     spicy         several        paths         tapering
## 5577  poisonous      none         several      grasses        enlarging
## 5578     edible      none         several       leaves        enlarging
## 5579  poisonous      foul         several        woods         tapering
## 5580  poisonous      foul       scattered        urban         tapering
## 5581  poisonous      foul         several        woods         tapering
## 5582     edible      none         several       leaves        enlarging
## 5583  poisonous     fishy         several        paths         tapering
## 5584  poisonous      foul       scattered        urban         tapering
## 5585  poisonous     fishy         several        woods         tapering
## 5586     edible      none        solitary        woods        enlarging
## 5587  poisonous      none         several      meadows        enlarging
## 5588     edible      none       clustered        waste        enlarging
## 5589  poisonous     fishy         several       leaves         tapering
## 5590  poisonous      foul         several        paths         tapering
## 5591  poisonous      foul         several      grasses         tapering
## 5592  poisonous      foul         several        paths        enlarging
## 5593  poisonous      none         several      meadows        enlarging
## 5594  poisonous     spicy         several        paths         tapering
## 5595  poisonous     spicy         several        woods         tapering
## 5596     edible      none       clustered        waste        enlarging
## 5597  poisonous      foul         several        urban         tapering
## 5598     edible      none         several       leaves        enlarging
## 5599     edible      none        solitary        woods        enlarging
## 5600  poisonous     fishy         several       leaves         tapering
## 5601     edible      none         several       leaves        enlarging
## 5602  poisonous      foul         several        woods         tapering
## 5603  poisonous     spicy         several        woods         tapering
## 5604     edible      none       clustered        waste        enlarging
## 5605  poisonous      none         several      meadows        enlarging
## 5606  poisonous      foul         several       leaves         tapering
## 5607  poisonous      foul         several      grasses        enlarging
## 5608     edible      none         several       leaves        enlarging
## 5609  poisonous      foul         several      grasses         tapering
## 5610  poisonous      none         several      grasses        enlarging
## 5611  poisonous      foul        solitary      grasses        enlarging
## 5612     edible      none       clustered        waste        enlarging
## 5613  poisonous      foul        solitary        woods        enlarging
## 5614  poisonous     spicy         several       leaves         tapering
## 5615  poisonous     fishy         several        paths         tapering
## 5616  poisonous      foul         several      grasses        enlarging
## 5617  poisonous      none         several      grasses        enlarging
## 5618  poisonous      foul         several        urban         tapering
## 5619     edible      none       clustered        waste        enlarging
## 5620     edible      none         several       leaves        enlarging
## 5621  poisonous      foul         several        urban         tapering
## 5622     edible      none       clustered        waste        enlarging
## 5623     edible      none       clustered        waste        enlarging
## 5624     edible      none       clustered        waste        enlarging
## 5625  poisonous      foul        solitary      grasses        enlarging
## 5626  poisonous      foul         several      grasses         tapering
## 5627  poisonous      foul         several        paths        enlarging
## 5628     edible      none       clustered        waste        enlarging
## 5629  poisonous      foul         several      grasses         tapering
## 5630     edible      none         several       leaves        enlarging
## 5631  poisonous      foul         several        woods        enlarging
## 5632  poisonous      foul         several        woods        enlarging
## 5633  poisonous      none         several      grasses        enlarging
## 5634  poisonous     fishy         several        paths         tapering
## 5635  poisonous      foul        solitary        paths        enlarging
## 5636  poisonous      foul         several        paths        enlarging
## 5637  poisonous      none         several      grasses        enlarging
## 5638     edible      none       clustered        waste        enlarging
## 5639  poisonous      foul         several        paths        enlarging
## 5640     edible      none       clustered        waste        enlarging
## 5641  poisonous      none         several        woods        enlarging
## 5642  poisonous      foul        solitary        paths        enlarging
## 5643  poisonous      foul         several      grasses        enlarging
## 5644  poisonous     fishy         several        paths         tapering
## 5645     edible      none       clustered        waste        enlarging
## 5646  poisonous      foul         several        urban         tapering
## 5647  poisonous      foul       scattered      grasses         tapering
## 5648  poisonous      foul        solitary        woods        enlarging
## 5649     edible      none       clustered        waste        enlarging
## 5650  poisonous      foul        solitary      grasses        enlarging
## 5651  poisonous      foul        solitary        paths        enlarging
## 5652     edible      none       clustered        waste        enlarging
## 5653     edible      none       clustered        waste        enlarging
## 5654  poisonous      foul         several      grasses        enlarging
## 5655  poisonous      foul         several      grasses         tapering
## 5656  poisonous      foul         several        woods        enlarging
## 5657  poisonous      foul       scattered        urban         tapering
## 5658  poisonous      foul         several      grasses         tapering
## 5659  poisonous      none         several        woods        enlarging
## 5660  poisonous      foul       scattered      grasses         tapering
## 5661     edible      none       clustered        waste        enlarging
## 5662  poisonous      foul        solitary      grasses        enlarging
## 5663  poisonous      foul       scattered        urban         tapering
## 5664     edible      none         several       leaves        enlarging
## 5665  poisonous      foul        solitary      grasses        enlarging
## 5666     edible      none         several       leaves        enlarging
## 5667  poisonous      foul        solitary        paths        enlarging
## 5668  poisonous     fishy         several        paths         tapering
## 5669     edible      none       clustered        waste        enlarging
## 5670  poisonous      foul         several      grasses         tapering
## 5671  poisonous      foul        solitary        woods        enlarging
## 5672  poisonous      foul        solitary      grasses        enlarging
## 5673  poisonous     fishy         several        woods         tapering
## 5674     edible      none        solitary        woods        enlarging
## 5675  poisonous      foul        solitary        paths        enlarging
## 5676  poisonous      foul         several      grasses         tapering
## 5677  poisonous      foul         several      grasses         tapering
## 5678  poisonous      foul       scattered      grasses         tapering
## 5679     edible      none       clustered        waste        enlarging
## 5680  poisonous      none         several        woods        enlarging
## 5681     edible      none         several        woods        enlarging
## 5682  poisonous     fishy         several       leaves         tapering
## 5683     edible      none       clustered        waste        enlarging
## 5684  poisonous      foul         several        urban         tapering
## 5685  poisonous      foul         several        woods        enlarging
## 5686     edible      none       clustered        waste        enlarging
## 5687     edible      none         several       leaves        enlarging
## 5688  poisonous      foul         several        urban         tapering
## 5689  poisonous      foul         several        paths        enlarging
## 5690  poisonous     fishy         several       leaves         tapering
## 5691     edible      none       clustered        waste        enlarging
## 5692     edible      none       clustered        waste        enlarging
## 5693  poisonous      foul         several      grasses        enlarging
## 5694  poisonous     fishy         several        woods         tapering
## 5695     edible      none       clustered        waste        enlarging
## 5696  poisonous      foul        solitary      grasses        enlarging
## 5697  poisonous     spicy         several        woods         tapering
## 5698     edible      none       clustered        waste        enlarging
## 5699  poisonous      foul         several        woods        enlarging
## 5700  poisonous      foul         several        paths        enlarging
## 5701  poisonous      foul        solitary        paths        enlarging
## 5702     edible      none         several       leaves        enlarging
## 5703  poisonous      none         several      grasses        enlarging
## 5704     edible      none       clustered        waste        enlarging
## 5705  poisonous      foul         several        urban         tapering
## 5706  poisonous      foul         several      grasses         tapering
## 5707  poisonous      foul         several      grasses        enlarging
## 5708  poisonous      foul       scattered        urban         tapering
## 5709  poisonous     fishy         several        paths         tapering
## 5710  poisonous      foul         several        urban         tapering
## 5711     edible      none       clustered        waste        enlarging
## 5712  poisonous      foul         several      grasses         tapering
## 5713  poisonous     fishy         several        paths         tapering
## 5714     edible      none         several        woods        enlarging
## 5715     edible      none       clustered        waste        enlarging
## 5716  poisonous      foul         several        urban         tapering
## 5717  poisonous      none       clustered       leaves        enlarging
## 5718  poisonous      foul       scattered      grasses         tapering
## 5719  poisonous     spicy         several        paths         tapering
## 5720     edible      none       clustered        waste        enlarging
## 5721  poisonous     fishy         several        woods         tapering
## 5722  poisonous     spicy         several        paths         tapering
## 5723  poisonous      foul       scattered      grasses         tapering
## 5724     edible      none       clustered        waste        enlarging
## 5725  poisonous      foul       scattered      grasses         tapering
## 5726  poisonous      none         several      meadows        enlarging
## 5727     edible      none         several       leaves        enlarging
## 5728  poisonous      foul         several        urban         tapering
## 5729  poisonous      foul         several      grasses         tapering
## 5730  poisonous      foul         several      grasses        enlarging
## 5731     edible      none       clustered        waste        enlarging
## 5732     edible      none       clustered        waste        enlarging
## 5733     edible      none         several        woods        enlarging
## 5734     edible      none       clustered        waste        enlarging
## 5735  poisonous      foul         several        urban         tapering
## 5736  poisonous     fishy         several        woods         tapering
## 5737     edible      none       clustered        waste        enlarging
## 5738  poisonous      none         several      grasses        enlarging
## 5739  poisonous      foul       scattered        urban         tapering
## 5740  poisonous      foul         several      grasses         tapering
## 5741     edible      none       clustered        waste        enlarging
## 5742  poisonous      foul       scattered      grasses         tapering
## 5743     edible      none       clustered        waste        enlarging
## 5744  poisonous      none         several      meadows        enlarging
## 5745  poisonous     spicy         several        woods         tapering
## 5746  poisonous      foul         several        paths        enlarging
## 5747  poisonous      foul       scattered        urban         tapering
## 5748     edible      none         several       leaves        enlarging
## 5749  poisonous      foul         several        urban         tapering
## 5750  poisonous      foul         several      grasses         tapering
## 5751  poisonous      none         several      meadows        enlarging
## 5752  poisonous      none         several      grasses        enlarging
## 5753  poisonous      foul       scattered      grasses         tapering
## 5754     edible      none       clustered        waste        enlarging
## 5755  poisonous     spicy         several       leaves         tapering
## 5756  poisonous      foul         several      grasses        enlarging
## 5757     edible      none       clustered        waste        enlarging
## 5758  poisonous      foul         several       leaves         tapering
## 5759  poisonous      foul       scattered        urban         tapering
## 5760  poisonous      none         several      grasses        enlarging
## 5761  poisonous     fishy         several       leaves         tapering
## 5762  poisonous      foul         several        urban         tapering
## 5763  poisonous      foul         several        urban         tapering
## 5764     edible      none        solitary        woods        enlarging
## 5765  poisonous      foul       scattered      grasses         tapering
## 5766  poisonous      foul       scattered        urban         tapering
## 5767     edible      none         several        woods        enlarging
## 5768  poisonous     spicy         several        woods         tapering
## 5769     edible      none       clustered        waste        enlarging
## 5770  poisonous      foul         several        woods         tapering
## 5771  poisonous     fishy         several       leaves         tapering
## 5772  poisonous      foul       scattered        urban         tapering
## 5773     edible      none        solitary        woods        enlarging
## 5774  poisonous      none         several      grasses        enlarging
## 5775  poisonous      foul         several        urban         tapering
## 5776     edible      none         several       leaves        enlarging
## 5777     edible      none         several        woods        enlarging
## 5778  poisonous      foul         several        urban         tapering
## 5779     edible      none         several        woods        enlarging
## 5780  poisonous     fishy         several       leaves         tapering
## 5781     edible      none       clustered        waste        enlarging
## 5782  poisonous      none         several      meadows        enlarging
## 5783  poisonous      none         several        woods        enlarging
## 5784  poisonous      foul        solitary        paths        enlarging
## 5785  poisonous      foul         several      grasses         tapering
## 5786  poisonous      foul         several      grasses        enlarging
## 5787     edible      none       clustered        waste        enlarging
## 5788  poisonous      none         several      grasses        enlarging
## 5789  poisonous      none         several      meadows        enlarging
## 5790  poisonous     spicy         several       leaves         tapering
## 5791  poisonous      foul         several        urban         tapering
## 5792  poisonous      foul        solitary        paths        enlarging
## 5793  poisonous      none         several      grasses        enlarging
## 5794     edible      none         several       leaves        enlarging
## 5795  poisonous      foul        solitary      grasses        enlarging
## 5796  poisonous      foul         several        paths        enlarging
## 5797  poisonous      foul         several      grasses        enlarging
## 5798  poisonous      foul       scattered        urban         tapering
## 5799  poisonous     fishy         several       leaves         tapering
## 5800  poisonous      none         several        woods        enlarging
## 5801  poisonous      foul         several        paths         tapering
## 5802  poisonous      foul       scattered      grasses         tapering
## 5803  poisonous      foul        solitary      grasses        enlarging
## 5804     edible      none         several       leaves        enlarging
## 5805  poisonous      foul       scattered      grasses         tapering
## 5806  poisonous      foul         several        urban         tapering
## 5807     edible      none       clustered        waste        enlarging
## 5808  poisonous      foul       scattered        urban         tapering
## 5809  poisonous      foul         several        woods        enlarging
## 5810  poisonous      foul         several        woods         tapering
## 5811  poisonous      foul         several      grasses         tapering
## 5812  poisonous      foul       scattered      grasses         tapering
## 5813  poisonous      foul         several      grasses        enlarging
## 5814     edible      none         several       leaves        enlarging
## 5815  poisonous     spicy         several       leaves         tapering
## 5816     edible      none       clustered        waste        enlarging
## 5817  poisonous     fishy         several       leaves         tapering
## 5818  poisonous      foul       scattered      grasses         tapering
## 5819  poisonous     fishy         several       leaves         tapering
## 5820     edible      none       clustered        waste        enlarging
## 5821  poisonous      foul         several        paths        enlarging
## 5822  poisonous      foul         several        urban         tapering
## 5823     edible      none       clustered        waste        enlarging
## 5824  poisonous      foul         several        woods        enlarging
## 5825  poisonous      foul         several        woods        enlarging
## 5826     edible      none       clustered        waste        enlarging
## 5827  poisonous      foul         several      grasses         tapering
## 5828     edible      none       clustered        waste        enlarging
## 5829  poisonous      foul        solitary        woods        enlarging
## 5830  poisonous      foul       scattered      grasses         tapering
## 5831  poisonous     spicy         several        paths         tapering
## 5832  poisonous      foul        solitary      grasses        enlarging
## 5833  poisonous      none         several      grasses        enlarging
## 5834  poisonous     spicy         several        woods         tapering
## 5835     edible      none         several        woods        enlarging
## 5836     edible      none        solitary        woods        enlarging
## 5837  poisonous      foul         several        paths         tapering
## 5838  poisonous      foul       scattered        urban         tapering
## 5839     edible      none         several        woods        enlarging
## 5840  poisonous      none         several      grasses        enlarging
## 5841  poisonous      foul         several        woods        enlarging
## 5842  poisonous      foul         several      grasses         tapering
## 5843  poisonous      foul        solitary        paths        enlarging
## 5844  poisonous      foul         several      grasses        enlarging
## 5845  poisonous      foul        solitary        woods        enlarging
## 5846  poisonous      foul       scattered      grasses         tapering
## 5847     edible      none         several        woods        enlarging
## 5848  poisonous      foul       scattered      grasses         tapering
## 5849     edible      none       clustered        waste        enlarging
## 5850  poisonous     spicy         several        woods         tapering
## 5851  poisonous      foul       scattered      grasses         tapering
## 5852  poisonous      foul        solitary      grasses        enlarging
## 5853  poisonous      none         several      meadows        enlarging
## 5854  poisonous      foul         several        woods         tapering
## 5855  poisonous      none         several      meadows        enlarging
## 5856  poisonous      foul        solitary      grasses        enlarging
## 5857  poisonous      foul        solitary        woods        enlarging
## 5858     edible      none       clustered        waste        enlarging
## 5859     edible      none       clustered        waste        enlarging
## 5860  poisonous      foul         several       leaves         tapering
## 5861     edible      none       clustered        waste        enlarging
## 5862  poisonous      none         several      meadows        enlarging
## 5863     edible      none       clustered        waste        enlarging
## 5864  poisonous     fishy         several        paths         tapering
## 5865     edible      none       clustered        waste        enlarging
## 5866  poisonous      foul       scattered        urban         tapering
## 5867  poisonous      none         several      grasses        enlarging
## 5868  poisonous     spicy         several       leaves         tapering
## 5869  poisonous     fishy         several       leaves         tapering
## 5870  poisonous      foul        solitary      grasses        enlarging
## 5871  poisonous      foul         several       leaves         tapering
## 5872  poisonous     spicy         several        woods         tapering
## 5873  poisonous      foul         several        urban         tapering
## 5874     edible      none       clustered        waste        enlarging
## 5875     edible      none        solitary        woods        enlarging
## 5876  poisonous      foul        solitary        paths        enlarging
## 5877  poisonous      foul         several      grasses         tapering
## 5878  poisonous     spicy         several       leaves         tapering
## 5879  poisonous      foul         several        urban         tapering
## 5880  poisonous      foul         several      grasses         tapering
## 5881  poisonous      foul        solitary      grasses        enlarging
## 5882  poisonous      none         several      grasses        enlarging
## 5883     edible      none       clustered        waste        enlarging
## 5884  poisonous     fishy         several        woods         tapering
## 5885  poisonous      foul         several        paths        enlarging
## 5886     edible      none       clustered        waste        enlarging
## 5887  poisonous      foul         several      grasses         tapering
## 5888  poisonous      foul         several        urban         tapering
## 5889  poisonous      foul       scattered        urban         tapering
## 5890  poisonous      foul        solitary        woods        enlarging
## 5891  poisonous      foul         several        paths         tapering
## 5892  poisonous      foul         several        urban         tapering
## 5893     edible      none       clustered        waste        enlarging
## 5894     edible      none       clustered        waste        enlarging
## 5895     edible      none         several        woods        enlarging
## 5896  poisonous      foul       scattered        urban         tapering
## 5897  poisonous      foul       scattered        urban         tapering
## 5898     edible      none       clustered        waste        enlarging
## 5899  poisonous      foul        solitary      grasses        enlarging
## 5900  poisonous     spicy         several       leaves         tapering
## 5901  poisonous      none         several      grasses        enlarging
## 5902  poisonous      foul        solitary        woods        enlarging
## 5903     edible      none         several       leaves        enlarging
## 5904  poisonous      foul        solitary        woods        enlarging
## 5905  poisonous      foul       scattered        urban         tapering
## 5906     edible      none       clustered        waste        enlarging
## 5907     edible      none       clustered        waste        enlarging
## 5908  poisonous      foul         several      grasses         tapering
## 5909  poisonous      foul        solitary        paths        enlarging
## 5910  poisonous      foul       scattered      grasses         tapering
## 5911  poisonous      foul         several        paths        enlarging
## 5912  poisonous      foul       scattered        urban         tapering
## 5913     edible      none       clustered        waste        enlarging
## 5914     edible      none       clustered        waste        enlarging
## 5915  poisonous      foul        solitary      grasses        enlarging
## 5916     edible      none       clustered        waste        enlarging
## 5917     edible      none       clustered        waste        enlarging
## 5918  poisonous      foul         several        urban         tapering
## 5919  poisonous      foul         several        urban         tapering
## 5920  poisonous      foul         several        paths        enlarging
## 5921  poisonous      foul         several        urban         tapering
## 5922  poisonous      foul         several      grasses         tapering
## 5923  poisonous      foul         several      grasses        enlarging
## 5924  poisonous      foul        solitary        woods        enlarging
## 5925  poisonous      foul        solitary        paths        enlarging
## 5926  poisonous      foul         several        paths        enlarging
## 5927  poisonous      none         several      meadows        enlarging
## 5928  poisonous      foul         several       leaves         tapering
## 5929  poisonous      none         several      grasses        enlarging
## 5930     edible      none       clustered        waste        enlarging
## 5931  poisonous     fishy         several        paths         tapering
## 5932  poisonous     fishy         several        paths         tapering
## 5933  poisonous      foul         several        paths         tapering
## 5934  poisonous      foul       scattered      grasses         tapering
## 5935  poisonous      none         several        woods        enlarging
## 5936  poisonous      foul         several        urban         tapering
## 5937     edible      none       clustered        waste        enlarging
## 5938     edible      none       clustered        waste        enlarging
## 5939     edible      none       clustered        waste        enlarging
## 5940  poisonous      none         several      meadows        enlarging
## 5941  poisonous      foul         several      grasses         tapering
## 5942  poisonous      foul       scattered      grasses         tapering
## 5943  poisonous      foul         several      grasses        enlarging
## 5944  poisonous     spicy         several        paths         tapering
## 5945  poisonous      none         several      grasses        enlarging
## 5946  poisonous      foul         several        urban         tapering
## 5947  poisonous      none         several      grasses        enlarging
## 5948     edible      none        solitary        woods        enlarging
## 5949     edible      none         several       leaves        enlarging
## 5950  poisonous      foul         several        paths        enlarging
## 5951  poisonous      foul         several      grasses         tapering
## 5952  poisonous      foul         several      grasses        enlarging
## 5953     edible      none       clustered        waste        enlarging
## 5954  poisonous      foul        solitary        paths        enlarging
## 5955  poisonous      none         several        woods        enlarging
## 5956  poisonous     spicy         several        paths         tapering
## 5957  poisonous      foul        solitary        woods        enlarging
## 5958  poisonous      foul        solitary      grasses        enlarging
## 5959  poisonous      foul       scattered      grasses         tapering
## 5960  poisonous      foul         several        woods         tapering
## 5961     edible      none       clustered        waste        enlarging
## 5962     edible      none         several       leaves        enlarging
## 5963  poisonous      none         several      grasses        enlarging
## 5964  poisonous      none         several        woods        enlarging
## 5965  poisonous      foul         several      grasses        enlarging
## 5966  poisonous     spicy         several        paths         tapering
## 5967  poisonous      foul        solitary        woods        enlarging
## 5968  poisonous      foul         several        woods        enlarging
## 5969  poisonous      foul       scattered      grasses         tapering
## 5970     edible      none        solitary        woods        enlarging
## 5971  poisonous     fishy         several        paths         tapering
## 5972  poisonous      none         several      meadows        enlarging
## 5973  poisonous     fishy         several       leaves         tapering
## 5974  poisonous      foul         several      grasses         tapering
## 5975  poisonous      foul         several        urban         tapering
## 5976     edible      none       clustered        waste        enlarging
## 5977  poisonous      foul       scattered      grasses         tapering
## 5978     edible      none         several       leaves        enlarging
## 5979  poisonous      foul         several        woods        enlarging
## 5980     edible      none        solitary        woods        enlarging
## 5981  poisonous      foul       scattered        urban         tapering
## 5982  poisonous      none         several      grasses        enlarging
## 5983  poisonous      foul        solitary        woods        enlarging
## 5984  poisonous      foul       scattered      grasses         tapering
## 5985  poisonous      foul         several       leaves         tapering
## 5986  poisonous      foul         several      grasses        enlarging
## 5987  poisonous      foul       scattered      grasses         tapering
## 5988  poisonous      foul       scattered        urban         tapering
## 5989  poisonous     spicy         several        woods         tapering
## 5990  poisonous      foul        solitary        woods        enlarging
## 5991  poisonous      foul         several        woods         tapering
## 5992  poisonous      none         several      grasses        enlarging
## 5993  poisonous      foul         several      grasses        enlarging
## 5994  poisonous     fishy         several       leaves         tapering
## 5995  poisonous      foul         several        woods         tapering
## 5996     edible      none       clustered        waste        enlarging
## 5997     edible      none        solitary        woods        enlarging
## 5998  poisonous      foul         several        urban         tapering
## 5999  poisonous      foul        solitary      grasses        enlarging
## 6000  poisonous      foul         several        paths         tapering
## 6001  poisonous     spicy         several        woods         tapering
## 6002  poisonous      foul         several        woods         tapering
## 6003  poisonous      foul         several        paths         tapering
## 6004  poisonous      foul         several        paths         tapering
## 6005  poisonous     spicy         several        woods         tapering
## 6006  poisonous     fishy         several       leaves         tapering
## 6007  poisonous     fishy         several        paths         tapering
## 6008  poisonous     spicy         several       leaves         tapering
## 6009  poisonous      foul         several        paths         tapering
## 6010  poisonous      foul         several        woods         tapering
## 6011  poisonous     spicy         several       leaves         tapering
## 6012  poisonous     spicy         several       leaves         tapering
## 6013  poisonous      foul         several        woods         tapering
## 6014  poisonous     fishy         several       leaves         tapering
## 6015  poisonous      foul         several        paths         tapering
## 6016  poisonous     fishy         several        paths         tapering
## 6017  poisonous      foul         several        paths         tapering
## 6018  poisonous     spicy         several        woods         tapering
## 6019  poisonous     fishy         several        paths         tapering
## 6020  poisonous      foul         several       leaves         tapering
## 6021  poisonous     fishy         several        woods         tapering
## 6022  poisonous     spicy         several       leaves         tapering
## 6023  poisonous     fishy         several        paths         tapering
## 6024  poisonous     fishy         several        woods         tapering
## 6025  poisonous     spicy         several        paths         tapering
## 6026  poisonous     fishy         several        woods         tapering
## 6027  poisonous     fishy         several       leaves         tapering
## 6028  poisonous     spicy         several        woods         tapering
## 6029  poisonous     fishy         several       leaves         tapering
## 6030  poisonous     spicy         several        paths         tapering
## 6031  poisonous     spicy         several        paths         tapering
## 6032  poisonous     spicy         several       leaves         tapering
## 6033  poisonous      foul         several        paths         tapering
## 6034  poisonous     spicy         several        woods         tapering
## 6035  poisonous     spicy         several        paths         tapering
## 6036  poisonous      foul         several       leaves         tapering
## 6037  poisonous     fishy         several       leaves         tapering
## 6038     edible      none       clustered       leaves        enlarging
## 6039  poisonous     fishy         several        woods         tapering
## 6040     edible      none         several       leaves        enlarging
## 6041  poisonous     fishy         several        woods         tapering
## 6042  poisonous     spicy         several       leaves         tapering
## 6043  poisonous     fishy         several        paths         tapering
## 6044  poisonous     fishy         several       leaves         tapering
## 6045  poisonous     fishy         several       leaves         tapering
## 6046  poisonous      foul         several        woods         tapering
## 6047  poisonous     spicy         several        woods         tapering
## 6048  poisonous     fishy         several        woods         tapering
## 6049  poisonous      foul         several        woods         tapering
## 6050  poisonous     spicy         several        paths         tapering
## 6051  poisonous      foul         several       leaves         tapering
## 6052  poisonous     spicy         several        woods         tapering
## 6053  poisonous     fishy         several       leaves         tapering
## 6054  poisonous      foul         several       leaves         tapering
## 6055  poisonous     fishy         several        woods         tapering
## 6056  poisonous      foul         several        woods         tapering
## 6057  poisonous     fishy         several        paths         tapering
## 6058  poisonous      foul         several        woods         tapering
## 6059  poisonous     spicy         several       leaves         tapering
## 6060  poisonous      foul         several       leaves         tapering
## 6061  poisonous      foul         several        woods         tapering
## 6062  poisonous     spicy         several       leaves         tapering
## 6063  poisonous      foul         several       leaves         tapering
## 6064  poisonous     spicy         several        paths         tapering
## 6065  poisonous     spicy         several       leaves         tapering
## 6066  poisonous      foul         several        paths         tapering
## 6067  poisonous     spicy         several        paths         tapering
## 6068     edible      none        numerous      grasses        enlarging
## 6069  poisonous     fishy         several        paths         tapering
## 6070  poisonous      foul         several        woods         tapering
## 6071  poisonous      foul         several        woods         tapering
## 6072  poisonous     spicy         several       leaves         tapering
## 6073  poisonous     spicy         several       leaves         tapering
## 6074  poisonous     spicy         several       leaves         tapering
## 6075  poisonous      foul         several        woods         tapering
## 6076  poisonous     fishy         several       leaves         tapering
## 6077  poisonous      foul         several        paths         tapering
## 6078  poisonous     spicy         several        paths         tapering
## 6079  poisonous     spicy         several       leaves         tapering
## 6080  poisonous     fishy         several       leaves         tapering
## 6081  poisonous     fishy         several        woods         tapering
## 6082  poisonous     spicy         several       leaves         tapering
## 6083  poisonous     spicy         several        paths         tapering
## 6084  poisonous     fishy         several       leaves         tapering
## 6085  poisonous     spicy         several        woods         tapering
## 6086  poisonous     fishy         several        woods         tapering
## 6087  poisonous     spicy         several       leaves         tapering
## 6088  poisonous     fishy         several       leaves         tapering
## 6089  poisonous     spicy         several        woods         tapering
## 6090  poisonous      foul         several       leaves         tapering
## 6091  poisonous     fishy         several       leaves         tapering
## 6092  poisonous      foul         several        woods         tapering
## 6093  poisonous      foul         several       leaves         tapering
## 6094  poisonous     fishy         several       leaves         tapering
## 6095  poisonous      foul         several       leaves         tapering
## 6096  poisonous      foul         several        paths         tapering
## 6097  poisonous     fishy         several        paths         tapering
## 6098  poisonous     fishy         several        woods         tapering
## 6099  poisonous      foul         several       leaves         tapering
## 6100  poisonous      foul         several        paths         tapering
## 6101  poisonous     spicy         several        paths         tapering
## 6102  poisonous      foul         several        woods         tapering
## 6103  poisonous     spicy         several       leaves         tapering
## 6104  poisonous     fishy         several        woods         tapering
## 6105  poisonous     fishy         several       leaves         tapering
## 6106  poisonous     spicy         several       leaves         tapering
## 6107  poisonous     fishy         several       leaves         tapering
## 6108  poisonous     spicy         several       leaves         tapering
## 6109  poisonous      foul         several        paths         tapering
## 6110  poisonous     fishy         several        paths         tapering
## 6111  poisonous     spicy         several       leaves         tapering
## 6112  poisonous      foul         several        paths         tapering
## 6113  poisonous      foul         several       leaves         tapering
## 6114  poisonous      foul         several        woods         tapering
## 6115  poisonous     spicy         several       leaves         tapering
## 6116  poisonous     spicy         several       leaves         tapering
## 6117  poisonous      foul         several       leaves         tapering
## 6118  poisonous      foul         several       leaves         tapering
## 6119  poisonous     spicy         several        paths         tapering
## 6120     edible      none         several        paths        enlarging
## 6121  poisonous     fishy         several        paths         tapering
## 6122  poisonous     fishy         several        woods         tapering
## 6123  poisonous     fishy         several       leaves         tapering
## 6124  poisonous     spicy         several        paths         tapering
## 6125  poisonous     fishy         several       leaves         tapering
## 6126  poisonous     spicy         several       leaves         tapering
## 6127  poisonous      foul         several       leaves         tapering
## 6128  poisonous      foul         several       leaves         tapering
## 6129  poisonous     fishy         several        woods         tapering
## 6130  poisonous      foul         several        woods         tapering
## 6131  poisonous      foul         several        paths         tapering
## 6132  poisonous     fishy         several       leaves         tapering
## 6133  poisonous     fishy         several        paths         tapering
## 6134  poisonous     spicy         several       leaves         tapering
## 6135  poisonous      foul         several        paths         tapering
## 6136  poisonous     spicy         several        woods         tapering
## 6137  poisonous     fishy         several        woods         tapering
## 6138  poisonous     fishy         several        paths         tapering
## 6139  poisonous      foul         several       leaves         tapering
## 6140  poisonous     spicy         several        paths         tapering
## 6141  poisonous     fishy         several       leaves         tapering
## 6142     edible      none        numerous      grasses        enlarging
## 6143  poisonous     spicy         several       leaves         tapering
## 6144  poisonous      foul         several        paths         tapering
## 6145  poisonous     spicy         several       leaves         tapering
## 6146  poisonous     fishy         several       leaves         tapering
## 6147     edible      none       scattered      grasses        enlarging
## 6148  poisonous     spicy         several        paths         tapering
## 6149  poisonous     spicy         several        paths         tapering
## 6150  poisonous     spicy         several        woods         tapering
## 6151  poisonous      foul         several        woods         tapering
## 6152  poisonous      foul         several        paths         tapering
## 6153  poisonous      foul         several        paths         tapering
## 6154  poisonous     spicy         several        paths         tapering
## 6155  poisonous     fishy         several        woods         tapering
## 6156  poisonous      foul         several        woods         tapering
## 6157  poisonous      foul         several        woods         tapering
## 6158  poisonous      foul         several        woods         tapering
## 6159  poisonous     spicy         several        woods         tapering
## 6160  poisonous      foul         several        woods         tapering
## 6161  poisonous     spicy         several       leaves         tapering
## 6162  poisonous     spicy         several        woods         tapering
## 6163  poisonous     spicy         several        woods         tapering
## 6164  poisonous     fishy         several        woods         tapering
## 6165  poisonous     fishy         several        woods         tapering
## 6166  poisonous      foul         several        woods         tapering
## 6167  poisonous     fishy         several        paths         tapering
## 6168  poisonous     fishy         several       leaves         tapering
## 6169  poisonous     fishy         several        woods         tapering
## 6170  poisonous     fishy         several       leaves         tapering
## 6171  poisonous      foul         several        paths         tapering
## 6172  poisonous      foul         several       leaves         tapering
## 6173  poisonous      foul         several       leaves         tapering
## 6174  poisonous      foul         several        paths         tapering
## 6175  poisonous      foul         several        paths         tapering
## 6176  poisonous      foul         several       leaves         tapering
## 6177  poisonous      foul         several        paths         tapering
## 6178  poisonous     spicy         several        woods         tapering
## 6179  poisonous     fishy         several       leaves         tapering
## 6180  poisonous      foul         several       leaves         tapering
## 6181  poisonous     spicy         several        woods         tapering
## 6182  poisonous      foul         several        woods         tapering
## 6183  poisonous     spicy         several        paths         tapering
## 6184  poisonous     spicy         several       leaves         tapering
## 6185  poisonous     fishy         several        paths         tapering
## 6186  poisonous      foul         several        woods         tapering
## 6187  poisonous     spicy         several        paths         tapering
## 6188  poisonous     spicy         several        woods         tapering
## 6189  poisonous     spicy         several       leaves         tapering
## 6190  poisonous     spicy         several        paths         tapering
## 6191  poisonous      foul         several       leaves         tapering
## 6192  poisonous      foul         several       leaves         tapering
## 6193  poisonous      foul         several        paths         tapering
## 6194     edible      none        numerous      grasses        enlarging
## 6195  poisonous     spicy         several        paths         tapering
## 6196  poisonous     spicy         several        woods         tapering
## 6197  poisonous     spicy         several       leaves         tapering
## 6198  poisonous     fishy         several        paths         tapering
## 6199  poisonous     fishy         several        woods         tapering
## 6200  poisonous      foul         several       leaves         tapering
## 6201  poisonous      foul         several        woods         tapering
## 6202  poisonous      foul         several        paths         tapering
## 6203     edible      none       scattered      grasses        enlarging
## 6204  poisonous     spicy         several        paths         tapering
## 6205  poisonous      foul         several        paths         tapering
## 6206  poisonous     fishy         several       leaves         tapering
## 6207  poisonous     spicy         several       leaves         tapering
## 6208  poisonous     fishy         several       leaves         tapering
## 6209  poisonous     fishy         several        woods         tapering
## 6210  poisonous      foul         several        paths         tapering
## 6211  poisonous     fishy         several        paths         tapering
## 6212  poisonous      foul         several        paths         tapering
## 6213  poisonous     spicy         several        woods         tapering
## 6214     edible      none        numerous      grasses        enlarging
## 6215  poisonous     spicy         several       leaves         tapering
## 6216  poisonous      foul         several       leaves         tapering
## 6217  poisonous      foul         several       leaves         tapering
## 6218  poisonous     spicy         several        paths         tapering
## 6219     edible      none       scattered      grasses        enlarging
## 6220  poisonous     spicy         several        woods         tapering
## 6221  poisonous     fishy         several        paths         tapering
## 6222  poisonous      foul         several        paths         tapering
## 6223  poisonous     spicy         several       leaves         tapering
## 6224  poisonous      foul         several        paths         tapering
## 6225  poisonous     fishy         several        woods         tapering
## 6226  poisonous     spicy         several        paths         tapering
## 6227  poisonous      foul         several        paths         tapering
## 6228  poisonous     spicy         several        woods         tapering
## 6229  poisonous     fishy         several        woods         tapering
## 6230  poisonous     fishy         several        woods         tapering
## 6231  poisonous     fishy         several       leaves         tapering
## 6232  poisonous     fishy         several       leaves         tapering
## 6233  poisonous     fishy         several       leaves         tapering
## 6234  poisonous      foul         several       leaves         tapering
## 6235  poisonous      foul         several        paths         tapering
## 6236  poisonous      foul         several        woods         tapering
## 6237  poisonous     spicy         several        woods         tapering
## 6238  poisonous     fishy         several        woods         tapering
## 6239  poisonous     fishy         several        woods         tapering
## 6240  poisonous     spicy         several       leaves         tapering
## 6241  poisonous      foul         several        woods         tapering
## 6242  poisonous      foul         several        woods         tapering
## 6243  poisonous     fishy         several       leaves         tapering
## 6244  poisonous     fishy         several       leaves         tapering
## 6245  poisonous      foul         several        woods         tapering
## 6246  poisonous     spicy         several       leaves         tapering
## 6247  poisonous     spicy         several        woods         tapering
## 6248  poisonous      foul         several       leaves         tapering
## 6249  poisonous     fishy         several        paths         tapering
## 6250  poisonous     spicy         several        woods         tapering
## 6251  poisonous     spicy         several        paths         tapering
## 6252  poisonous      foul         several        woods         tapering
## 6253  poisonous     spicy         several        paths         tapering
## 6254  poisonous     spicy         several        woods         tapering
## 6255  poisonous     fishy         several        woods         tapering
## 6256  poisonous     fishy         several       leaves         tapering
## 6257  poisonous     spicy         several        woods         tapering
## 6258  poisonous     spicy         several       leaves         tapering
## 6259  poisonous     fishy         several       leaves         tapering
## 6260  poisonous      foul         several        paths         tapering
## 6261     edible      none       scattered      grasses        enlarging
## 6262  poisonous     fishy         several       leaves         tapering
## 6263  poisonous     spicy         several        woods         tapering
## 6264  poisonous     fishy         several        woods         tapering
## 6265  poisonous     spicy         several       leaves         tapering
## 6266  poisonous     spicy         several        paths         tapering
## 6267  poisonous     fishy         several        paths         tapering
## 6268  poisonous     spicy         several        paths         tapering
## 6269  poisonous     fishy         several        woods         tapering
## 6270  poisonous      foul         several        paths         tapering
## 6271  poisonous     spicy         several        woods         tapering
## 6272  poisonous     spicy         several        paths         tapering
## 6273  poisonous      foul         several       leaves         tapering
## 6274  poisonous     spicy         several       leaves         tapering
## 6275  poisonous     fishy         several        woods         tapering
## 6276  poisonous     spicy         several        paths         tapering
## 6277  poisonous      foul         several       leaves         tapering
## 6278  poisonous      foul         several        paths         tapering
## 6279     edible      none       scattered      grasses        enlarging
## 6280  poisonous     spicy         several        paths         tapering
## 6281  poisonous     fishy         several       leaves         tapering
## 6282  poisonous      foul         several        woods         tapering
## 6283  poisonous      foul         several        paths         tapering
## 6284  poisonous     fishy         several       leaves         tapering
## 6285  poisonous     spicy         several        woods         tapering
## 6286  poisonous      foul         several        woods         tapering
## 6287  poisonous      foul         several        woods         tapering
## 6288  poisonous      foul         several       leaves         tapering
## 6289  poisonous     spicy         several        woods         tapering
## 6290  poisonous     fishy         several       leaves         tapering
## 6291  poisonous     spicy         several        paths         tapering
## 6292  poisonous     spicy         several        woods         tapering
## 6293  poisonous     spicy         several       leaves         tapering
## 6294  poisonous     fishy         several        paths         tapering
## 6295  poisonous      foul         several        paths         tapering
## 6296  poisonous      foul         several       leaves         tapering
## 6297  poisonous      foul         several        paths         tapering
## 6298  poisonous     fishy         several        paths         tapering
## 6299  poisonous     fishy         several        paths         tapering
## 6300  poisonous     spicy         several        woods         tapering
## 6301  poisonous     fishy         several        paths         tapering
## 6302  poisonous      foul         several       leaves         tapering
## 6303  poisonous     spicy         several        woods         tapering
## 6304  poisonous     spicy         several        woods         tapering
## 6305  poisonous      foul         several        paths         tapering
## 6306  poisonous      foul         several        paths         tapering
## 6307  poisonous      foul         several       leaves         tapering
## 6308  poisonous     fishy         several        woods         tapering
## 6309  poisonous      foul         several        paths         tapering
## 6310  poisonous      foul         several       leaves         tapering
## 6311  poisonous      foul         several        paths         tapering
## 6312  poisonous      foul         several       leaves         tapering
## 6313  poisonous     spicy         several        woods         tapering
## 6314  poisonous      foul         several        woods         tapering
## 6315  poisonous     fishy         several        woods         tapering
## 6316  poisonous      foul         several        paths         tapering
## 6317  poisonous     fishy         several        woods         tapering
## 6318  poisonous      foul         several        paths         tapering
## 6319  poisonous     fishy         several       leaves         tapering
## 6320  poisonous      foul         several        paths         tapering
## 6321  poisonous     fishy         several        paths         tapering
## 6322  poisonous      foul         several       leaves         tapering
## 6323  poisonous     spicy         several        paths         tapering
## 6324  poisonous     spicy         several        paths         tapering
## 6325  poisonous     fishy         several       leaves         tapering
## 6326  poisonous     spicy         several        woods         tapering
## 6327  poisonous     fishy         several       leaves         tapering
## 6328  poisonous      foul         several       leaves         tapering
## 6329  poisonous      foul         several        paths         tapering
## 6330  poisonous      foul         several        woods         tapering
## 6331     edible      none       scattered      grasses        enlarging
## 6332  poisonous      foul         several       leaves         tapering
## 6333  poisonous      foul         several       leaves         tapering
## 6334  poisonous     spicy         several       leaves         tapering
## 6335  poisonous     spicy         several        woods         tapering
## 6336  poisonous      foul         several        paths         tapering
## 6337  poisonous     fishy         several       leaves         tapering
## 6338  poisonous     spicy         several        paths         tapering
## 6339  poisonous      foul         several       leaves         tapering
## 6340  poisonous      foul         several        woods         tapering
## 6341  poisonous      foul         several       leaves         tapering
## 6342  poisonous      foul         several       leaves         tapering
## 6343  poisonous     fishy         several        woods         tapering
## 6344  poisonous      foul         several       leaves         tapering
## 6345  poisonous      foul         several        paths         tapering
## 6346  poisonous      foul         several       leaves         tapering
## 6347  poisonous     spicy         several        woods         tapering
## 6348  poisonous      foul         several        woods         tapering
## 6349  poisonous      foul         several       leaves         tapering
## 6350  poisonous      foul         several        paths         tapering
## 6351  poisonous      foul         several        paths         tapering
## 6352  poisonous     spicy         several       leaves         tapering
## 6353  poisonous     fishy         several       leaves         tapering
## 6354  poisonous     fishy         several        paths         tapering
## 6355  poisonous     fishy         several        paths         tapering
## 6356  poisonous      foul         several        paths         tapering
## 6357  poisonous     fishy         several        paths         tapering
## 6358  poisonous     fishy         several        paths         tapering
## 6359  poisonous      foul         several        paths         tapering
## 6360  poisonous      foul         several        woods         tapering
## 6361  poisonous     fishy         several        woods         tapering
## 6362  poisonous      foul         several       leaves         tapering
## 6363  poisonous     spicy         several        woods         tapering
## 6364  poisonous     fishy         several       leaves         tapering
## 6365  poisonous      foul         several        paths         tapering
## 6366     edible      none        numerous      grasses        enlarging
## 6367  poisonous      foul         several        paths         tapering
## 6368  poisonous      foul         several        woods         tapering
## 6369  poisonous     fishy         several        paths         tapering
## 6370  poisonous      foul         several        woods         tapering
## 6371  poisonous     fishy         several        woods         tapering
## 6372  poisonous      foul         several       leaves         tapering
## 6373  poisonous      foul         several        woods         tapering
## 6374  poisonous     fishy         several        paths         tapering
## 6375     edible      none         several       leaves        enlarging
## 6376  poisonous      foul         several        woods         tapering
## 6377  poisonous     spicy         several        paths         tapering
## 6378  poisonous     fishy         several       leaves         tapering
## 6379  poisonous     spicy         several       leaves         tapering
## 6380  poisonous     spicy         several        paths         tapering
## 6381  poisonous      foul         several       leaves         tapering
## 6382  poisonous     spicy         several       leaves         tapering
## 6383  poisonous     spicy         several        paths         tapering
## 6384  poisonous     fishy         several        paths         tapering
## 6385  poisonous      foul         several       leaves         tapering
## 6386  poisonous     spicy         several        woods         tapering
## 6387  poisonous      foul         several        paths         tapering
## 6388  poisonous     fishy         several       leaves         tapering
## 6389  poisonous     spicy         several        paths         tapering
## 6390  poisonous     fishy         several        paths         tapering
## 6391  poisonous     spicy         several        paths         tapering
## 6392  poisonous      foul         several        woods         tapering
## 6393  poisonous     fishy         several        woods         tapering
## 6394  poisonous     fishy         several        woods         tapering
## 6395  poisonous      foul         several        paths         tapering
## 6396     edible      none       scattered      grasses        enlarging
## 6397  poisonous     fishy         several        woods         tapering
## 6398  poisonous      foul         several       leaves         tapering
## 6399  poisonous     fishy         several       leaves         tapering
## 6400  poisonous     spicy         several       leaves         tapering
## 6401  poisonous     spicy         several        paths         tapering
## 6402  poisonous      foul         several       leaves         tapering
## 6403     edible      none       scattered      grasses        enlarging
## 6404  poisonous     spicy         several       leaves         tapering
## 6405  poisonous     spicy         several        paths         tapering
## 6406     edible      none       scattered      grasses        enlarging
## 6407  poisonous     fishy         several       leaves         tapering
## 6408  poisonous     spicy         several       leaves         tapering
## 6409  poisonous      foul         several        woods         tapering
## 6410  poisonous     spicy         several        paths         tapering
## 6411  poisonous      foul         several        woods         tapering
## 6412  poisonous     spicy         several        paths         tapering
## 6413  poisonous     spicy         several       leaves         tapering
## 6414  poisonous     spicy         several       leaves         tapering
## 6415  poisonous     musty       clustered        woods        enlarging
## 6416  poisonous     fishy         several        woods         tapering
## 6417  poisonous     fishy         several        woods         tapering
## 6418  poisonous     spicy         several        paths         tapering
## 6419  poisonous     fishy         several        paths         tapering
## 6420  poisonous      foul         several        paths         tapering
## 6421  poisonous     spicy         several       leaves         tapering
## 6422  poisonous      foul         several       leaves         tapering
## 6423  poisonous     spicy         several        paths         tapering
## 6424     edible      none       clustered       leaves        enlarging
## 6425  poisonous     spicy         several        woods         tapering
## 6426  poisonous     spicy         several       leaves         tapering
## 6427  poisonous     spicy         several       leaves         tapering
## 6428  poisonous      foul         several        paths         tapering
## 6429  poisonous     fishy         several        woods         tapering
## 6430  poisonous      foul         several        woods         tapering
## 6431  poisonous     spicy         several        paths         tapering
## 6432  poisonous     fishy         several        paths         tapering
## 6433  poisonous      foul         several        paths         tapering
## 6434     edible      none         several       leaves        enlarging
## 6435  poisonous     spicy         several        paths         tapering
## 6436  poisonous      foul         several        paths         tapering
## 6437  poisonous      foul         several        woods         tapering
## 6438  poisonous     fishy         several        paths         tapering
## 6439  poisonous      foul         several        woods         tapering
## 6440  poisonous     spicy         several        woods         tapering
## 6441  poisonous      foul         several       leaves         tapering
## 6442  poisonous     fishy         several       leaves         tapering
## 6443  poisonous     spicy         several        woods         tapering
## 6444  poisonous     fishy         several       leaves         tapering
## 6445  poisonous     fishy         several       leaves         tapering
## 6446  poisonous     fishy         several       leaves         tapering
## 6447  poisonous     fishy         several        woods         tapering
## 6448  poisonous     fishy         several        paths         tapering
## 6449     edible      none        numerous      grasses        enlarging
## 6450  poisonous     fishy         several       leaves         tapering
## 6451  poisonous     fishy         several       leaves         tapering
## 6452  poisonous      foul         several        woods         tapering
## 6453  poisonous     spicy         several        paths         tapering
## 6454  poisonous     fishy         several        woods         tapering
## 6455  poisonous      foul         several        paths         tapering
## 6456  poisonous     spicy         several       leaves         tapering
## 6457  poisonous     spicy         several       leaves         tapering
## 6458  poisonous     fishy         several       leaves         tapering
## 6459  poisonous     spicy         several        woods         tapering
## 6460  poisonous     spicy         several       leaves         tapering
## 6461  poisonous      foul         several       leaves         tapering
## 6462  poisonous     spicy         several        paths         tapering
## 6463  poisonous      foul         several        paths         tapering
## 6464  poisonous      foul         several       leaves         tapering
## 6465  poisonous     fishy         several       leaves         tapering
## 6466  poisonous     fishy         several        paths         tapering
## 6467  poisonous     fishy         several        paths         tapering
## 6468  poisonous     fishy         several        woods         tapering
## 6469  poisonous      foul         several       leaves         tapering
## 6470  poisonous      foul         several        paths         tapering
## 6471  poisonous      foul         several        woods         tapering
## 6472  poisonous     spicy         several       leaves         tapering
## 6473  poisonous     fishy         several        paths         tapering
## 6474  poisonous      foul         several       leaves         tapering
## 6475  poisonous     fishy         several        woods         tapering
## 6476  poisonous      foul         several       leaves         tapering
## 6477  poisonous     fishy         several        paths         tapering
## 6478  poisonous     spicy         several        woods         tapering
## 6479  poisonous     spicy         several        paths         tapering
## 6480  poisonous     spicy         several        woods         tapering
## 6481  poisonous     fishy         several        paths         tapering
## 6482  poisonous     spicy         several        woods         tapering
## 6483  poisonous     fishy         several        woods         tapering
## 6484  poisonous     fishy         several       leaves         tapering
## 6485  poisonous     fishy         several        paths         tapering
## 6486  poisonous     spicy         several       leaves         tapering
## 6487  poisonous      foul         several        woods         tapering
## 6488  poisonous     spicy         several        paths         tapering
## 6489  poisonous      foul         several        paths         tapering
## 6490  poisonous     spicy         several       leaves         tapering
## 6491  poisonous     spicy         several        woods         tapering
## 6492  poisonous      foul         several       leaves         tapering
## 6493  poisonous     spicy         several       leaves         tapering
## 6494  poisonous      foul         several        paths         tapering
## 6495  poisonous     fishy         several        woods         tapering
## 6496  poisonous     fishy         several        woods         tapering
## 6497  poisonous      foul         several        woods         tapering
## 6498  poisonous     spicy         several        woods         tapering
## 6499  poisonous      foul         several        woods         tapering
## 6500  poisonous      foul         several        woods         tapering
## 6501  poisonous     spicy         several        woods         tapering
## 6502  poisonous      foul         several        woods         tapering
## 6503  poisonous      foul         several        woods         tapering
## 6504  poisonous     fishy         several        woods         tapering
## 6505  poisonous     spicy         several       leaves         tapering
## 6506  poisonous      foul         several        paths         tapering
## 6507  poisonous     spicy         several        paths         tapering
## 6508  poisonous     fishy         several        woods         tapering
## 6509     edible      none        numerous      grasses        enlarging
## 6510  poisonous     spicy         several        woods         tapering
## 6511  poisonous      foul         several       leaves         tapering
## 6512  poisonous     fishy         several       leaves         tapering
## 6513  poisonous     fishy         several        woods         tapering
## 6514  poisonous     fishy         several        woods         tapering
## 6515  poisonous      foul         several        paths         tapering
## 6516  poisonous     fishy         several       leaves         tapering
## 6517     edible      none        numerous      grasses        enlarging
## 6518  poisonous      foul         several       leaves         tapering
## 6519  poisonous      foul         several       leaves         tapering
## 6520  poisonous     fishy         several        paths         tapering
## 6521  poisonous     fishy         several        paths         tapering
## 6522  poisonous     fishy         several        paths         tapering
## 6523  poisonous      foul         several        woods         tapering
## 6524  poisonous     spicy         several        woods         tapering
## 6525  poisonous      foul         several       leaves         tapering
## 6526  poisonous     spicy         several       leaves         tapering
## 6527  poisonous     spicy         several        paths         tapering
## 6528  poisonous     fishy         several        woods         tapering
## 6529  poisonous     spicy         several        paths         tapering
## 6530     edible      none        numerous      grasses        enlarging
## 6531  poisonous      foul         several        woods         tapering
## 6532  poisonous      foul         several        woods         tapering
## 6533  poisonous      foul         several        woods         tapering
## 6534  poisonous     spicy         several       leaves         tapering
## 6535  poisonous     fishy         several        woods         tapering
## 6536  poisonous     fishy         several       leaves         tapering
## 6537  poisonous     spicy         several       leaves         tapering
## 6538  poisonous     fishy         several       leaves         tapering
## 6539  poisonous     fishy         several        paths         tapering
## 6540  poisonous     spicy         several        woods         tapering
## 6541  poisonous     spicy         several        paths         tapering
## 6542  poisonous      foul         several       leaves         tapering
## 6543  poisonous     spicy         several       leaves         tapering
## 6544  poisonous     spicy         several       leaves         tapering
## 6545  poisonous      foul         several        woods         tapering
## 6546  poisonous     fishy         several        paths         tapering
## 6547  poisonous      foul         several        paths         tapering
## 6548  poisonous     spicy         several       leaves         tapering
## 6549  poisonous     spicy         several        paths         tapering
## 6550  poisonous      foul         several        paths         tapering
## 6551  poisonous     spicy         several        paths         tapering
## 6552  poisonous     fishy         several        paths         tapering
## 6553  poisonous     spicy         several        woods         tapering
## 6554  poisonous     fishy         several        paths         tapering
## 6555  poisonous      foul         several        paths         tapering
## 6556  poisonous     spicy         several        paths         tapering
## 6557  poisonous     spicy         several        paths         tapering
## 6558     edible      none         several       leaves        enlarging
## 6559  poisonous     fishy         several       leaves         tapering
## 6560  poisonous     fishy         several       leaves         tapering
## 6561  poisonous      foul         several        woods         tapering
## 6562  poisonous     fishy         several        woods         tapering
## 6563  poisonous     fishy         several        paths         tapering
## 6564  poisonous     fishy         several        woods         tapering
## 6565  poisonous      foul         several        paths         tapering
## 6566  poisonous     fishy         several        woods         tapering
## 6567  poisonous      foul         several       leaves         tapering
## 6568  poisonous      foul         several       leaves         tapering
## 6569  poisonous     spicy         several        paths         tapering
## 6570  poisonous     fishy         several        paths         tapering
## 6571  poisonous     spicy         several        woods         tapering
## 6572  poisonous      foul         several       leaves         tapering
## 6573  poisonous     fishy         several        paths         tapering
## 6574  poisonous     fishy         several       leaves         tapering
## 6575  poisonous      foul         several        paths         tapering
## 6576  poisonous      foul         several        paths         tapering
## 6577  poisonous     fishy         several       leaves         tapering
## 6578  poisonous      foul         several        woods         tapering
## 6579  poisonous     fishy         several        paths         tapering
## 6580  poisonous     fishy         several       leaves         tapering
## 6581  poisonous     spicy         several        woods         tapering
## 6582  poisonous     spicy         several        woods         tapering
## 6583  poisonous     spicy         several        paths         tapering
## 6584  poisonous     spicy         several       leaves         tapering
## 6585  poisonous     fishy         several        paths         tapering
## 6586  poisonous     fishy         several        paths         tapering
## 6587  poisonous     fishy         several       leaves         tapering
## 6588  poisonous     spicy         several        paths         tapering
## 6589  poisonous      foul         several        woods         tapering
## 6590  poisonous     fishy         several       leaves         tapering
## 6591  poisonous     spicy         several        woods         tapering
## 6592  poisonous     spicy         several        woods         tapering
## 6593  poisonous     spicy         several        woods         tapering
## 6594  poisonous     spicy         several        paths         tapering
## 6595  poisonous     spicy         several       leaves         tapering
## 6596  poisonous     fishy         several        paths         tapering
## 6597  poisonous     spicy         several       leaves         tapering
## 6598  poisonous     fishy         several        paths         tapering
## 6599     edible      none        numerous      grasses        enlarging
## 6600  poisonous     fishy         several        paths         tapering
## 6601  poisonous     spicy         several        paths         tapering
## 6602  poisonous     spicy         several        paths         tapering
## 6603  poisonous     spicy         several        woods         tapering
## 6604  poisonous     spicy         several       leaves         tapering
## 6605  poisonous      foul         several       leaves         tapering
## 6606  poisonous      foul         several        woods         tapering
## 6607  poisonous     spicy         several        woods         tapering
## 6608  poisonous     fishy         several        woods         tapering
## 6609  poisonous      foul         several       leaves         tapering
## 6610  poisonous      foul         several        paths         tapering
## 6611  poisonous      foul         several        paths         tapering
## 6612  poisonous      foul         several        woods         tapering
## 6613  poisonous     fishy         several        woods         tapering
## 6614  poisonous     spicy         several       leaves         tapering
## 6615  poisonous      foul         several        paths         tapering
## 6616  poisonous     fishy         several        paths         tapering
## 6617  poisonous     spicy         several       leaves         tapering
## 6618  poisonous      foul         several       leaves         tapering
## 6619  poisonous     spicy         several        paths         tapering
## 6620  poisonous     spicy         several        woods         tapering
## 6621  poisonous      foul         several        woods         tapering
## 6622  poisonous     spicy         several        woods         tapering
## 6623  poisonous     fishy         several       leaves         tapering
## 6624  poisonous      foul         several        paths         tapering
## 6625  poisonous     spicy         several        paths         tapering
## 6626  poisonous     fishy         several        woods         tapering
## 6627  poisonous     spicy         several       leaves         tapering
## 6628  poisonous     fishy         several       leaves         tapering
## 6629  poisonous     fishy         several        woods         tapering
## 6630  poisonous     spicy         several       leaves         tapering
## 6631  poisonous     fishy         several        woods         tapering
## 6632  poisonous      foul         several        woods         tapering
## 6633  poisonous     spicy         several        woods         tapering
## 6634  poisonous      foul         several       leaves         tapering
## 6635  poisonous     spicy         several       leaves         tapering
## 6636  poisonous      foul         several        woods         tapering
## 6637  poisonous     fishy         several        woods         tapering
## 6638  poisonous     fishy         several        paths         tapering
## 6639  poisonous     fishy         several       leaves         tapering
## 6640  poisonous     fishy         several        paths         tapering
## 6641  poisonous     fishy         several        paths         tapering
## 6642  poisonous     spicy         several        woods         tapering
## 6643  poisonous      foul         several        paths         tapering
## 6644  poisonous     fishy         several        woods         tapering
## 6645  poisonous      foul         several       leaves         tapering
## 6646  poisonous     fishy         several        paths         tapering
## 6647  poisonous     spicy         several        paths         tapering
## 6648  poisonous     fishy         several       leaves         tapering
## 6649  poisonous     fishy         several       leaves         tapering
## 6650  poisonous     spicy         several        paths         tapering
## 6651  poisonous     fishy         several       leaves         tapering
## 6652  poisonous     spicy         several        paths         tapering
## 6653  poisonous      foul         several       leaves         tapering
## 6654  poisonous     fishy         several       leaves         tapering
## 6655  poisonous     spicy         several        woods         tapering
## 6656  poisonous      foul         several        paths         tapering
## 6657  poisonous      foul         several       leaves         tapering
## 6658  poisonous     spicy         several        paths         tapering
## 6659  poisonous     fishy         several        paths         tapering
## 6660     edible      none       scattered      grasses        enlarging
## 6661  poisonous     fishy         several        paths         tapering
## 6662  poisonous     spicy         several        paths         tapering
## 6663     edible      none         several       leaves        enlarging
## 6664  poisonous     fishy         several        woods         tapering
## 6665  poisonous     spicy         several        woods         tapering
## 6666  poisonous     spicy         several        woods         tapering
## 6667  poisonous     spicy         several        woods         tapering
## 6668  poisonous     musty       clustered        woods        enlarging
## 6669  poisonous     spicy         several       leaves         tapering
## 6670  poisonous     spicy         several        paths         tapering
## 6671  poisonous     fishy         several       leaves         tapering
## 6672  poisonous     spicy         several        woods         tapering
## 6673  poisonous      foul         several        woods         tapering
## 6674  poisonous      foul         several       leaves         tapering
## 6675  poisonous      foul         several        woods         tapering
## 6676  poisonous     spicy         several        woods         tapering
## 6677  poisonous     fishy         several        paths         tapering
## 6678  poisonous     fishy         several       leaves         tapering
## 6679  poisonous     spicy         several        woods         tapering
## 6680  poisonous     fishy         several       leaves         tapering
## 6681  poisonous      foul         several       leaves         tapering
## 6682  poisonous     spicy         several        paths         tapering
## 6683  poisonous      foul         several       leaves         tapering
## 6684  poisonous      foul         several        paths         tapering
## 6685  poisonous     fishy         several        paths         tapering
## 6686  poisonous      foul         several        woods         tapering
## 6687  poisonous     spicy         several        paths         tapering
## 6688  poisonous      foul         several       leaves         tapering
## 6689  poisonous     fishy         several        woods         tapering
## 6690  poisonous     fishy         several        woods         tapering
## 6691  poisonous     spicy         several       leaves         tapering
## 6692  poisonous     fishy         several        woods         tapering
## 6693  poisonous     spicy         several        paths         tapering
## 6694  poisonous     spicy         several        woods         tapering
## 6695  poisonous      foul         several        paths         tapering
## 6696  poisonous     fishy         several        woods         tapering
## 6697  poisonous      foul         several        woods         tapering
## 6698  poisonous     fishy         several        paths         tapering
## 6699  poisonous     spicy         several       leaves         tapering
## 6700  poisonous      foul         several        woods         tapering
## 6701  poisonous     fishy         several       leaves         tapering
## 6702  poisonous     spicy         several        woods         tapering
## 6703  poisonous     spicy         several        woods         tapering
## 6704  poisonous      foul         several        paths         tapering
## 6705  poisonous     fishy         several        woods         tapering
## 6706  poisonous      foul         several        woods         tapering
## 6707  poisonous     fishy         several       leaves         tapering
## 6708  poisonous     fishy         several        paths         tapering
## 6709  poisonous      foul         several        paths         tapering
## 6710  poisonous     fishy         several       leaves         tapering
## 6711  poisonous      foul         several       leaves         tapering
## 6712  poisonous      foul         several        paths         tapering
## 6713  poisonous      foul         several        woods         tapering
## 6714  poisonous     spicy         several        woods         tapering
## 6715  poisonous     fishy         several        paths         tapering
## 6716  poisonous     spicy         several        paths         tapering
## 6717  poisonous      foul         several        paths         tapering
## 6718  poisonous     fishy         several        paths         tapering
## 6719  poisonous     spicy         several        woods         tapering
## 6720  poisonous     spicy         several        woods         tapering
## 6721  poisonous      foul         several       leaves         tapering
## 6722  poisonous     spicy         several       leaves         tapering
## 6723  poisonous      foul         several        woods         tapering
## 6724  poisonous     spicy         several       leaves         tapering
## 6725  poisonous     fishy         several        paths         tapering
## 6726  poisonous     spicy         several        paths         tapering
## 6727  poisonous     fishy         several       leaves         tapering
## 6728  poisonous     spicy         several        woods         tapering
## 6729  poisonous      foul         several       leaves         tapering
## 6730  poisonous      foul         several       leaves         tapering
## 6731  poisonous     spicy         several       leaves         tapering
## 6732  poisonous     fishy         several        woods         tapering
## 6733  poisonous     spicy         several        woods         tapering
## 6734  poisonous     fishy         several       leaves         tapering
## 6735  poisonous     spicy         several        paths         tapering
## 6736  poisonous     fishy         several        woods         tapering
## 6737  poisonous     spicy         several        paths         tapering
## 6738  poisonous     fishy         several       leaves         tapering
## 6739  poisonous     fishy         several       leaves         tapering
## 6740  poisonous      foul         several       leaves         tapering
## 6741  poisonous     fishy         several        paths         tapering
## 6742  poisonous     spicy         several        woods         tapering
## 6743  poisonous     fishy         several        woods         tapering
## 6744     edible      none       scattered      grasses        enlarging
## 6745  poisonous     fishy         several        paths         tapering
## 6746  poisonous      foul         several       leaves         tapering
## 6747  poisonous     spicy         several        paths         tapering
## 6748  poisonous      foul         several       leaves         tapering
## 6749  poisonous     fishy         several       leaves         tapering
## 6750  poisonous     spicy         several       leaves         tapering
## 6751  poisonous     fishy         several        woods         tapering
## 6752     edible      none       scattered      grasses        enlarging
## 6753  poisonous     spicy         several        woods         tapering
## 6754  poisonous      foul         several        woods         tapering
## 6755  poisonous     spicy         several        woods         tapering
## 6756  poisonous      foul         several       leaves         tapering
## 6757  poisonous      foul         several        woods         tapering
## 6758  poisonous     spicy         several        woods         tapering
## 6759  poisonous     spicy         several       leaves         tapering
## 6760  poisonous     fishy         several        woods         tapering
## 6761  poisonous      foul         several        woods         tapering
## 6762     edible      none       scattered      grasses        enlarging
## 6763     edible      none       clustered       leaves        enlarging
## 6764  poisonous     spicy         several       leaves         tapering
## 6765  poisonous     spicy         several        paths         tapering
## 6766  poisonous     spicy         several       leaves         tapering
## 6767  poisonous     spicy         several       leaves         tapering
## 6768  poisonous     fishy         several       leaves         tapering
## 6769  poisonous      foul         several        woods         tapering
## 6770  poisonous     fishy         several        paths         tapering
## 6771  poisonous      foul         several       leaves         tapering
## 6772  poisonous     spicy         several       leaves         tapering
## 6773  poisonous     fishy         several        woods         tapering
## 6774     edible      none        numerous      grasses        enlarging
## 6775  poisonous      foul         several        paths         tapering
## 6776  poisonous     fishy         several       leaves         tapering
## 6777  poisonous     fishy         several        woods         tapering
## 6778  poisonous     fishy         several       leaves         tapering
## 6779  poisonous      foul         several        woods         tapering
## 6780  poisonous     fishy         several        woods         tapering
## 6781  poisonous     fishy         several        paths         tapering
## 6782  poisonous     fishy         several        paths         tapering
## 6783  poisonous     fishy         several        paths         tapering
## 6784  poisonous      foul         several        woods         tapering
## 6785  poisonous     spicy         several       leaves         tapering
## 6786  poisonous      foul         several        woods         tapering
## 6787  poisonous     spicy         several       leaves         tapering
## 6788  poisonous      foul         several        woods         tapering
## 6789  poisonous     spicy         several       leaves         tapering
## 6790  poisonous      foul         several        paths         tapering
## 6791  poisonous     spicy         several       leaves         tapering
## 6792  poisonous     spicy         several       leaves         tapering
## 6793  poisonous     spicy         several        woods         tapering
## 6794  poisonous     fishy         several       leaves         tapering
## 6795  poisonous     spicy         several       leaves         tapering
## 6796  poisonous      foul         several       leaves         tapering
## 6797  poisonous      foul         several       leaves         tapering
## 6798  poisonous     fishy         several        paths         tapering
## 6799  poisonous      foul         several       leaves         tapering
## 6800  poisonous     fishy         several       leaves         tapering
## 6801  poisonous     spicy         several        paths         tapering
## 6802  poisonous     fishy         several        paths         tapering
## 6803  poisonous      foul         several       leaves         tapering
## 6804  poisonous     spicy         several        woods         tapering
## 6805  poisonous      foul         several       leaves         tapering
## 6806  poisonous     fishy         several        woods         tapering
## 6807  poisonous     fishy         several       leaves         tapering
## 6808  poisonous     spicy         several        paths         tapering
## 6809  poisonous     fishy         several        woods         tapering
## 6810  poisonous      foul         several       leaves         tapering
## 6811  poisonous      foul         several        paths         tapering
## 6812  poisonous      foul         several        paths         tapering
## 6813  poisonous     fishy         several        paths         tapering
## 6814  poisonous     spicy         several        paths         tapering
## 6815  poisonous     fishy         several       leaves         tapering
## 6816  poisonous      foul         several        woods         tapering
## 6817  poisonous     spicy         several        paths         tapering
## 6818  poisonous      foul         several       leaves         tapering
## 6819  poisonous     fishy         several        woods         tapering
## 6820  poisonous     fishy         several        paths         tapering
## 6821  poisonous     spicy         several       leaves         tapering
## 6822  poisonous     fishy         several       leaves         tapering
## 6823  poisonous     fishy         several        paths         tapering
## 6824  poisonous     fishy         several        paths         tapering
## 6825  poisonous     spicy         several        woods         tapering
## 6826  poisonous      foul         several       leaves         tapering
## 6827     edible      none        numerous      grasses        enlarging
## 6828  poisonous     fishy         several        woods         tapering
## 6829  poisonous     fishy         several        paths         tapering
## 6830  poisonous     spicy         several        paths         tapering
## 6831  poisonous     spicy         several        paths         tapering
## 6832  poisonous     spicy         several        paths         tapering
## 6833  poisonous      foul         several       leaves         tapering
## 6834  poisonous      foul         several       leaves         tapering
## 6835  poisonous      foul         several        paths         tapering
## 6836  poisonous      foul         several       leaves         tapering
## 6837  poisonous      foul         several        paths         tapering
## 6838  poisonous      foul         several        paths         tapering
## 6839  poisonous      foul         several       leaves         tapering
## 6840  poisonous     spicy         several        paths         tapering
## 6841  poisonous     fishy         several        woods         tapering
## 6842  poisonous      foul         several        paths         tapering
## 6843  poisonous     spicy         several        paths         tapering
## 6844  poisonous     spicy         several        paths         tapering
## 6845  poisonous     spicy         several        woods         tapering
## 6846  poisonous     fishy         several       leaves         tapering
## 6847  poisonous     spicy         several       leaves         tapering
## 6848  poisonous      foul         several       leaves         tapering
## 6849     edible      none       clustered       leaves        enlarging
## 6850  poisonous      foul         several        woods         tapering
## 6851  poisonous     spicy         several       leaves         tapering
## 6852  poisonous     spicy         several        woods         tapering
## 6853  poisonous      foul         several        woods         tapering
## 6854  poisonous      foul         several        paths         tapering
## 6855  poisonous     musty       clustered        woods        enlarging
## 6856  poisonous      foul         several        paths         tapering
## 6857  poisonous     spicy         several       leaves         tapering
## 6858  poisonous     fishy         several        woods         tapering
## 6859  poisonous      foul         several        paths         tapering
## 6860     edible      none       scattered      grasses        enlarging
## 6861  poisonous     fishy         several       leaves         tapering
## 6862  poisonous     fishy         several        woods         tapering
## 6863  poisonous     fishy         several        paths         tapering
## 6864  poisonous     spicy         several        woods         tapering
## 6865  poisonous     fishy         several       leaves         tapering
## 6866  poisonous     fishy         several        paths         tapering
## 6867  poisonous      foul         several        woods         tapering
## 6868  poisonous      foul         several        paths         tapering
## 6869  poisonous      foul         several        paths         tapering
## 6870  poisonous      foul         several       leaves         tapering
## 6871  poisonous     fishy         several       leaves         tapering
## 6872  poisonous     fishy         several        woods         tapering
## 6873  poisonous     fishy         several        woods         tapering
## 6874  poisonous     spicy         several        paths         tapering
## 6875  poisonous      foul         several       leaves         tapering
## 6876  poisonous     fishy         several       leaves         tapering
## 6877  poisonous     fishy         several        woods         tapering
## 6878  poisonous      foul         several        woods         tapering
## 6879  poisonous      foul         several       leaves         tapering
## 6880  poisonous      foul         several        paths         tapering
## 6881  poisonous      foul         several       leaves         tapering
## 6882  poisonous     fishy         several        woods         tapering
## 6883  poisonous      foul         several        woods         tapering
## 6884     edible      none        numerous      grasses        enlarging
## 6885  poisonous     fishy         several        woods         tapering
## 6886  poisonous     fishy         several        woods         tapering
## 6887  poisonous     spicy         several        woods         tapering
## 6888  poisonous     spicy         several        paths         tapering
## 6889  poisonous      foul         several       leaves         tapering
## 6890  poisonous     spicy         several       leaves         tapering
## 6891  poisonous     spicy         several        paths         tapering
## 6892  poisonous      foul         several        paths         tapering
## 6893  poisonous     spicy         several        woods         tapering
## 6894  poisonous     spicy         several        paths         tapering
## 6895  poisonous     spicy         several       leaves         tapering
## 6896  poisonous      foul         several        paths         tapering
## 6897  poisonous     fishy         several        paths         tapering
## 6898  poisonous     fishy         several        woods         tapering
## 6899  poisonous      foul         several        paths         tapering
## 6900     edible      none         several       leaves        enlarging
## 6901  poisonous     fishy         several        paths         tapering
## 6902  poisonous     fishy         several       leaves         tapering
## 6903  poisonous      foul         several        paths         tapering
## 6904     edible      none        solitary        paths        enlarging
## 6905     edible      none       clustered       leaves        enlarging
## 6906     edible      none        numerous      grasses        enlarging
## 6907     edible      none       scattered      grasses        enlarging
## 6908  poisonous     spicy         several        woods         tapering
## 6909  poisonous      foul         several        paths         tapering
## 6910     edible      none       clustered       leaves        enlarging
## 6911  poisonous     spicy         several        woods         tapering
## 6912  poisonous      none       clustered       leaves        enlarging
## 6913  poisonous      foul         several        woods         tapering
## 6914     edible      none        numerous      grasses        enlarging
## 6915  poisonous      foul         several        paths         tapering
## 6916  poisonous     spicy         several        paths         tapering
## 6917  poisonous     spicy         several        woods         tapering
## 6918  poisonous     fishy         several        paths         tapering
## 6919  poisonous     spicy         several        woods         tapering
## 6920     edible      none       scattered      grasses        enlarging
## 6921  poisonous     spicy         several        paths         tapering
## 6922  poisonous     fishy         several        woods         tapering
## 6923  poisonous      foul         several       leaves         tapering
## 6924     edible      none        numerous      grasses        enlarging
## 6925  poisonous     spicy         several        woods         tapering
## 6926  poisonous     fishy         several        paths         tapering
## 6927     edible      none       clustered       leaves        enlarging
## 6928     edible      none        solitary        paths        enlarging
## 6929  poisonous     fishy         several        woods         tapering
## 6930  poisonous     fishy         several       leaves         tapering
## 6931  poisonous     spicy         several       leaves         tapering
## 6932     edible      none        numerous      grasses        enlarging
## 6933  poisonous      foul         several        paths         tapering
## 6934  poisonous     fishy         several       leaves         tapering
## 6935  poisonous     fishy         several       leaves         tapering
## 6936  poisonous      foul         several        woods         tapering
## 6937     edible      none       scattered      grasses        enlarging
## 6938     edible      none        numerous      grasses        enlarging
## 6939  poisonous     fishy         several       leaves         tapering
## 6940  poisonous     fishy         several       leaves         tapering
## 6941     edible      none         several        paths        enlarging
## 6942  poisonous     spicy         several        woods         tapering
## 6943  poisonous     fishy         several       leaves         tapering
## 6944  poisonous     spicy         several       leaves         tapering
## 6945  poisonous     musty       clustered        woods        enlarging
## 6946  poisonous      foul         several        woods         tapering
## 6947  poisonous     spicy         several        paths         tapering
## 6948  poisonous     spicy         several       leaves         tapering
## 6949  poisonous      foul         several       leaves         tapering
## 6950  poisonous      foul         several       leaves         tapering
## 6951  poisonous      foul         several        paths         tapering
## 6952     edible      none       scattered      grasses        enlarging
## 6953  poisonous     spicy         several        woods         tapering
## 6954  poisonous      foul         several        paths         tapering
## 6955  poisonous     fishy         several        woods         tapering
## 6956  poisonous     spicy         several       leaves         tapering
## 6957  poisonous     spicy         several       leaves         tapering
## 6958     edible      none       scattered      grasses        enlarging
## 6959  poisonous      foul         several        paths         tapering
## 6960  poisonous     spicy         several       leaves         tapering
## 6961  poisonous     spicy         several       leaves         tapering
## 6962  poisonous     spicy         several        woods         tapering
## 6963  poisonous     fishy         several       leaves         tapering
## 6964  poisonous     spicy         several       leaves         tapering
## 6965  poisonous     fishy         several        paths         tapering
## 6966  poisonous      foul         several        woods         tapering
## 6967     edible      none        solitary        woods        enlarging
## 6968  poisonous      foul         several        paths         tapering
## 6969  poisonous      foul         several        woods         tapering
## 6970     edible      none        solitary        woods        enlarging
## 6971  poisonous      foul         several        woods         tapering
## 6972  poisonous     fishy         several       leaves         tapering
## 6973  poisonous     spicy         several        paths         tapering
## 6974  poisonous     spicy         several        paths         tapering
## 6975     edible      none       scattered      grasses        enlarging
## 6976  poisonous      foul         several        woods         tapering
## 6977  poisonous     fishy         several        paths         tapering
## 6978  poisonous      foul         several       leaves         tapering
## 6979  poisonous      foul         several        paths         tapering
## 6980  poisonous     fishy         several       leaves         tapering
## 6981  poisonous      foul         several        paths         tapering
## 6982  poisonous     spicy         several       leaves         tapering
## 6983  poisonous      foul         several        woods         tapering
## 6984     edible      none        solitary        paths        enlarging
## 6985  poisonous     fishy         several        paths         tapering
## 6986  poisonous      foul         several        paths         tapering
## 6987  poisonous      foul         several        paths         tapering
## 6988  poisonous     spicy         several       leaves         tapering
## 6989     edible      none       clustered       leaves        enlarging
## 6990     edible      none        numerous      grasses        enlarging
## 6991  poisonous     musty       clustered        woods        enlarging
## 6992  poisonous     fishy         several       leaves         tapering
## 6993  poisonous     fishy         several        woods         tapering
## 6994     edible      none       clustered       leaves        enlarging
## 6995  poisonous     spicy         several        woods         tapering
## 6996  poisonous     spicy         several        woods         tapering
## 6997     edible      none       scattered      grasses        enlarging
## 6998     edible      none       scattered      grasses        enlarging
## 6999     edible      none         several       leaves        enlarging
## 7000  poisonous     spicy         several        woods         tapering
## 7001  poisonous     spicy         several       leaves         tapering
## 7002  poisonous     spicy         several        paths         tapering
## 7003     edible      none       scattered      grasses        enlarging
## 7004     edible      none        numerous      grasses        enlarging
## 7005     edible      none       scattered      grasses        enlarging
## 7006  poisonous      foul         several       leaves         tapering
## 7007  poisonous     spicy         several        paths         tapering
## 7008     edible      none       scattered      grasses        enlarging
## 7009     edible      none       scattered      grasses        enlarging
## 7010  poisonous      foul         several        woods         tapering
## 7011     edible      none       scattered      grasses        enlarging
## 7012  poisonous     spicy         several        paths         tapering
## 7013  poisonous      foul         several        paths         tapering
## 7014  poisonous      foul         several        woods         tapering
## 7015     edible      none       scattered      grasses        enlarging
## 7016     edible      none        numerous      grasses        enlarging
## 7017  poisonous     fishy         several        paths         tapering
## 7018  poisonous      foul         several        woods         tapering
## 7019     edible      none       scattered      grasses        enlarging
## 7020     edible      none        numerous      grasses        enlarging
## 7021  poisonous     spicy         several        woods         tapering
## 7022     edible      none         several        paths        enlarging
## 7023  poisonous     fishy         several        woods         tapering
## 7024  poisonous     fishy         several        paths         tapering
## 7025     edible      none       clustered       leaves        enlarging
## 7026     edible      none       clustered       leaves        enlarging
## 7027  poisonous     spicy         several       leaves         tapering
## 7028  poisonous     fishy         several        woods         tapering
## 7029  poisonous     spicy         several        woods         tapering
## 7030  poisonous     fishy         several        woods         tapering
## 7031  poisonous     fishy         several       leaves         tapering
## 7032     edible      none        numerous      grasses        enlarging
## 7033     edible      none       clustered       leaves        enlarging
## 7034  poisonous     musty       clustered        woods        enlarging
## 7035     edible      none       scattered      grasses        enlarging
## 7036     edible      none         several       leaves        enlarging
## 7037     edible      none         several       leaves        enlarging
## 7038  poisonous     spicy         several        paths         tapering
## 7039     edible      none        numerous      grasses        enlarging
## 7040     edible      none       scattered      grasses        enlarging
## 7041     edible      none         several       leaves        enlarging
## 7042  poisonous     fishy         several        woods         tapering
## 7043  poisonous     spicy         several       leaves         tapering
## 7044  poisonous     spicy         several        woods         tapering
## 7045  poisonous     fishy         several        paths         tapering
## 7046     edible      none        numerous      grasses        enlarging
## 7047  poisonous     spicy         several        woods         tapering
## 7048  poisonous     spicy         several        paths         tapering
## 7049  poisonous     spicy         several       leaves         tapering
## 7050     edible      none       scattered      grasses        enlarging
## 7051     edible      none       clustered       leaves        enlarging
## 7052  poisonous      foul         several       leaves         tapering
## 7053  poisonous     spicy         several        paths         tapering
## 7054     edible      none         several       leaves        enlarging
## 7055  poisonous     fishy         several        woods         tapering
## 7056  poisonous     fishy         several        paths         tapering
## 7057  poisonous     spicy         several       leaves         tapering
## 7058  poisonous     spicy         several        paths         tapering
## 7059  poisonous     spicy         several        paths         tapering
## 7060  poisonous     fishy         several        woods         tapering
## 7061  poisonous     spicy         several        woods         tapering
## 7062  poisonous     fishy         several        woods         tapering
## 7063     edible      none        solitary        paths        enlarging
## 7064  poisonous     fishy         several        woods         tapering
## 7065  poisonous     musty       clustered        woods        enlarging
## 7066  poisonous      foul         several       leaves         tapering
## 7067     edible      none       scattered      grasses        enlarging
## 7068  poisonous      foul         several        woods         tapering
## 7069  poisonous     fishy         several        paths         tapering
## 7070  poisonous     spicy         several        paths         tapering
## 7071  poisonous     fishy         several        woods         tapering
## 7072  poisonous      foul         several        woods         tapering
## 7073     edible      none        solitary        paths        enlarging
## 7074  poisonous      foul         several       leaves         tapering
## 7075  poisonous      foul         several        woods         tapering
## 7076  poisonous     fishy         several       leaves         tapering
## 7077  poisonous     fishy         several       leaves         tapering
## 7078  poisonous      foul         several        paths         tapering
## 7079     edible      none       clustered       leaves        enlarging
## 7080  poisonous     spicy         several        woods         tapering
## 7081  poisonous     spicy         several        paths         tapering
## 7082  poisonous      foul         several        woods         tapering
## 7083  poisonous     spicy         several        paths         tapering
## 7084  poisonous      foul         several       leaves         tapering
## 7085  poisonous     fishy         several       leaves         tapering
## 7086     edible      none       scattered      grasses        enlarging
## 7087  poisonous     spicy         several        paths         tapering
## 7088  poisonous     spicy         several       leaves         tapering
## 7089     edible      none        numerous      grasses        enlarging
## 7090     edible      none         several       leaves        enlarging
## 7091  poisonous     musty       clustered        woods        enlarging
## 7092  poisonous     spicy         several        woods         tapering
## 7093  poisonous      foul         several       leaves         tapering
## 7094  poisonous      foul         several        paths         tapering
## 7095  poisonous     fishy         several       leaves         tapering
## 7096  poisonous     fishy         several        paths         tapering
## 7097  poisonous     fishy         several       leaves         tapering
## 7098     edible      none        numerous      grasses        enlarging
## 7099  poisonous      foul         several        paths         tapering
## 7100  poisonous     musty       clustered        woods        enlarging
## 7101  poisonous     spicy         several        paths         tapering
## 7102  poisonous     spicy         several       leaves         tapering
## 7103     edible      none       scattered      grasses        enlarging
## 7104  poisonous     fishy         several        woods         tapering
## 7105  poisonous     fishy         several        paths         tapering
## 7106  poisonous      foul         several       leaves         tapering
## 7107  poisonous     fishy         several        paths         tapering
## 7108  poisonous      foul         several        woods         tapering
## 7109  poisonous      foul         several        woods         tapering
## 7110     edible      none        numerous      grasses        enlarging
## 7111  poisonous     musty       clustered        woods        enlarging
## 7112  poisonous     fishy         several        woods         tapering
## 7113  poisonous      foul         several        paths         tapering
## 7114  poisonous      foul         several        paths         tapering
## 7115  poisonous     spicy         several       leaves         tapering
## 7116     edible      none         several        paths        enlarging
## 7117  poisonous     fishy         several        woods         tapering
## 7118  poisonous     fishy         several        paths         tapering
## 7119     edible      none        numerous      grasses        enlarging
## 7120  poisonous     spicy         several        woods         tapering
## 7121  poisonous     fishy         several        woods         tapering
## 7122  poisonous     spicy         several        woods         tapering
## 7123     edible      none        numerous      grasses        enlarging
## 7124  poisonous     spicy         several        paths         tapering
## 7125  poisonous     spicy         several        paths         tapering
## 7126  poisonous     fishy         several        paths         tapering
## 7127  poisonous      foul         several       leaves         tapering
## 7128     edible      none         several       leaves        enlarging
## 7129  poisonous     fishy         several        woods         tapering
## 7130  poisonous     fishy         several        woods         tapering
## 7131  poisonous     fishy         several        woods         tapering
## 7132  poisonous      foul         several       leaves         tapering
## 7133     edible      none         several       leaves        enlarging
## 7134     edible      none       scattered      grasses        enlarging
## 7135     edible      none         several       leaves        enlarging
## 7136     edible      none        numerous      grasses        enlarging
## 7137  poisonous     fishy         several        woods         tapering
## 7138  poisonous      foul         several        woods         tapering
## 7139  poisonous     spicy         several        woods         tapering
## 7140  poisonous     fishy         several        paths         tapering
## 7141     edible      none        numerous      grasses        enlarging
## 7142  poisonous     spicy         several        woods         tapering
## 7143     edible      none        numerous      grasses        enlarging
## 7144  poisonous      foul         several        woods         tapering
## 7145  poisonous      foul         several       leaves         tapering
## 7146  poisonous     musty       clustered        woods        enlarging
## 7147  poisonous     spicy         several        woods         tapering
## 7148  poisonous     spicy         several       leaves         tapering
## 7149  poisonous     spicy         several       leaves         tapering
## 7150  poisonous      foul         several        paths         tapering
## 7151  poisonous      foul         several       leaves         tapering
## 7152  poisonous     spicy         several        woods         tapering
## 7153     edible      none       scattered      grasses        enlarging
## 7154  poisonous     fishy         several        paths         tapering
## 7155  poisonous     fishy         several       leaves         tapering
## 7156  poisonous     spicy         several       leaves         tapering
## 7157  poisonous     fishy         several        paths         tapering
## 7158     edible      none        numerous      grasses        enlarging
## 7159  poisonous     spicy         several       leaves         tapering
## 7160  poisonous     spicy         several        woods         tapering
## 7161  poisonous     spicy         several        woods         tapering
## 7162     edible      none       scattered      grasses        enlarging
## 7163  poisonous     fishy         several        paths         tapering
## 7164  poisonous     fishy         several        paths         tapering
## 7165  poisonous     fishy         several        woods         tapering
## 7166  poisonous     musty       clustered        woods        enlarging
## 7167     edible      none       scattered      grasses        enlarging
## 7168  poisonous      foul         several        paths         tapering
## 7169  poisonous      foul         several       leaves         tapering
## 7170     edible      none        numerous      grasses        enlarging
## 7171  poisonous      foul         several       leaves         tapering
## 7172  poisonous     spicy         several       leaves         tapering
## 7173     edible      none       clustered       leaves        enlarging
## 7174  poisonous      foul         several       leaves         tapering
## 7175  poisonous     spicy         several       leaves         tapering
## 7176     edible      none       clustered       leaves        enlarging
## 7177  poisonous      foul         several       leaves         tapering
## 7178  poisonous      foul         several        woods         tapering
## 7179  poisonous     spicy         several        paths         tapering
## 7180  poisonous     spicy         several        paths         tapering
## 7181     edible      none        solitary        paths        enlarging
## 7182     edible      none       clustered       leaves        enlarging
## 7183     edible      none        numerous      grasses        enlarging
## 7184  poisonous     spicy         several        paths         tapering
## 7185     edible      none        numerous      grasses        enlarging
## 7186  poisonous     fishy         several        paths         tapering
## 7187  poisonous     spicy         several        woods         tapering
## 7188     edible      none       clustered       leaves        enlarging
## 7189  poisonous     fishy         several        paths         tapering
## 7190  poisonous      foul         several        woods         tapering
## 7191  poisonous     fishy         several       leaves         tapering
## 7192  poisonous     spicy         several        paths         tapering
## 7193  poisonous     spicy         several        paths         tapering
## 7194  poisonous      foul         several        woods         tapering
## 7195     edible      none        solitary        woods        enlarging
## 7196  poisonous      foul         several        woods         tapering
## 7197  poisonous     spicy         several        paths         tapering
## 7198  poisonous     fishy         several        paths         tapering
## 7199  poisonous      foul         several        woods         tapering
## 7200     edible      none        numerous      grasses        enlarging
## 7201  poisonous      foul         several        woods         tapering
## 7202     edible      none       scattered      grasses        enlarging
## 7203  poisonous     fishy         several       leaves         tapering
## 7204     edible      none        numerous      grasses        enlarging
## 7205     edible      none       clustered       leaves        enlarging
## 7206  poisonous      foul         several        paths         tapering
## 7207  poisonous      foul         several       leaves         tapering
## 7208     edible      none        numerous      grasses        enlarging
## 7209  poisonous     fishy         several       leaves         tapering
## 7210  poisonous     spicy         several       leaves         tapering
## 7211     edible      none        numerous      grasses        enlarging
## 7212  poisonous      foul         several        paths         tapering
## 7213  poisonous      foul         several       leaves         tapering
## 7214  poisonous      foul         several       leaves         tapering
## 7215  poisonous     spicy         several        paths         tapering
## 7216  poisonous     spicy         several        paths         tapering
## 7217     edible      none        numerous      grasses        enlarging
## 7218  poisonous      foul         several        paths         tapering
## 7219  poisonous      foul         several       leaves         tapering
## 7220     edible      none        numerous      grasses        enlarging
## 7221     edible      none         several       leaves        enlarging
## 7222     edible      none        numerous      grasses        enlarging
## 7223  poisonous     spicy         several        paths         tapering
## 7224  poisonous      foul         several        woods         tapering
## 7225  poisonous     spicy         several        paths         tapering
## 7226     edible      none       scattered      grasses        enlarging
## 7227  poisonous     spicy         several        paths         tapering
## 7228     edible      none         several       leaves        enlarging
## 7229     edible      none        numerous      grasses        enlarging
## 7230  poisonous     musty       clustered        woods        enlarging
## 7231     edible      none       scattered      grasses        enlarging
## 7232  poisonous     fishy         several        paths         tapering
## 7233     edible      none       clustered       leaves        enlarging
## 7234     edible      none        numerous      grasses        enlarging
## 7235     edible      none       clustered       leaves        enlarging
## 7236     edible      none        numerous      grasses        enlarging
## 7237  poisonous      foul         several       leaves         tapering
## 7238  poisonous     fishy         several        paths         tapering
## 7239     edible      none       clustered       leaves        enlarging
## 7240  poisonous     fishy         several        paths         tapering
## 7241  poisonous     fishy         several        paths         tapering
## 7242  poisonous     fishy         several       leaves         tapering
## 7243  poisonous     spicy         several       leaves         tapering
## 7244     edible      none         several       leaves        enlarging
## 7245     edible      none       scattered      grasses        enlarging
## 7246     edible      none       clustered       leaves        enlarging
## 7247  poisonous     spicy         several       leaves         tapering
## 7248  poisonous     spicy         several       leaves         tapering
## 7249  poisonous     fishy         several        paths         tapering
## 7250  poisonous     fishy         several       leaves         tapering
## 7251     edible      none       clustered       leaves        enlarging
## 7252  poisonous     fishy         several        woods         tapering
## 7253     edible      none         several       leaves        enlarging
## 7254  poisonous     fishy         several        woods         tapering
## 7255     edible      none       scattered      grasses        enlarging
## 7256  poisonous      foul         several        woods         tapering
## 7257  poisonous      foul         several        woods         tapering
## 7258     edible      none       scattered      grasses        enlarging
## 7259  poisonous     fishy         several        paths         tapering
## 7260     edible      none        numerous      grasses        enlarging
## 7261  poisonous      foul         several        paths         tapering
## 7262  poisonous      foul         several        woods         tapering
## 7263     edible      none        numerous      grasses        enlarging
## 7264  poisonous     spicy         several       leaves         tapering
## 7265  poisonous     musty       clustered        woods        enlarging
## 7266     edible      none        numerous      grasses        enlarging
## 7267  poisonous     fishy         several        paths         tapering
## 7268  poisonous     spicy         several        woods         tapering
## 7269  poisonous     fishy         several       leaves         tapering
## 7270     edible      none        numerous      grasses        enlarging
## 7271     edible      none       scattered      grasses        enlarging
## 7272  poisonous     spicy         several        woods         tapering
## 7273     edible      none        numerous      grasses        enlarging
## 7274  poisonous      foul         several        woods         tapering
## 7275  poisonous     fishy         several       leaves         tapering
## 7276     edible      none       scattered      grasses        enlarging
## 7277  poisonous     fishy         several       leaves         tapering
## 7278     edible      none       scattered      grasses        enlarging
## 7279  poisonous     fishy         several        woods         tapering
## 7280     edible      none        numerous      grasses        enlarging
## 7281     edible      none         several       leaves        enlarging
## 7282  poisonous     spicy         several        woods         tapering
## 7283  poisonous      foul         several        paths         tapering
## 7284     edible      none        numerous      grasses        enlarging
## 7285  poisonous     musty       clustered        woods        enlarging
## 7286  poisonous     fishy         several        paths         tapering
## 7287  poisonous      foul         several       leaves         tapering
## 7288  poisonous     fishy         several        paths         tapering
## 7289  poisonous      foul         several        woods         tapering
## 7290     edible      none       clustered       leaves        enlarging
## 7291  poisonous      foul         several       leaves         tapering
## 7292     edible      none        solitary        woods        enlarging
## 7293     edible      none        numerous      grasses        enlarging
## 7294  poisonous     fishy         several       leaves         tapering
## 7295  poisonous      none       clustered       leaves        enlarging
## 7296  poisonous     fishy         several        paths         tapering
## 7297  poisonous     spicy         several       leaves         tapering
## 7298  poisonous     spicy         several       leaves         tapering
## 7299     edible      none       clustered       leaves        enlarging
## 7300     edible      none        solitary        paths        enlarging
## 7301     edible      none        numerous      grasses        enlarging
## 7302  poisonous     spicy         several        paths         tapering
## 7303  poisonous     spicy         several        paths         tapering
## 7304  poisonous     spicy         several       leaves         tapering
## 7305     edible      none        numerous      grasses        enlarging
## 7306     edible      none       clustered       leaves        enlarging
## 7307  poisonous     fishy         several        paths         tapering
## 7308  poisonous      foul         several        woods         tapering
## 7309     edible      none       scattered      grasses        enlarging
## 7310  poisonous     fishy         several       leaves         tapering
## 7311     edible      none       scattered      grasses        enlarging
## 7312  poisonous     fishy         several       leaves         tapering
## 7313  poisonous     spicy         several        paths         tapering
## 7314     edible      none        numerous      grasses        enlarging
## 7315     edible      none        numerous      grasses        enlarging
## 7316  poisonous      foul         several        woods         tapering
## 7317  poisonous      foul         several       leaves         tapering
## 7318  poisonous     spicy         several        woods         tapering
## 7319     edible      none        numerous      grasses        enlarging
## 7320  poisonous      foul         several        paths         tapering
## 7321  poisonous     fishy         several        woods         tapering
## 7322  poisonous      foul         several       leaves         tapering
## 7323  poisonous     musty       clustered        woods        enlarging
## 7324  poisonous      foul         several       leaves         tapering
## 7325     edible      none       clustered       leaves        enlarging
## 7326  poisonous      foul         several        woods         tapering
## 7327     edible      none         several       leaves        enlarging
## 7328     edible      none        numerous      grasses        enlarging
## 7329     edible      none        numerous      grasses        enlarging
## 7330  poisonous     spicy         several       leaves         tapering
## 7331  poisonous     fishy         several        woods         tapering
## 7332  poisonous      foul         several        paths         tapering
## 7333  poisonous     fishy         several        woods         tapering
## 7334     edible      none       scattered      grasses        enlarging
## 7335     edible      none        numerous      grasses        enlarging
## 7336  poisonous     musty       clustered        woods        enlarging
## 7337  poisonous      foul         several        woods         tapering
## 7338  poisonous      foul         several        paths         tapering
## 7339  poisonous     fishy         several        woods         tapering
## 7340  poisonous     spicy         several        woods         tapering
## 7341  poisonous     spicy         several        paths         tapering
## 7342  poisonous     musty       clustered        woods        enlarging
## 7343  poisonous     spicy         several        woods         tapering
## 7344     edible      none        numerous      grasses        enlarging
## 7345  poisonous     fishy         several       leaves         tapering
## 7346     edible      none       scattered      grasses        enlarging
## 7347  poisonous      foul         several        woods         tapering
## 7348  poisonous     fishy         several       leaves         tapering
## 7349     edible      none       scattered      grasses        enlarging
## 7350     edible      none       scattered      grasses        enlarging
## 7351  poisonous     fishy         several       leaves         tapering
## 7352     edible      none       clustered       leaves        enlarging
## 7353     edible      none        solitary        paths        enlarging
## 7354     edible      none        numerous      grasses        enlarging
## 7355  poisonous     spicy         several       leaves         tapering
## 7356  poisonous      foul         several        paths         tapering
## 7357  poisonous      foul         several       leaves         tapering
## 7358     edible      none        numerous      grasses        enlarging
## 7359     edible      none       scattered      grasses        enlarging
## 7360     edible      none        solitary        paths        enlarging
## 7361     edible      none       scattered      grasses        enlarging
## 7362  poisonous     fishy         several       leaves         tapering
## 7363  poisonous     fishy         several        paths         tapering
## 7364  poisonous     fishy         several        paths         tapering
## 7365  poisonous      foul         several        paths         tapering
## 7366     edible      none       clustered       leaves        enlarging
## 7367  poisonous      none       clustered       leaves        enlarging
## 7368  poisonous     musty       clustered        woods        enlarging
## 7369  poisonous     fishy         several        woods         tapering
## 7370     edible      none         several        paths        enlarging
## 7371  poisonous     spicy         several        paths         tapering
## 7372     edible      none        numerous      grasses        enlarging
## 7373     edible      none       scattered      grasses        enlarging
## 7374  poisonous      foul         several        paths         tapering
## 7375     edible      none         several       leaves        enlarging
## 7376     edible      none         several       leaves        enlarging
## 7377     edible      none        solitary        paths        enlarging
## 7378     edible      none       scattered      grasses        enlarging
## 7379  poisonous     fishy         several        woods         tapering
## 7380  poisonous      foul         several        woods         tapering
## 7381  poisonous     spicy         several       leaves         tapering
## 7382  poisonous     fishy         several        woods         tapering
## 7383  poisonous      foul         several       leaves         tapering
## 7384  poisonous     fishy         several        paths         tapering
## 7385     edible      none        numerous      grasses        enlarging
## 7386  poisonous     musty       clustered        woods        enlarging
## 7387  poisonous     fishy         several        woods         tapering
## 7388     edible      none         several       leaves        enlarging
## 7389  poisonous      foul         several        paths         tapering
## 7390     edible      none       scattered      grasses        enlarging
## 7391     edible      none       scattered      grasses        enlarging
## 7392  poisonous     spicy         several       leaves         tapering
## 7393  poisonous     fishy         several        paths         tapering
## 7394  poisonous      foul         several        woods         tapering
## 7395  poisonous      foul         several        paths         tapering
## 7396  poisonous     spicy         several       leaves         tapering
## 7397  poisonous     fishy         several        paths         tapering
## 7398     edible      none       scattered      grasses        enlarging
## 7399  poisonous     fishy         several        paths         tapering
## 7400     edible      none       scattered      grasses        enlarging
## 7401  poisonous      none       clustered       leaves        enlarging
## 7402  poisonous     spicy         several        paths         tapering
## 7403  poisonous     fishy         several       leaves         tapering
## 7404     edible      none       scattered      grasses        enlarging
## 7405     edible      none         several       leaves        enlarging
## 7406  poisonous     fishy         several       leaves         tapering
## 7407     edible      none       clustered       leaves        enlarging
## 7408  poisonous     fishy         several       leaves         tapering
## 7409  poisonous      foul         several       leaves         tapering
## 7410  poisonous     fishy         several        paths         tapering
## 7411     edible      none       scattered      grasses        enlarging
## 7412     edible      none       clustered       leaves        enlarging
## 7413     edible      none         several       leaves        enlarging
## 7414  poisonous      foul         several        woods         tapering
## 7415     edible      none         several        paths        enlarging
## 7416     edible      none       scattered      grasses        enlarging
## 7417  poisonous     spicy         several       leaves         tapering
## 7418     edible      none        numerous      grasses        enlarging
## 7419  poisonous      foul         several        paths         tapering
## 7420  poisonous     fishy         several        woods         tapering
## 7421  poisonous     spicy         several        woods         tapering
## 7422     edible      none        solitary        paths        enlarging
## 7423  poisonous      foul         several        woods         tapering
## 7424  poisonous      foul         several        paths         tapering
## 7425     edible      none       clustered       leaves        enlarging
## 7426  poisonous      foul         several       leaves         tapering
## 7427  poisonous     fishy         several        woods         tapering
## 7428  poisonous     fishy         several        woods         tapering
## 7429  poisonous     spicy         several        paths         tapering
## 7430  poisonous      foul         several        paths         tapering
## 7431  poisonous     spicy         several       leaves         tapering
## 7432     edible      none       clustered       leaves        enlarging
## 7433  poisonous     spicy         several        paths         tapering
## 7434     edible      none       scattered      grasses        enlarging
## 7435  poisonous     spicy         several       leaves         tapering
## 7436  poisonous     fishy         several       leaves         tapering
## 7437     edible      none         several       leaves        enlarging
## 7438  poisonous     spicy         several       leaves         tapering
## 7439     edible      none       scattered      grasses        enlarging
## 7440     edible      none         several       leaves        enlarging
## 7441  poisonous     spicy         several        paths         tapering
## 7442  poisonous     spicy         several        woods         tapering
## 7443     edible      none        solitary        paths        enlarging
## 7444     edible      none        numerous      grasses        enlarging
## 7445     edible      none        numerous      grasses        enlarging
## 7446     edible      none       clustered       leaves        enlarging
## 7447  poisonous     spicy         several        paths         tapering
## 7448  poisonous     fishy         several       leaves         tapering
## 7449     edible      none        solitary        paths        enlarging
## 7450     edible      none       scattered      grasses        enlarging
## 7451  poisonous      foul         several        paths         tapering
## 7452  poisonous      foul         several       leaves         tapering
## 7453  poisonous      foul         several        woods         tapering
## 7454  poisonous      foul         several       leaves         tapering
## 7455     edible      none         several       leaves        enlarging
## 7456  poisonous      foul         several        woods         tapering
## 7457  poisonous     spicy         several        paths         tapering
## 7458  poisonous      foul         several       leaves         tapering
## 7459     edible      none       clustered       leaves        enlarging
## 7460     edible      none        numerous      grasses        enlarging
## 7461  poisonous     spicy         several        paths         tapering
## 7462  poisonous      foul         several        paths         tapering
## 7463     edible      none       scattered      grasses        enlarging
## 7464  poisonous     spicy         several        woods         tapering
## 7465  poisonous     spicy         several        woods         tapering
## 7466  poisonous     fishy         several       leaves         tapering
## 7467     edible      none       clustered       leaves        enlarging
## 7468     edible      none       scattered      grasses        enlarging
## 7469  poisonous     musty       clustered        woods        enlarging
## 7470  poisonous      foul         several        paths         tapering
## 7471  poisonous      foul         several        woods         tapering
## 7472  poisonous     fishy         several        woods         tapering
## 7473  poisonous      foul         several        woods         tapering
## 7474  poisonous     spicy         several       leaves         tapering
## 7475  poisonous     spicy         several        woods         tapering
## 7476  poisonous     fishy         several        paths         tapering
## 7477  poisonous     spicy         several        woods         tapering
## 7478  poisonous     fishy         several        woods         tapering
## 7479     edible      none       scattered      grasses        enlarging
## 7480  poisonous     musty       clustered        woods        enlarging
## 7481     edible      none         several        paths        enlarging
## 7482  poisonous     fishy         several        paths         tapering
## 7483  poisonous      none       clustered       leaves        enlarging
## 7484  poisonous     spicy         several       leaves         tapering
## 7485  poisonous     musty       clustered        woods        enlarging
## 7486     edible      none        numerous      grasses        enlarging
## 7487  poisonous     fishy         several        woods         tapering
## 7488  poisonous     spicy         several       leaves         tapering
## 7489  poisonous     fishy         several        woods         tapering
## 7490     edible      none       clustered       leaves        enlarging
## 7491  poisonous     spicy         several        woods         tapering
## 7492  poisonous      foul         several        woods         tapering
## 7493  poisonous     spicy         several        paths         tapering
## 7494  poisonous     spicy         several       leaves         tapering
## 7495  poisonous     spicy         several        paths         tapering
## 7496  poisonous     spicy         several        woods         tapering
## 7497  poisonous     fishy         several        paths         tapering
## 7498     edible      none       scattered      grasses        enlarging
## 7499     edible      none       scattered      grasses        enlarging
## 7500     edible      none       scattered      grasses        enlarging
## 7501  poisonous     spicy         several        woods         tapering
## 7502  poisonous      foul         several        woods         tapering
## 7503  poisonous     fishy         several        paths         tapering
## 7504  poisonous      foul         several        woods         tapering
## 7505  poisonous     fishy         several        paths         tapering
## 7506  poisonous      foul         several       leaves         tapering
## 7507  poisonous     fishy         several        paths         tapering
## 7508  poisonous     fishy         several        woods         tapering
## 7509  poisonous     spicy         several        woods         tapering
## 7510     edible      none       clustered       leaves        enlarging
## 7511  poisonous     spicy         several        woods         tapering
## 7512  poisonous     spicy         several       leaves         tapering
## 7513     edible      none        numerous      grasses        enlarging
## 7514     edible      none        numerous      grasses        enlarging
## 7515  poisonous     spicy         several        woods         tapering
## 7516     edible      none       clustered       leaves        enlarging
## 7517  poisonous     spicy         several       leaves         tapering
## 7518  poisonous     spicy         several       leaves         tapering
## 7519  poisonous     spicy         several        paths         tapering
## 7520  poisonous     spicy         several       leaves         tapering
## 7521  poisonous      foul         several       leaves         tapering
## 7522     edible      none       clustered       leaves        enlarging
## 7523     edible      none       clustered       leaves        enlarging
## 7524     edible      none       scattered      grasses        enlarging
## 7525  poisonous     fishy         several       leaves         tapering
## 7526     edible      none       clustered       leaves        enlarging
## 7527  poisonous     spicy         several        woods         tapering
## 7528     edible      none       scattered      grasses        enlarging
## 7529     edible      none        numerous      grasses        enlarging
## 7530  poisonous     spicy         several        woods         tapering
## 7531     edible      none       clustered       leaves        enlarging
## 7532     edible      none        numerous      grasses        enlarging
## 7533     edible      none        solitary        paths        enlarging
## 7534     edible      none       scattered      grasses        enlarging
## 7535     edible      none        numerous      grasses        enlarging
## 7536  poisonous     musty       clustered        woods        enlarging
## 7537     edible      none       clustered       leaves        enlarging
## 7538  poisonous     fishy         several       leaves         tapering
## 7539  poisonous     spicy         several       leaves         tapering
## 7540     edible      none        numerous      grasses        enlarging
## 7541     edible      none       scattered      grasses        enlarging
## 7542     edible      none       scattered      grasses        enlarging
## 7543     edible      none         several       leaves        enlarging
## 7544  poisonous      foul         several        paths         tapering
## 7545  poisonous     spicy         several        paths         tapering
## 7546  poisonous     spicy         several       leaves         tapering
## 7547     edible      none         several       leaves        enlarging
## 7548     edible      none         several        paths        enlarging
## 7549  poisonous      foul         several        paths         tapering
## 7550     edible      none       scattered      grasses        enlarging
## 7551  poisonous     fishy         several        paths         tapering
## 7552     edible      none       scattered      grasses        enlarging
## 7553  poisonous     spicy         several       leaves         tapering
## 7554  poisonous     spicy         several       leaves         tapering
## 7555     edible      none       clustered       leaves        enlarging
## 7556  poisonous     fishy         several       leaves         tapering
## 7557  poisonous      foul         several        woods         tapering
## 7558     edible      none         several       leaves        enlarging
## 7559     edible      none        numerous      grasses        enlarging
## 7560     edible      none        numerous      grasses        enlarging
## 7561     edible      none         several       leaves        enlarging
## 7562  poisonous     fishy         several        paths         tapering
## 7563  poisonous     fishy         several        paths         tapering
## 7564     edible      none       scattered      grasses        enlarging
## 7565  poisonous     fishy         several        woods         tapering
## 7566     edible      none       scattered      grasses        enlarging
## 7567  poisonous     spicy         several       leaves         tapering
## 7568  poisonous      foul         several        woods         tapering
## 7569  poisonous     spicy         several        woods         tapering
## 7570     edible      none        solitary        paths        enlarging
## 7571  poisonous     fishy         several       leaves         tapering
## 7572  poisonous     fishy         several        paths         tapering
## 7573     edible      none       scattered      grasses        enlarging
## 7574  poisonous     spicy         several       leaves         tapering
## 7575  poisonous      foul         several        paths         tapering
## 7576     edible      none        numerous      grasses        enlarging
## 7577  poisonous      foul         several       leaves         tapering
## 7578  poisonous     fishy         several       leaves         tapering
## 7579  poisonous     spicy         several        paths         tapering
## 7580  poisonous     fishy         several        woods         tapering
## 7581     edible      none        numerous      grasses        enlarging
## 7582  poisonous     fishy         several        woods         tapering
## 7583  poisonous     spicy         several        woods         tapering
## 7584     edible      none       scattered      grasses        enlarging
## 7585     edible      none        numerous      grasses        enlarging
## 7586     edible      none       scattered      grasses        enlarging
## 7587  poisonous     spicy         several        paths         tapering
## 7588  poisonous     fishy         several        paths         tapering
## 7589  poisonous     fishy         several        woods         tapering
## 7590     edible      none       scattered      grasses        enlarging
## 7591  poisonous      foul         several        woods         tapering
## 7592  poisonous     spicy         several        woods         tapering
## 7593     edible      none       scattered      grasses        enlarging
## 7594  poisonous     fishy         several        woods         tapering
## 7595  poisonous      foul         several       leaves         tapering
## 7596  poisonous     spicy         several        woods         tapering
## 7597     edible      none         several        paths        enlarging
## 7598  poisonous      foul         several        paths         tapering
## 7599  poisonous      foul         several        paths         tapering
## 7600  poisonous      none       clustered       leaves        enlarging
## 7601  poisonous      foul         several       leaves         tapering
## 7602     edible      none        solitary        paths        enlarging
## 7603  poisonous      foul         several        paths         tapering
## 7604     edible      none       scattered      grasses        enlarging
## 7605  poisonous     spicy         several        woods         tapering
## 7606  poisonous      foul         several        woods         tapering
## 7607  poisonous     fishy         several       leaves         tapering
## 7608  poisonous     fishy         several       leaves         tapering
## 7609     edible      none        numerous      grasses        enlarging
## 7610     edible      none        numerous      grasses        enlarging
## 7611  poisonous     spicy         several        woods         tapering
## 7612     edible      none       clustered       leaves        enlarging
## 7613  poisonous     fishy         several        paths         tapering
## 7614  poisonous     fishy         several        paths         tapering
## 7615     edible      none       scattered      grasses        enlarging
## 7616  poisonous     fishy         several        paths         tapering
## 7617     edible      none         several       leaves        enlarging
## 7618  poisonous     fishy         several        paths         tapering
## 7619  poisonous     fishy         several        woods         tapering
## 7620  poisonous     fishy         several       leaves         tapering
## 7621  poisonous     fishy         several       leaves         tapering
## 7622     edible      none        numerous      grasses        enlarging
## 7623     edible      none       scattered      grasses        enlarging
## 7624  poisonous     fishy         several       leaves         tapering
## 7625  poisonous      foul         several        woods         tapering
## 7626     edible      none       scattered      grasses        enlarging
## 7627     edible      none       clustered       leaves        enlarging
## 7628  poisonous     spicy         several        paths         tapering
## 7629  poisonous     spicy         several       leaves         tapering
## 7630     edible      none         several       leaves        enlarging
## 7631     edible      none       scattered      grasses        enlarging
## 7632     edible      none        numerous      grasses        enlarging
## 7633  poisonous     fishy         several        paths         tapering
## 7634  poisonous      foul         several       leaves         tapering
## 7635  poisonous     musty       clustered        woods        enlarging
## 7636     edible      none       clustered       leaves        enlarging
## 7637  poisonous      foul         several        woods         tapering
## 7638  poisonous     spicy         several        woods         tapering
## 7639  poisonous     spicy         several        woods         tapering
## 7640     edible      none       scattered      grasses        enlarging
## 7641     edible      none       scattered      grasses        enlarging
## 7642     edible      none        numerous      grasses        enlarging
## 7643     edible      none        numerous      grasses        enlarging
## 7644     edible      none        numerous      grasses        enlarging
## 7645  poisonous     spicy         several        paths         tapering
## 7646  poisonous     spicy         several       leaves         tapering
## 7647  poisonous     spicy         several       leaves         tapering
## 7648  poisonous      foul         several       leaves         tapering
## 7649     edible      none       scattered      grasses        enlarging
## 7650     edible      none       scattered      grasses        enlarging
## 7651     edible      none        numerous      grasses        enlarging
## 7652     edible      none       clustered       leaves        enlarging
## 7653  poisonous     spicy         several        woods         tapering
## 7654  poisonous      foul         several        paths         tapering
## 7655  poisonous     fishy         several        paths         tapering
## 7656  poisonous     fishy         several        woods         tapering
## 7657  poisonous      foul         several       leaves         tapering
## 7658     edible      none         several       leaves        enlarging
## 7659     edible      none       scattered      grasses        enlarging
## 7660  poisonous     fishy         several        woods         tapering
## 7661  poisonous     fishy         several        woods         tapering
## 7662     edible      none       scattered      grasses        enlarging
## 7663  poisonous     spicy         several        woods         tapering
## 7664     edible      none       clustered       leaves        enlarging
## 7665     edible      none         several       leaves        enlarging
## 7666  poisonous     spicy         several        paths         tapering
## 7667  poisonous     spicy         several        woods         tapering
## 7668  poisonous     spicy         several        paths         tapering
## 7669  poisonous     spicy         several        paths         tapering
## 7670  poisonous      foul         several        woods         tapering
## 7671     edible      none       scattered      grasses        enlarging
## 7672  poisonous      foul         several        woods         tapering
## 7673     edible      none         several        paths        enlarging
## 7674     edible      none         several       leaves        enlarging
## 7675  poisonous     fishy         several       leaves         tapering
## 7676  poisonous      foul         several        woods         tapering
## 7677  poisonous      foul         several        paths         tapering
## 7678     edible      none       scattered      grasses        enlarging
## 7679  poisonous     spicy         several        paths         tapering
## 7680     edible      none       scattered      grasses        enlarging
## 7681  poisonous      foul         several       leaves         tapering
## 7682     edible      none       scattered      grasses        enlarging
## 7683  poisonous      foul         several       leaves         tapering
## 7684  poisonous     spicy         several        woods         tapering
## 7685     edible      none        numerous      grasses        enlarging
## 7686  poisonous      foul         several        woods         tapering
## 7687  poisonous     spicy         several        paths         tapering
## 7688     edible      none         several       leaves        enlarging
## 7689     edible      none         several       leaves        enlarging
## 7690  poisonous     fishy         several       leaves         tapering
## 7691  poisonous     spicy         several        paths         tapering
## 7692     edible      none       clustered       leaves        enlarging
## 7693  poisonous     fishy         several        woods         tapering
## 7694  poisonous      foul         several        woods         tapering
## 7695  poisonous     spicy         several        woods         tapering
## 7696  poisonous      foul         several        woods         tapering
## 7697  poisonous      foul         several       leaves         tapering
## 7698     edible      none        numerous      grasses        enlarging
## 7699     edible      none         several       leaves        enlarging
## 7700  poisonous     spicy         several        woods         tapering
## 7701     edible      none         several       leaves        enlarging
## 7702     edible      none        solitary        paths        enlarging
## 7703  poisonous     fishy         several       leaves         tapering
## 7704     edible      none        solitary        paths        enlarging
## 7705     edible      none         several        paths        enlarging
## 7706  poisonous      none       clustered       leaves        enlarging
## 7707  poisonous      foul         several        paths         tapering
## 7708  poisonous      foul         several        woods         tapering
## 7709  poisonous     musty       clustered        woods        enlarging
## 7710     edible      none         several       leaves        enlarging
## 7711  poisonous     spicy         several       leaves         tapering
## 7712     edible      none       scattered      grasses        enlarging
## 7713  poisonous      foul         several       leaves         tapering
## 7714  poisonous     musty       clustered        woods        enlarging
## 7715  poisonous     spicy         several       leaves         tapering
## 7716     edible      none       clustered       leaves        enlarging
## 7717     edible      none        solitary        woods        enlarging
## 7718  poisonous     spicy         several        woods         tapering
## 7719  poisonous     fishy         several        paths         tapering
## 7720     edible      none       scattered      grasses        enlarging
## 7721     edible      none         several        paths        enlarging
## 7722  poisonous     spicy         several        paths         tapering
## 7723     edible      none       clustered       leaves        enlarging
## 7724     edible      none        numerous      grasses        enlarging
## 7725     edible      none        numerous      grasses        enlarging
## 7726  poisonous     fishy         several        woods         tapering
## 7727  poisonous     musty       clustered        woods        enlarging
## 7728  poisonous     spicy         several        paths         tapering
## 7729     edible      none       clustered       leaves        enlarging
## 7730  poisonous      foul         several        paths         tapering
## 7731  poisonous     spicy         several       leaves         tapering
## 7732  poisonous     fishy         several       leaves         tapering
## 7733  poisonous     spicy         several        woods         tapering
## 7734  poisonous      foul         several       leaves         tapering
## 7735  poisonous      foul         several        woods         tapering
## 7736     edible      none        numerous      grasses        enlarging
## 7737     edible      none         several       leaves        enlarging
## 7738  poisonous     spicy         several        paths         tapering
## 7739  poisonous      none       clustered       leaves        enlarging
## 7740     edible      none        numerous      grasses        enlarging
## 7741     edible      none       clustered       leaves        enlarging
## 7742  poisonous     spicy         several        paths         tapering
## 7743     edible      none       scattered      grasses        enlarging
## 7744     edible      none        numerous      grasses        enlarging
## 7745     edible      none       clustered       leaves        enlarging
## 7746     edible      none        numerous      grasses        enlarging
## 7747     edible      none        numerous      grasses        enlarging
## 7748     edible      none        numerous      grasses        enlarging
## 7749     edible      none        numerous      grasses        enlarging
## 7750  poisonous      foul         several        woods         tapering
## 7751  poisonous     spicy         several        woods         tapering
## 7752     edible      none       scattered      grasses        enlarging
## 7753     edible      none       scattered      grasses        enlarging
## 7754  poisonous      foul         several        paths         tapering
## 7755  poisonous     spicy         several        woods         tapering
## 7756  poisonous      foul         several        paths         tapering
## 7757  poisonous      foul         several        paths         tapering
## 7758  poisonous     spicy         several       leaves         tapering
## 7759     edible      none         several       leaves        enlarging
## 7760  poisonous     spicy         several        paths         tapering
## 7761     edible      none        numerous      grasses        enlarging
## 7762     edible      none         several       leaves        enlarging
## 7763     edible      none        numerous      grasses        enlarging
## 7764  poisonous     spicy         several        paths         tapering
## 7765     edible      none         several       leaves        enlarging
## 7766  poisonous      foul         several        woods         tapering
## 7767  poisonous      foul         several        woods         tapering
## 7768  poisonous     spicy         several        paths         tapering
## 7769     edible      none       scattered      grasses        enlarging
## 7770  poisonous      foul         several        woods         tapering
## 7771  poisonous     spicy         several        woods         tapering
## 7772     edible      none       scattered      grasses        enlarging
## 7773  poisonous     fishy         several        woods         tapering
## 7774  poisonous     fishy         several        paths         tapering
## 7775  poisonous      foul         several       leaves         tapering
## 7776     edible      none        numerous      grasses        enlarging
## 7777     edible      none       scattered      grasses        enlarging
## 7778  poisonous     spicy         several        paths         tapering
## 7779     edible      none        solitary        woods        enlarging
## 7780  poisonous     fishy         several        woods         tapering
## 7781  poisonous     spicy         several       leaves         tapering
## 7782     edible      none         several       leaves        enlarging
## 7783     edible      none        numerous      grasses        enlarging
## 7784  poisonous      foul         several       leaves         tapering
## 7785  poisonous     spicy         several       leaves         tapering
## 7786  poisonous      foul         several        paths         tapering
## 7787  poisonous      foul         several        woods         tapering
## 7788     edible      none       clustered       leaves        enlarging
## 7789  poisonous     fishy         several        woods         tapering
## 7790     edible      none       scattered      grasses        enlarging
## 7791     edible      none       clustered       leaves        enlarging
## 7792  poisonous     spicy         several        paths         tapering
## 7793  poisonous     fishy         several        paths         tapering
## 7794  poisonous     spicy         several        woods         tapering
## 7795     edible      none        numerous      grasses        enlarging
## 7796  poisonous     fishy         several       leaves         tapering
## 7797     edible      none       scattered      grasses        enlarging
## 7798  poisonous     spicy         several        woods         tapering
## 7799  poisonous     spicy         several        woods         tapering
## 7800  poisonous     spicy         several        woods         tapering
## 7801  poisonous     musty       clustered        woods        enlarging
## 7802  poisonous     spicy         several        woods         tapering
## 7803     edible      none       scattered      grasses        enlarging
## 7804  poisonous     fishy         several       leaves         tapering
## 7805  poisonous     musty       clustered        woods        enlarging
## 7806  poisonous     fishy         several       leaves         tapering
## 7807     edible      none       clustered       leaves        enlarging
## 7808  poisonous     spicy         several        paths         tapering
## 7809     edible      none        numerous      grasses        enlarging
## 7810     edible      none        numerous      grasses        enlarging
## 7811     edible      none         several       leaves        enlarging
## 7812  poisonous     spicy         several       leaves         tapering
## 7813     edible      none       clustered       leaves        enlarging
## 7814     edible      none        numerous      grasses        enlarging
## 7815  poisonous     spicy         several       leaves         tapering
## 7816  poisonous     fishy         several        paths         tapering
## 7817     edible      none        numerous      grasses        enlarging
## 7818     edible      none        numerous      grasses        enlarging
## 7819  poisonous      foul         several        woods         tapering
## 7820  poisonous     musty       clustered        woods        enlarging
## 7821  poisonous      foul         several        paths         tapering
## 7822  poisonous      foul         several        paths         tapering
## 7823     edible      none       scattered      grasses        enlarging
## 7824  poisonous      foul         several       leaves         tapering
## 7825     edible      none         several       leaves        enlarging
## 7826  poisonous     spicy         several        woods         tapering
## 7827  poisonous     spicy         several        paths         tapering
## 7828     edible      none         several       leaves        enlarging
## 7829     edible      none         several       leaves        enlarging
## 7830     edible      none        numerous      grasses        enlarging
## 7831     edible      none       clustered       leaves        enlarging
## 7832  poisonous     fishy         several       leaves         tapering
## 7833     edible      none         several       leaves        enlarging
## 7834     edible      none       clustered       leaves        enlarging
## 7835  poisonous     fishy         several        woods         tapering
## 7836     edible      none       clustered       leaves        enlarging
## 7837  poisonous      foul         several        woods         tapering
## 7838     edible      none        numerous      grasses        enlarging
## 7839  poisonous     fishy         several        woods         tapering
## 7840     edible      none         several       leaves        enlarging
## 7841  poisonous     spicy         several       leaves         tapering
## 7842     edible      none       scattered      grasses        enlarging
## 7843     edible      none       scattered      grasses        enlarging
## 7844     edible      none         several       leaves        enlarging
## 7845     edible      none       clustered       leaves        enlarging
## 7846  poisonous     fishy         several        woods         tapering
## 7847     edible      none        numerous      grasses        enlarging
## 7848  poisonous      foul         several        woods         tapering
## 7849  poisonous     spicy         several        woods         tapering
## 7850  poisonous      foul         several        paths         tapering
## 7851  poisonous      foul         several        woods         tapering
## 7852  poisonous     spicy         several       leaves         tapering
## 7853  poisonous     spicy         several       leaves         tapering
## 7854     edible      none        numerous      grasses        enlarging
## 7855  poisonous     spicy         several       leaves         tapering
## 7856  poisonous     fishy         several        paths         tapering
## 7857  poisonous     spicy         several        paths         tapering
## 7858     edible      none        numerous      grasses        enlarging
## 7859     edible      none       clustered       leaves        enlarging
## 7860     edible      none        numerous      grasses        enlarging
## 7861  poisonous      foul         several       leaves         tapering
## 7862  poisonous      foul         several       leaves         tapering
## 7863  poisonous     spicy         several        woods         tapering
## 7864  poisonous      foul         several        paths         tapering
## 7865  poisonous      foul         several        woods         tapering
## 7866     edible      none         several       leaves        enlarging
## 7867     edible      none       scattered      grasses        enlarging
## 7868  poisonous      foul         several       leaves         tapering
## 7869  poisonous      foul         several       leaves         tapering
## 7870     edible      none        numerous      grasses        enlarging
## 7871     edible      none         several       leaves        enlarging
## 7872     edible      none        numerous      grasses        enlarging
## 7873  poisonous     spicy         several        woods         tapering
## 7874  poisonous      foul         several        paths         tapering
## 7875  poisonous     fishy         several       leaves         tapering
## 7876  poisonous     fishy         several        woods         tapering
## 7877  poisonous     spicy         several       leaves         tapering
## 7878     edible      none       clustered       leaves        enlarging
## 7879  poisonous      foul         several        woods         tapering
## 7880  poisonous     spicy         several        woods         tapering
## 7881  poisonous      foul         several       leaves         tapering
## 7882     edible      none       scattered      grasses        enlarging
## 7883  poisonous     fishy         several        woods         tapering
## 7884  poisonous     fishy         several       leaves         tapering
## 7885  poisonous      foul         several        woods         tapering
## 7886     edible      none         several       leaves        enlarging
## 7887     edible      none        solitary        woods        enlarging
## 7888  poisonous     spicy         several        woods         tapering
## 7889  poisonous     spicy         several       leaves         tapering
## 7890     edible      none       scattered      grasses        enlarging
## 7891  poisonous     spicy         several        paths         tapering
## 7892  poisonous     fishy         several        paths         tapering
## 7893     edible      none       clustered       leaves        enlarging
## 7894     edible      none       scattered      grasses        enlarging
## 7895     edible      none        numerous      grasses        enlarging
## 7896  poisonous     fishy         several        paths         tapering
## 7897  poisonous     spicy         several        woods         tapering
## 7898     edible      none         several        paths        enlarging
## 7899  poisonous     fishy         several        woods         tapering
## 7900     edible      none       scattered      grasses        enlarging
## 7901  poisonous     spicy         several        paths         tapering
## 7902  poisonous     fishy         several        paths         tapering
## 7903  poisonous      foul         several        paths         tapering
## 7904     edible      none       scattered      grasses        enlarging
## 7905     edible      none         several       leaves        enlarging
## 7906  poisonous      foul         several        paths         tapering
## 7907     edible      none       scattered      grasses        enlarging
## 7908  poisonous      foul         several       leaves         tapering
## 7909     edible      none       scattered      grasses        enlarging
## 7910  poisonous     musty       clustered        woods        enlarging
## 7911     edible      none         several       leaves        enlarging
## 7912     edible      none        numerous      grasses        enlarging
## 7913     edible      none         several       leaves        enlarging
## 7914  poisonous      foul         several        woods         tapering
## 7915     edible      none         several       leaves        enlarging
## 7916     edible      none        numerous      grasses        enlarging
## 7917  poisonous      foul         several        paths         tapering
## 7918     edible      none        numerous      grasses        enlarging
## 7919     edible      none         several        paths        enlarging
## 7920  poisonous      foul         several       leaves         tapering
## 7921     edible      none        numerous      grasses        enlarging
## 7922     edible      none       clustered       leaves        enlarging
## 7923  poisonous      foul         several        woods         tapering
## 7924  poisonous     fishy         several       leaves         tapering
## 7925  poisonous     spicy         several        paths         tapering
## 7926  poisonous     spicy         several        woods         tapering
## 7927     edible      none       clustered       leaves        enlarging
## 7928  poisonous     spicy         several        paths         tapering
## 7929     edible      none       scattered      grasses        enlarging
## 7930  poisonous      foul         several        paths         tapering
## 7931     edible      none        solitary        paths        enlarging
## 7932  poisonous     spicy         several        paths         tapering
## 7933     edible      none       scattered      grasses        enlarging
## 7934  poisonous      foul         several        woods         tapering
## 7935  poisonous     fishy         several        woods         tapering
## 7936  poisonous      foul         several       leaves         tapering
## 7937     edible      none       clustered       leaves        enlarging
## 7938     edible      none        numerous      grasses        enlarging
## 7939     edible      none       clustered       leaves        enlarging
## 7940     edible      none        solitary        paths        enlarging
## 7941  poisonous     musty       clustered        woods        enlarging
## 7942  poisonous     fishy         several        woods         tapering
## 7943  poisonous      foul         several        paths         tapering
## 7944     edible      none         several       leaves        enlarging
## 7945     edible      none       clustered       leaves        enlarging
## 7946     edible      none         several        paths        enlarging
## 7947  poisonous     spicy         several       leaves         tapering
## 7948  poisonous     fishy         several       leaves         tapering
## 7949  poisonous     spicy         several       leaves         tapering
## 7950  poisonous     fishy         several        woods         tapering
## 7951  poisonous      foul         several        paths         tapering
## 7952     edible      none         several        paths        enlarging
## 7953     edible      none       clustered       leaves        enlarging
## 7954     edible      none        numerous      grasses        enlarging
## 7955     edible      none       scattered      grasses        enlarging
## 7956     edible      none       clustered       leaves        enlarging
## 7957     edible      none       clustered       leaves        enlarging
## 7958     edible      none        numerous      grasses        enlarging
## 7959  poisonous      foul         several       leaves         tapering
## 7960     edible      none       scattered      grasses        enlarging
## 7961  poisonous     fishy         several        paths         tapering
## 7962  poisonous     fishy         several        woods         tapering
## 7963  poisonous      foul         several        woods         tapering
## 7964     edible      none         several       leaves        enlarging
## 7965     edible      none        solitary        paths        enlarging
## 7966     edible      none        numerous      grasses        enlarging
## 7967  poisonous      foul         several        woods         tapering
## 7968  poisonous      foul         several       leaves         tapering
## 7969  poisonous     fishy         several        paths         tapering
## 7970     edible      none       clustered       leaves        enlarging
## 7971     edible      none         several       leaves        enlarging
## 7972     edible      none       scattered      grasses        enlarging
## 7973  poisonous      foul         several        paths         tapering
## 7974     edible      none       scattered      grasses        enlarging
## 7975     edible      none        numerous      grasses        enlarging
## 7976     edible      none        numerous      grasses        enlarging
## 7977     edible      none         several       leaves        enlarging
## 7978  poisonous     spicy         several        paths         tapering
## 7979     edible      none         several       leaves        enlarging
## 7980  poisonous      foul         several        woods         tapering
## 7981  poisonous     musty       clustered        woods        enlarging
## 7982  poisonous     fishy         several        woods         tapering
## 7983     edible      none        numerous      grasses        enlarging
## 7984     edible      none        solitary        woods        enlarging
## 7985     edible      none       clustered       leaves        enlarging
## 7986     edible      none        solitary        paths        enlarging
## 7987  poisonous      foul         several       leaves         tapering
## 7988     edible      none       clustered       leaves        enlarging
## 7989  poisonous     fishy         several        paths         tapering
## 7990  poisonous      foul         several        paths         tapering
## 7991     edible      none        numerous      grasses        enlarging
## 7992  poisonous      foul         several       leaves         tapering
## 7993     edible      none       scattered      grasses        enlarging
## 7994     edible      none       clustered       leaves        enlarging
## 7995  poisonous     fishy         several        paths         tapering
## 7996     edible      none         several       leaves        enlarging
## 7997  poisonous     fishy         several       leaves         tapering
## 7998  poisonous     spicy         several        paths         tapering
## 7999     edible      none         several       leaves        enlarging
## 8000     edible      none       clustered       leaves        enlarging
## 8001     edible      none        solitary        paths        enlarging
## 8002     edible      none       scattered      grasses        enlarging
## 8003     edible      none         several       leaves        enlarging
## 8004  poisonous      foul         several        paths         tapering
## 8005  poisonous     spicy         several        woods         tapering
## 8006  poisonous     fishy         several        paths         tapering
## 8007  poisonous      foul         several        woods         tapering
## 8008  poisonous      foul         several        paths         tapering
## 8009     edible      none         several       leaves        enlarging
## 8010     edible      none         several       leaves        enlarging
## 8011     edible      none         several       leaves        enlarging
## 8012  poisonous     spicy         several       leaves         tapering
## 8013     edible      none         several       leaves        enlarging
## 8014     edible      none       scattered      grasses        enlarging
## 8015     edible      none       scattered      grasses        enlarging
## 8016  poisonous     spicy         several        paths         tapering
## 8017     edible      none        numerous      grasses        enlarging
## 8018     edible      none       scattered      grasses        enlarging
## 8019     edible      none       scattered      grasses        enlarging
## 8020  poisonous     fishy         several        woods         tapering
## 8021  poisonous     fishy         several       leaves         tapering
## 8022  poisonous     fishy         several        paths         tapering
## 8023  poisonous     fishy         several        paths         tapering
## 8024  poisonous      foul         several        woods         tapering
## 8025     edible      none       clustered       leaves        enlarging
## 8026     edible      none         several       leaves        enlarging
## 8027  poisonous      foul         several       leaves         tapering
## 8028  poisonous      foul         several       leaves         tapering
## 8029     edible      none        numerous      grasses        enlarging
## 8030     edible      none       scattered      grasses        enlarging
## 8031  poisonous      foul         several        paths         tapering
## 8032  poisonous      foul         several        woods         tapering
## 8033  poisonous      foul         several       leaves         tapering
## 8034     edible      none       clustered       leaves        enlarging
## 8035     edible      none        numerous      grasses        enlarging
## 8036     edible      none         several       leaves        enlarging
## 8037  poisonous     fishy         several        woods         tapering
## 8038     edible      none        solitary        paths        enlarging
## 8039  poisonous      foul         several       leaves         tapering
## 8040     edible      none         several       leaves        enlarging
## 8041  poisonous     fishy         several        paths         tapering
## 8042     edible      none       clustered       leaves        enlarging
## 8043     edible      none         several       leaves        enlarging
## 8044     edible      none       clustered       leaves        enlarging
## 8045  poisonous     fishy         several        paths         tapering
## 8046     edible      none        numerous      grasses        enlarging
## 8047  poisonous     fishy         several        woods         tapering
## 8048  poisonous     fishy         several        woods         tapering
## 8049  poisonous      foul         several       leaves         tapering
## 8050  poisonous     spicy         several        woods         tapering
## 8051     edible      none       scattered      grasses        enlarging
## 8052     edible      none         several       leaves        enlarging
## 8053  poisonous      foul         several        woods         tapering
## 8054     edible      none         several       leaves        enlarging
## 8055     edible      none        numerous      grasses        enlarging
## 8056     edible      none         several       leaves        enlarging
## 8057     edible      none         several       leaves        enlarging
## 8058  poisonous     spicy         several       leaves         tapering
## 8059  poisonous      foul         several        paths         tapering
## 8060  poisonous     spicy         several        woods         tapering
## 8061  poisonous     spicy         several        paths         tapering
## 8062  poisonous     fishy         several       leaves         tapering
## 8063     edible      none       scattered      grasses        enlarging
## 8064  poisonous      foul         several       leaves         tapering
## 8065     edible      none         several       leaves        enlarging
## 8066  poisonous      foul         several        paths         tapering
## 8067     edible      none       clustered       leaves        enlarging
## 8068     edible      none       clustered       leaves        enlarging
## 8069     edible      none       clustered       leaves        enlarging
## 8070  poisonous     spicy         several       leaves         tapering
## 8071     edible      none         several       leaves        enlarging
## 8072  poisonous      foul         several        paths         tapering
## 8073     edible      none         several       leaves        enlarging
## 8074     edible      none        numerous      grasses        enlarging
## 8075     edible      none       clustered       leaves        enlarging
## 8076     edible      none       clustered       leaves        enlarging
## 8077     edible      none         several       leaves        enlarging
## 8078     edible      none       scattered      grasses        enlarging
## 8079  poisonous      foul         several       leaves         tapering
## 8080  poisonous     spicy         several        woods         tapering
## 8081  poisonous      foul         several        paths         tapering
## 8082  poisonous     spicy         several        paths         tapering
## 8083  poisonous     fishy         several       leaves         tapering
## 8084     edible      none       scattered      grasses        enlarging
## 8085     edible      none       scattered      grasses        enlarging
## 8086     edible      none         several       leaves        enlarging
## 8087  poisonous      foul         several        paths         tapering
## 8088     edible      none         several       leaves        enlarging
## 8089  poisonous      foul         several        woods         tapering
## 8090  poisonous      foul         several        woods         tapering
## 8091  poisonous      foul         several        paths         tapering
## 8092  poisonous     fishy         several        paths         tapering
## 8093  poisonous     fishy         several        woods         tapering
## 8094     edible      none        numerous      grasses        enlarging
## 8095  poisonous     musty       clustered        woods        enlarging
## 8096     edible      none        numerous      grasses        enlarging
## 8097  poisonous     spicy         several       leaves         tapering
## 8098  poisonous     fishy         several        woods         tapering
## 8099     edible      none       scattered      grasses        enlarging
## 8100     edible      none         several       leaves        enlarging
## 8101  poisonous     spicy         several        paths         tapering
## 8102     edible      none       clustered       leaves        enlarging
## 8103     edible      none       clustered       leaves        enlarging
## 8104     edible      none         several       leaves        enlarging
## 8105     edible      none         several       leaves        enlarging
## 8106     edible      none         several       leaves        enlarging
## 8107     edible      none       clustered       leaves        enlarging
## 8108  poisonous     fishy         several       leaves         tapering
## 8109     edible      none        numerous      grasses        enlarging
## 8110     edible      none         several       leaves        enlarging
## 8111     edible      none        numerous      grasses        enlarging
## 8112     edible      none         several       leaves        enlarging
## 8113  poisonous     fishy         several        woods         tapering
## 8114  poisonous     musty       clustered        woods        enlarging
## 8115     edible      none         several       leaves        enlarging
## 8116  poisonous     spicy         several       leaves         tapering
## 8117  poisonous     fishy         several        woods         tapering
## 8118  poisonous      foul         several        woods         tapering
## 8119     edible      none       clustered       leaves        enlarging
## 8120     edible      none         several       leaves        enlarging
## 8121     edible      none       clustered       leaves        enlarging
## 8122  poisonous     fishy         several       leaves         tapering
## 8123     edible      none       clustered       leaves        enlarging
##      stalk_root_info
## 1               club
## 2               club
## 3              equal
## 4              equal
## 5               club
## 6               club
## 7               club
## 8              equal
## 9               club
## 10              club
## 11              club
## 12              club
## 13             equal
## 14             equal
## 15             equal
## 16             equal
## 17             equal
## 18             equal
## 19             equal
## 20              club
## 21             equal
## 22              club
## 23              club
## 24              club
## 25             equal
## 26              club
## 27              club
## 28             equal
## 29           bulbous
## 30              club
## 31             equal
## 32              club
## 33            rooted
## 34              club
## 35           bulbous
## 36             equal
## 37             equal
## 38           bulbous
## 39              club
## 40              club
## 41            rooted
## 42             equal
## 43             equal
## 44              club
## 45              club
## 46              club
## 47              club
## 48            rooted
## 49            rooted
## 50            rooted
## 51              club
## 52              club
## 53             equal
## 54             equal
## 55              club
## 56             equal
## 57              club
## 58              club
## 59            rooted
## 60             equal
## 61              club
## 62              club
## 63              club
## 64              club
## 65             equal
## 66              club
## 67            rooted
## 68              club
## 69             equal
## 70           bulbous
## 71              club
## 72           bulbous
## 73            rooted
## 74              club
## 75           bulbous
## 76           bulbous
## 77            rooted
## 78             equal
## 79            rooted
## 80             equal
## 81             equal
## 82             equal
## 83             equal
## 84            rooted
## 85             equal
## 86              club
## 87              club
## 88            rooted
## 89             equal
## 90             equal
## 91              club
## 92              club
## 93              club
## 94             equal
## 95              club
## 96            rooted
## 97              club
## 98              club
## 99              club
## 100            equal
## 101             club
## 102           rooted
## 103           rooted
## 104             club
## 105             club
## 106           rooted
## 107             club
## 108             club
## 109             club
## 110             club
## 111            equal
## 112          bulbous
## 113             club
## 114            equal
## 115           rooted
## 116            equal
## 117           rooted
## 118          bulbous
## 119            equal
## 120            equal
## 121             club
## 122            equal
## 123            equal
## 124             club
## 125            equal
## 126             club
## 127            equal
## 128             club
## 129             club
## 130             club
## 131             club
## 132          bulbous
## 133             club
## 134          bulbous
## 135            equal
## 136          bulbous
## 137             club
## 138            equal
## 139             club
## 140           rooted
## 141             club
## 142            equal
## 143           rooted
## 144             club
## 145            equal
## 146            equal
## 147             club
## 148             club
## 149             club
## 150             club
## 151            equal
## 152             club
## 153            equal
## 154          bulbous
## 155           rooted
## 156             club
## 157             club
## 158             club
## 159             club
## 160             club
## 161             club
## 162            equal
## 163           rooted
## 164             club
## 165           rooted
## 166             club
## 167             club
## 168           rooted
## 169             club
## 170            equal
## 171             club
## 172          bulbous
## 173             club
## 174           rooted
## 175             club
## 176             club
## 177             club
## 178             club
## 179             club
## 180            equal
## 181            equal
## 182            equal
## 183             club
## 184           rooted
## 185            equal
## 186             club
## 187            equal
## 188             club
## 189           rooted
## 190            equal
## 191          bulbous
## 192             club
## 193          bulbous
## 194             club
## 195            equal
## 196             club
## 197             club
## 198             club
## 199          bulbous
## 200             club
## 201             club
## 202             club
## 203            equal
## 204           rooted
## 205            equal
## 206             club
## 207             club
## 208             club
## 209             club
## 210             club
## 211             club
## 212          bulbous
## 213            equal
## 214           rooted
## 215             club
## 216             club
## 217             club
## 218             club
## 219            equal
## 220             club
## 221            equal
## 222           rooted
## 223          bulbous
## 224             club
## 225             club
## 226             club
## 227             club
## 228            equal
## 229             club
## 230            equal
## 231            equal
## 232           rooted
## 233            equal
## 234             club
## 235          bulbous
## 236             club
## 237             club
## 238           rooted
## 239           rooted
## 240           rooted
## 241             club
## 242             club
## 243            equal
## 244          bulbous
## 245             club
## 246          bulbous
## 247             club
## 248           rooted
## 249            equal
## 250           rooted
## 251            equal
## 252            equal
## 253             club
## 254             club
## 255             club
## 256            equal
## 257             club
## 258             club
## 259             club
## 260           rooted
## 261            equal
## 262             club
## 263             club
## 264          bulbous
## 265            equal
## 266            equal
## 267             club
## 268             club
## 269            equal
## 270             club
## 271            equal
## 272             club
## 273             club
## 274           rooted
## 275           rooted
## 276           rooted
## 277             club
## 278            equal
## 279             club
## 280            equal
## 281             club
## 282            equal
## 283             club
## 284             club
## 285           rooted
## 286             club
## 287             club
## 288           rooted
## 289            equal
## 290            equal
## 291             club
## 292             club
## 293             club
## 294             club
## 295             club
## 296             club
## 297            equal
## 298          bulbous
## 299            equal
## 300            equal
## 301             club
## 302          bulbous
## 303             club
## 304             club
## 305          bulbous
## 306             club
## 307             club
## 308           rooted
## 309            equal
## 310             club
## 311            equal
## 312             club
## 313          bulbous
## 314             club
## 315            equal
## 316          bulbous
## 317             club
## 318          bulbous
## 319          bulbous
## 320             club
## 321          bulbous
## 322             club
## 323             club
## 324           rooted
## 325             club
## 326             club
## 327            equal
## 328             club
## 329             club
## 330            equal
## 331             club
## 332             club
## 333             club
## 334             club
## 335          bulbous
## 336           rooted
## 337             club
## 338            equal
## 339           rooted
## 340             club
## 341             club
## 342             club
## 343          bulbous
## 344             club
## 345            equal
## 346          bulbous
## 347             club
## 348            equal
## 349            equal
## 350            equal
## 351           rooted
## 352             club
## 353             club
## 354           rooted
## 355            equal
## 356           rooted
## 357            equal
## 358           rooted
## 359             club
## 360            equal
## 361            equal
## 362            equal
## 363           rooted
## 364             club
## 365            equal
## 366           rooted
## 367          bulbous
## 368             club
## 369            equal
## 370           rooted
## 371           rooted
## 372             club
## 373            equal
## 374             club
## 375             club
## 376            equal
## 377             club
## 378             club
## 379             club
## 380            equal
## 381            equal
## 382             club
## 383             club
## 384          bulbous
## 385            equal
## 386           rooted
## 387            equal
## 388             club
## 389             club
## 390             club
## 391             club
## 392             club
## 393            equal
## 394           rooted
## 395            equal
## 396             club
## 397             club
## 398            equal
## 399            equal
## 400             club
## 401             club
## 402            equal
## 403             club
## 404             club
## 405             club
## 406             club
## 407             club
## 408             club
## 409           rooted
## 410             club
## 411            equal
## 412           rooted
## 413           rooted
## 414            equal
## 415             club
## 416          bulbous
## 417            equal
## 418             club
## 419            equal
## 420             club
## 421             club
## 422            equal
## 423           rooted
## 424             club
## 425          bulbous
## 426           rooted
## 427             club
## 428            equal
## 429            equal
## 430             club
## 431           rooted
## 432             club
## 433             club
## 434          bulbous
## 435             club
## 436          bulbous
## 437             club
## 438             club
## 439           rooted
## 440             club
## 441             club
## 442           rooted
## 443             club
## 444             club
## 445           rooted
## 446             club
## 447           rooted
## 448             club
## 449          bulbous
## 450             club
## 451             club
## 452             club
## 453          bulbous
## 454             club
## 455            equal
## 456             club
## 457             club
## 458           rooted
## 459           rooted
## 460             club
## 461           rooted
## 462             club
## 463             club
## 464            equal
## 465           rooted
## 466             club
## 467             club
## 468             club
## 469           rooted
## 470             club
## 471             club
## 472          bulbous
## 473            equal
## 474          bulbous
## 475            equal
## 476            equal
## 477             club
## 478          bulbous
## 479             club
## 480             club
## 481             club
## 482          bulbous
## 483            equal
## 484          bulbous
## 485           rooted
## 486             club
## 487            equal
## 488           rooted
## 489           rooted
## 490          bulbous
## 491            equal
## 492            equal
## 493           rooted
## 494           rooted
## 495             club
## 496            equal
## 497           rooted
## 498             club
## 499             club
## 500             club
## 501             club
## 502             club
## 503             club
## 504             club
## 505            equal
## 506            equal
## 507            equal
## 508          bulbous
## 509            equal
## 510            equal
## 511             club
## 512          bulbous
## 513            equal
## 514            equal
## 515            equal
## 516           rooted
## 517             club
## 518             club
## 519             club
## 520             club
## 521             club
## 522           rooted
## 523            equal
## 524            equal
## 525             club
## 526           rooted
## 527             club
## 528            equal
## 529           rooted
## 530           rooted
## 531             club
## 532            equal
## 533           rooted
## 534            equal
## 535            equal
## 536             club
## 537            equal
## 538             club
## 539          bulbous
## 540             club
## 541            equal
## 542            equal
## 543           rooted
## 544            equal
## 545             club
## 546             club
## 547            equal
## 548          bulbous
## 549             club
## 550            equal
## 551            equal
## 552           rooted
## 553          bulbous
## 554             club
## 555           rooted
## 556            equal
## 557          bulbous
## 558             club
## 559             club
## 560             club
## 561          bulbous
## 562          bulbous
## 563            equal
## 564             club
## 565            equal
## 566             club
## 567            equal
## 568            equal
## 569             club
## 570             club
## 571          bulbous
## 572             club
## 573             club
## 574           rooted
## 575             club
## 576            equal
## 577             club
## 578           rooted
## 579            equal
## 580             club
## 581             club
## 582             club
## 583           rooted
## 584           rooted
## 585             club
## 586            equal
## 587            equal
## 588            equal
## 589             club
## 590            equal
## 591            equal
## 592             club
## 593            equal
## 594             club
## 595            equal
## 596             club
## 597             club
## 598            equal
## 599            equal
## 600            equal
## 601           rooted
## 602            equal
## 603           rooted
## 604             club
## 605             club
## 606            equal
## 607           rooted
## 608             club
## 609            equal
## 610            equal
## 611            equal
## 612            equal
## 613            equal
## 614           rooted
## 615             club
## 616            equal
## 617             club
## 618             club
## 619            equal
## 620           rooted
## 621             club
## 622          bulbous
## 623           rooted
## 624            equal
## 625             club
## 626          bulbous
## 627            equal
## 628             club
## 629             club
## 630            equal
## 631             club
## 632          bulbous
## 633           rooted
## 634           rooted
## 635             club
## 636           rooted
## 637             club
## 638            equal
## 639             club
## 640             club
## 641           rooted
## 642           rooted
## 643           rooted
## 644           rooted
## 645          bulbous
## 646             club
## 647             club
## 648             club
## 649          bulbous
## 650             club
## 651             club
## 652           rooted
## 653            equal
## 654            equal
## 655             club
## 656            equal
## 657             club
## 658           rooted
## 659            equal
## 660             club
## 661             club
## 662            equal
## 663            equal
## 664             club
## 665             club
## 666           rooted
## 667           rooted
## 668           rooted
## 669             club
## 670             club
## 671            equal
## 672            equal
## 673          bulbous
## 674           rooted
## 675            equal
## 676            equal
## 677           rooted
## 678           rooted
## 679             club
## 680          bulbous
## 681             club
## 682          bulbous
## 683             club
## 684          bulbous
## 685             club
## 686            equal
## 687             club
## 688             club
## 689             club
## 690             club
## 691             club
## 692           rooted
## 693            equal
## 694            equal
## 695             club
## 696             club
## 697            equal
## 698            equal
## 699            equal
## 700            equal
## 701            equal
## 702           rooted
## 703             club
## 704           rooted
## 705           rooted
## 706             club
## 707            equal
## 708             club
## 709             club
## 710           rooted
## 711            equal
## 712             club
## 713             club
## 714             club
## 715             club
## 716             club
## 717           rooted
## 718           rooted
## 719            equal
## 720           rooted
## 721             club
## 722          bulbous
## 723            equal
## 724           rooted
## 725            equal
## 726             club
## 727            equal
## 728             club
## 729             club
## 730           rooted
## 731            equal
## 732            equal
## 733            equal
## 734             club
## 735             club
## 736          bulbous
## 737            equal
## 738             club
## 739            equal
## 740            equal
## 741             club
## 742           rooted
## 743             club
## 744           rooted
## 745             club
## 746             club
## 747             club
## 748            equal
## 749          bulbous
## 750           rooted
## 751             club
## 752          bulbous
## 753             club
## 754             club
## 755             club
## 756           rooted
## 757            equal
## 758             club
## 759           rooted
## 760             club
## 761           rooted
## 762             club
## 763            equal
## 764           rooted
## 765            equal
## 766          bulbous
## 767            equal
## 768             club
## 769             club
## 770             club
## 771             club
## 772             club
## 773          bulbous
## 774            equal
## 775           rooted
## 776            equal
## 777           rooted
## 778             club
## 779             club
## 780             club
## 781            equal
## 782             club
## 783             club
## 784             club
## 785            equal
## 786            equal
## 787             club
## 788            equal
## 789           rooted
## 790             club
## 791           rooted
## 792             club
## 793             club
## 794            equal
## 795            equal
## 796             club
## 797            equal
## 798            equal
## 799           rooted
## 800             club
## 801             club
## 802            equal
## 803             club
## 804             club
## 805           rooted
## 806             club
## 807           rooted
## 808             club
## 809          bulbous
## 810             club
## 811             club
## 812            equal
## 813            equal
## 814            equal
## 815             club
## 816           rooted
## 817           rooted
## 818          bulbous
## 819             club
## 820             club
## 821            equal
## 822             club
## 823             club
## 824           rooted
## 825             club
## 826          bulbous
## 827          bulbous
## 828             club
## 829          bulbous
## 830            equal
## 831          bulbous
## 832           rooted
## 833           rooted
## 834           rooted
## 835            equal
## 836             club
## 837            equal
## 838             club
## 839             club
## 840          bulbous
## 841            equal
## 842             club
## 843            equal
## 844             club
## 845            equal
## 846             club
## 847             club
## 848             club
## 849          bulbous
## 850             club
## 851           rooted
## 852            equal
## 853            equal
## 854            equal
## 855           rooted
## 856          bulbous
## 857             club
## 858             club
## 859            equal
## 860           rooted
## 861             club
## 862           rooted
## 863             club
## 864             club
## 865             club
## 866            equal
## 867           rooted
## 868            equal
## 869             club
## 870           rooted
## 871             club
## 872             club
## 873          bulbous
## 874             club
## 875           rooted
## 876             club
## 877             club
## 878           rooted
## 879             club
## 880          bulbous
## 881            equal
## 882             club
## 883             club
## 884           rooted
## 885          bulbous
## 886             club
## 887           rooted
## 888           rooted
## 889             club
## 890          bulbous
## 891           rooted
## 892             club
## 893             club
## 894             club
## 895           rooted
## 896             club
## 897             club
## 898             club
## 899             club
## 900           rooted
## 901            equal
## 902            equal
## 903            equal
## 904             club
## 905            equal
## 906            equal
## 907            equal
## 908            equal
## 909            equal
## 910             club
## 911            equal
## 912             club
## 913            equal
## 914            equal
## 915             club
## 916             club
## 917          bulbous
## 918            equal
## 919            equal
## 920            equal
## 921            equal
## 922             club
## 923          bulbous
## 924            equal
## 925            equal
## 926            equal
## 927            equal
## 928            equal
## 929             club
## 930            equal
## 931            equal
## 932            equal
## 933             club
## 934            equal
## 935            equal
## 936             club
## 937            equal
## 938            equal
## 939          bulbous
## 940             club
## 941            equal
## 942            equal
## 943            equal
## 944          bulbous
## 945            equal
## 946            equal
## 947             club
## 948            equal
## 949            equal
## 950            equal
## 951             club
## 952            equal
## 953            equal
## 954            equal
## 955             club
## 956            equal
## 957          bulbous
## 958          bulbous
## 959             club
## 960            equal
## 961            equal
## 962          bulbous
## 963          bulbous
## 964            equal
## 965            equal
## 966            equal
## 967          bulbous
## 968            equal
## 969            equal
## 970            equal
## 971          bulbous
## 972          bulbous
## 973            equal
## 974          bulbous
## 975            equal
## 976             club
## 977          bulbous
## 978             club
## 979            equal
## 980          bulbous
## 981             club
## 982            equal
## 983            equal
## 984            equal
## 985            equal
## 986            equal
## 987            equal
## 988            equal
## 989             club
## 990             club
## 991            equal
## 992            equal
## 993            equal
## 994            equal
## 995            equal
## 996             club
## 997          bulbous
## 998             club
## 999            equal
## 1000         bulbous
## 1001          rooted
## 1002           equal
## 1003           equal
## 1004          rooted
## 1005           equal
## 1006           equal
## 1007           equal
## 1008           equal
## 1009            club
## 1010            club
## 1011           equal
## 1012          rooted
## 1013           equal
## 1014           equal
## 1015         bulbous
## 1016          rooted
## 1017         bulbous
## 1018           equal
## 1019         bulbous
## 1020           equal
## 1021            club
## 1022            club
## 1023            club
## 1024           equal
## 1025           equal
## 1026           equal
## 1027         bulbous
## 1028            club
## 1029           equal
## 1030         bulbous
## 1031           equal
## 1032           equal
## 1033           equal
## 1034           equal
## 1035           equal
## 1036            club
## 1037         bulbous
## 1038           equal
## 1039           equal
## 1040          rooted
## 1041          rooted
## 1042           equal
## 1043         bulbous
## 1044           equal
## 1045            club
## 1046           equal
## 1047           equal
## 1048         bulbous
## 1049           equal
## 1050         bulbous
## 1051         bulbous
## 1052           equal
## 1053          rooted
## 1054           equal
## 1055            club
## 1056         bulbous
## 1057           equal
## 1058            club
## 1059           equal
## 1060           equal
## 1061         bulbous
## 1062           equal
## 1063           equal
## 1064           equal
## 1065         bulbous
## 1066            club
## 1067           equal
## 1068         bulbous
## 1069          rooted
## 1070           equal
## 1071           equal
## 1072            club
## 1073         bulbous
## 1074          rooted
## 1075           equal
## 1076           equal
## 1077           equal
## 1078           equal
## 1079          rooted
## 1080           equal
## 1081           equal
## 1082            club
## 1083           equal
## 1084            club
## 1085           equal
## 1086            club
## 1087            club
## 1088           equal
## 1089            club
## 1090           equal
## 1091          rooted
## 1092           equal
## 1093         bulbous
## 1094           equal
## 1095           equal
## 1096           equal
## 1097           equal
## 1098           equal
## 1099           equal
## 1100           equal
## 1101           equal
## 1102           equal
## 1103           equal
## 1104           equal
## 1105           equal
## 1106           equal
## 1107           equal
## 1108            club
## 1109           equal
## 1110           equal
## 1111           equal
## 1112          rooted
## 1113           equal
## 1114          rooted
## 1115           equal
## 1116           equal
## 1117           equal
## 1118           equal
## 1119           equal
## 1120           equal
## 1121           equal
## 1122           equal
## 1123         bulbous
## 1124         bulbous
## 1125           equal
## 1126           equal
## 1127            club
## 1128           equal
## 1129           equal
## 1130           equal
## 1131           equal
## 1132           equal
## 1133           equal
## 1134            club
## 1135           equal
## 1136         bulbous
## 1137            club
## 1138           equal
## 1139           equal
## 1140           equal
## 1141         bulbous
## 1142           equal
## 1143           equal
## 1144           equal
## 1145           equal
## 1146           equal
## 1147           equal
## 1148           equal
## 1149           equal
## 1150           equal
## 1151          rooted
## 1152           equal
## 1153           equal
## 1154           equal
## 1155            club
## 1156           equal
## 1157           equal
## 1158           equal
## 1159           equal
## 1160            club
## 1161           equal
## 1162         bulbous
## 1163          rooted
## 1164           equal
## 1165            club
## 1166           equal
## 1167         bulbous
## 1168           equal
## 1169            club
## 1170           equal
## 1171         bulbous
## 1172           equal
## 1173           equal
## 1174           equal
## 1175           equal
## 1176            club
## 1177           equal
## 1178           equal
## 1179          rooted
## 1180          rooted
## 1181          rooted
## 1182           equal
## 1183            club
## 1184            club
## 1185           equal
## 1186           equal
## 1187           equal
## 1188            club
## 1189           equal
## 1190           equal
## 1191            club
## 1192         bulbous
## 1193          rooted
## 1194            club
## 1195           equal
## 1196           equal
## 1197            club
## 1198            club
## 1199            club
## 1200            club
## 1201            club
## 1202            club
## 1203           equal
## 1204           equal
## 1205           equal
## 1206           equal
## 1207           equal
## 1208           equal
## 1209           equal
## 1210           equal
## 1211           equal
## 1212          rooted
## 1213           equal
## 1214           equal
## 1215           equal
## 1216           equal
## 1217           equal
## 1218           equal
## 1219           equal
## 1220          rooted
## 1221           equal
## 1222           equal
## 1223           equal
## 1224           equal
## 1225           equal
## 1226         bulbous
## 1227           equal
## 1228           equal
## 1229         bulbous
## 1230           equal
## 1231           equal
## 1232           equal
## 1233           equal
## 1234           equal
## 1235           equal
## 1236           equal
## 1237           equal
## 1238           equal
## 1239           equal
## 1240           equal
## 1241           equal
## 1242           equal
## 1243           equal
## 1244           equal
## 1245           equal
## 1246           equal
## 1247           equal
## 1248           equal
## 1249           equal
## 1250         bulbous
## 1251         bulbous
## 1252           equal
## 1253           equal
## 1254           equal
## 1255           equal
## 1256           equal
## 1257           equal
## 1258           equal
## 1259           equal
## 1260           equal
## 1261           equal
## 1262           equal
## 1263           equal
## 1264         bulbous
## 1265           equal
## 1266           equal
## 1267           equal
## 1268           equal
## 1269         bulbous
## 1270           equal
## 1271           equal
## 1272           equal
## 1273           equal
## 1274           equal
## 1275           equal
## 1276           equal
## 1277           equal
## 1278           equal
## 1279           equal
## 1280            club
## 1281           equal
## 1282           equal
## 1283           equal
## 1284           equal
## 1285           equal
## 1286           equal
## 1287           equal
## 1288         bulbous
## 1289           equal
## 1290         bulbous
## 1291           equal
## 1292           equal
## 1293           equal
## 1294           equal
## 1295           equal
## 1296         bulbous
## 1297           equal
## 1298          rooted
## 1299           equal
## 1300           equal
## 1301           equal
## 1302           equal
## 1303         bulbous
## 1304           equal
## 1305           equal
## 1306           equal
## 1307           equal
## 1308           equal
## 1309           equal
## 1310           equal
## 1311           equal
## 1312           equal
## 1313           equal
## 1314            club
## 1315           equal
## 1316           equal
## 1317         bulbous
## 1318            club
## 1319           equal
## 1320         bulbous
## 1321           equal
## 1322           equal
## 1323           equal
## 1324           equal
## 1325           equal
## 1326            club
## 1327           equal
## 1328           equal
## 1329           equal
## 1330           equal
## 1331           equal
## 1332           equal
## 1333           equal
## 1334           equal
## 1335         bulbous
## 1336           equal
## 1337         bulbous
## 1338            club
## 1339           equal
## 1340           equal
## 1341           equal
## 1342           equal
## 1343         bulbous
## 1344           equal
## 1345           equal
## 1346           equal
## 1347           equal
## 1348         bulbous
## 1349         bulbous
## 1350         bulbous
## 1351           equal
## 1352           equal
## 1353           equal
## 1354           equal
## 1355           equal
## 1356           equal
## 1357           equal
## 1358           equal
## 1359           equal
## 1360           equal
## 1361           equal
## 1362           equal
## 1363           equal
## 1364           equal
## 1365           equal
## 1366           equal
## 1367           equal
## 1368         bulbous
## 1369           equal
## 1370           equal
## 1371           equal
## 1372           equal
## 1373            club
## 1374           equal
## 1375           equal
## 1376           equal
## 1377           equal
## 1378           equal
## 1379           equal
## 1380           equal
## 1381           equal
## 1382           equal
## 1383           equal
## 1384           equal
## 1385           equal
## 1386           equal
## 1387         bulbous
## 1388         bulbous
## 1389           equal
## 1390         bulbous
## 1391           equal
## 1392           equal
## 1393           equal
## 1394           equal
## 1395         bulbous
## 1396           equal
## 1397           equal
## 1398           equal
## 1399           equal
## 1400           equal
## 1401          rooted
## 1402         bulbous
## 1403           equal
## 1404           equal
## 1405           equal
## 1406           equal
## 1407           equal
## 1408           equal
## 1409           equal
## 1410           equal
## 1411           equal
## 1412           equal
## 1413           equal
## 1414           equal
## 1415           equal
## 1416            club
## 1417           equal
## 1418           equal
## 1419           equal
## 1420           equal
## 1421           equal
## 1422         bulbous
## 1423           equal
## 1424           equal
## 1425           equal
## 1426           equal
## 1427           equal
## 1428          rooted
## 1429           equal
## 1430           equal
## 1431         bulbous
## 1432           equal
## 1433           equal
## 1434           equal
## 1435         bulbous
## 1436            club
## 1437           equal
## 1438           equal
## 1439           equal
## 1440         bulbous
## 1441           equal
## 1442           equal
## 1443           equal
## 1444           equal
## 1445           equal
## 1446           equal
## 1447           equal
## 1448         bulbous
## 1449           equal
## 1450           equal
## 1451           equal
## 1452           equal
## 1453           equal
## 1454           equal
## 1455           equal
## 1456           equal
## 1457         bulbous
## 1458           equal
## 1459           equal
## 1460         bulbous
## 1461           equal
## 1462           equal
## 1463         bulbous
## 1464           equal
## 1465         bulbous
## 1466         bulbous
## 1467         bulbous
## 1468           equal
## 1469           equal
## 1470         bulbous
## 1471           equal
## 1472           equal
## 1473           equal
## 1474           equal
## 1475           equal
## 1476           equal
## 1477           equal
## 1478           equal
## 1479           equal
## 1480           equal
## 1481           equal
## 1482           equal
## 1483           equal
## 1484          rooted
## 1485           equal
## 1486           equal
## 1487           equal
## 1488           equal
## 1489           equal
## 1490           equal
## 1491           equal
## 1492           equal
## 1493           equal
## 1494           equal
## 1495           equal
## 1496           equal
## 1497           equal
## 1498           equal
## 1499           equal
## 1500           equal
## 1501            club
## 1502           equal
## 1503           equal
## 1504           equal
## 1505         bulbous
## 1506           equal
## 1507         bulbous
## 1508           equal
## 1509         bulbous
## 1510           equal
## 1511           equal
## 1512           equal
## 1513            club
## 1514         bulbous
## 1515           equal
## 1516           equal
## 1517           equal
## 1518            club
## 1519           equal
## 1520            club
## 1521           equal
## 1522           equal
## 1523           equal
## 1524           equal
## 1525           equal
## 1526         bulbous
## 1527           equal
## 1528            club
## 1529           equal
## 1530           equal
## 1531           equal
## 1532           equal
## 1533           equal
## 1534           equal
## 1535           equal
## 1536           equal
## 1537           equal
## 1538           equal
## 1539           equal
## 1540           equal
## 1541           equal
## 1542           equal
## 1543           equal
## 1544           equal
## 1545         bulbous
## 1546           equal
## 1547           equal
## 1548          rooted
## 1549           equal
## 1550           equal
## 1551            club
## 1552           equal
## 1553           equal
## 1554           equal
## 1555           equal
## 1556           equal
## 1557            club
## 1558           equal
## 1559           equal
## 1560           equal
## 1561           equal
## 1562           equal
## 1563         bulbous
## 1564            club
## 1565         bulbous
## 1566           equal
## 1567           equal
## 1568           equal
## 1569           equal
## 1570           equal
## 1571           equal
## 1572           equal
## 1573           equal
## 1574            club
## 1575           equal
## 1576           equal
## 1577           equal
## 1578           equal
## 1579           equal
## 1580           equal
## 1581         bulbous
## 1582           equal
## 1583           equal
## 1584           equal
## 1585           equal
## 1586         bulbous
## 1587           equal
## 1588          rooted
## 1589           equal
## 1590           equal
## 1591           equal
## 1592           equal
## 1593           equal
## 1594           equal
## 1595           equal
## 1596         bulbous
## 1597           equal
## 1598           equal
## 1599          rooted
## 1600         bulbous
## 1601           equal
## 1602           equal
## 1603           equal
## 1604           equal
## 1605           equal
## 1606           equal
## 1607           equal
## 1608         bulbous
## 1609           equal
## 1610           equal
## 1611           equal
## 1612           equal
## 1613           equal
## 1614           equal
## 1615         bulbous
## 1616           equal
## 1617           equal
## 1618           equal
## 1619           equal
## 1620           equal
## 1621           equal
## 1622           equal
## 1623           equal
## 1624         bulbous
## 1625           equal
## 1626           equal
## 1627         bulbous
## 1628           equal
## 1629           equal
## 1630           equal
## 1631           equal
## 1632           equal
## 1633           equal
## 1634           equal
## 1635           equal
## 1636           equal
## 1637           equal
## 1638           equal
## 1639           equal
## 1640           equal
## 1641         bulbous
## 1642         bulbous
## 1643           equal
## 1644           equal
## 1645           equal
## 1646            club
## 1647           equal
## 1648           equal
## 1649           equal
## 1650           equal
## 1651           equal
## 1652           equal
## 1653           equal
## 1654           equal
## 1655           equal
## 1656           equal
## 1657           equal
## 1658           equal
## 1659           equal
## 1660           equal
## 1661           equal
## 1662            club
## 1663            club
## 1664           equal
## 1665           equal
## 1666           equal
## 1667           equal
## 1668         bulbous
## 1669           equal
## 1670            club
## 1671            club
## 1672          rooted
## 1673           equal
## 1674           equal
## 1675           equal
## 1676           equal
## 1677           equal
## 1678           equal
## 1679           equal
## 1680            club
## 1681           equal
## 1682            club
## 1683           equal
## 1684           equal
## 1685           equal
## 1686           equal
## 1687           equal
## 1688         bulbous
## 1689         bulbous
## 1690          rooted
## 1691         bulbous
## 1692           equal
## 1693           equal
## 1694           equal
## 1695           equal
## 1696           equal
## 1697           equal
## 1698           equal
## 1699           equal
## 1700         bulbous
## 1701           equal
## 1702           equal
## 1703           equal
## 1704         bulbous
## 1705           equal
## 1706           equal
## 1707           equal
## 1708           equal
## 1709         bulbous
## 1710           equal
## 1711           equal
## 1712         bulbous
## 1713           equal
## 1714           equal
## 1715         bulbous
## 1716            club
## 1717            club
## 1718           equal
## 1719           equal
## 1720           equal
## 1721           equal
## 1722           equal
## 1723           equal
## 1724            club
## 1725           equal
## 1726           equal
## 1727           equal
## 1728          rooted
## 1729           equal
## 1730           equal
## 1731           equal
## 1732           equal
## 1733           equal
## 1734           equal
## 1735           equal
## 1736           equal
## 1737         bulbous
## 1738           equal
## 1739           equal
## 1740           equal
## 1741           equal
## 1742           equal
## 1743           equal
## 1744          rooted
## 1745           equal
## 1746           equal
## 1747           equal
## 1748           equal
## 1749           equal
## 1750           equal
## 1751          rooted
## 1752           equal
## 1753           equal
## 1754           equal
## 1755           equal
## 1756           equal
## 1757           equal
## 1758         bulbous
## 1759           equal
## 1760           equal
## 1761           equal
## 1762           equal
## 1763         bulbous
## 1764           equal
## 1765           equal
## 1766           equal
## 1767           equal
## 1768         bulbous
## 1769          rooted
## 1770           equal
## 1771           equal
## 1772           equal
## 1773            club
## 1774         bulbous
## 1775           equal
## 1776           equal
## 1777           equal
## 1778           equal
## 1779           equal
## 1780           equal
## 1781           equal
## 1782           equal
## 1783           equal
## 1784            club
## 1785           equal
## 1786           equal
## 1787           equal
## 1788           equal
## 1789           equal
## 1790           equal
## 1791           equal
## 1792           equal
## 1793           equal
## 1794           equal
## 1795           equal
## 1796           equal
## 1797           equal
## 1798           equal
## 1799           equal
## 1800         bulbous
## 1801           equal
## 1802         bulbous
## 1803         bulbous
## 1804         bulbous
## 1805         bulbous
## 1806           equal
## 1807         bulbous
## 1808         bulbous
## 1809           equal
## 1810           equal
## 1811         bulbous
## 1812           equal
## 1813            club
## 1814           equal
## 1815            club
## 1816         bulbous
## 1817           equal
## 1818           equal
## 1819         bulbous
## 1820           equal
## 1821           equal
## 1822           equal
## 1823         bulbous
## 1824            club
## 1825           equal
## 1826         bulbous
## 1827           equal
## 1828           equal
## 1829         bulbous
## 1830         bulbous
## 1831         bulbous
## 1832           equal
## 1833         bulbous
## 1834         bulbous
## 1835         bulbous
## 1836         bulbous
## 1837           equal
## 1838         bulbous
## 1839           equal
## 1840           equal
## 1841           equal
## 1842         bulbous
## 1843           equal
## 1844         bulbous
## 1845           equal
## 1846           equal
## 1847         bulbous
## 1848         bulbous
## 1849         bulbous
## 1850         bulbous
## 1851           equal
## 1852         bulbous
## 1853         bulbous
## 1854         bulbous
## 1855         bulbous
## 1856         bulbous
## 1857         bulbous
## 1858           equal
## 1859           equal
## 1860         bulbous
## 1861         bulbous
## 1862           equal
## 1863         bulbous
## 1864           equal
## 1865         bulbous
## 1866         bulbous
## 1867           equal
## 1868           equal
## 1869           equal
## 1870           equal
## 1871         bulbous
## 1872           equal
## 1873           equal
## 1874         bulbous
## 1875         bulbous
## 1876         bulbous
## 1877         bulbous
## 1878           equal
## 1879           equal
## 1880           equal
## 1881           equal
## 1882         bulbous
## 1883         bulbous
## 1884         bulbous
## 1885         bulbous
## 1886           equal
## 1887           equal
## 1888         bulbous
## 1889         bulbous
## 1890           equal
## 1891           equal
## 1892           equal
## 1893           equal
## 1894           equal
## 1895         bulbous
## 1896         bulbous
## 1897           equal
## 1898           equal
## 1899           equal
## 1900         bulbous
## 1901           equal
## 1902           equal
## 1903           equal
## 1904           equal
## 1905           equal
## 1906           equal
## 1907         bulbous
## 1908           equal
## 1909           equal
## 1910         bulbous
## 1911         bulbous
## 1912         bulbous
## 1913           equal
## 1914           equal
## 1915          rooted
## 1916           equal
## 1917           equal
## 1918           equal
## 1919         bulbous
## 1920         bulbous
## 1921           equal
## 1922           equal
## 1923           equal
## 1924         bulbous
## 1925         bulbous
## 1926           equal
## 1927           equal
## 1928           equal
## 1929           equal
## 1930           equal
## 1931            club
## 1932         bulbous
## 1933           equal
## 1934           equal
## 1935           equal
## 1936         bulbous
## 1937           equal
## 1938           equal
## 1939           equal
## 1940         bulbous
## 1941         bulbous
## 1942         bulbous
## 1943           equal
## 1944           equal
## 1945           equal
## 1946           equal
## 1947         bulbous
## 1948         bulbous
## 1949           equal
## 1950         bulbous
## 1951         bulbous
## 1952         bulbous
## 1953         bulbous
## 1954         bulbous
## 1955           equal
## 1956           equal
## 1957         bulbous
## 1958         bulbous
## 1959           equal
## 1960         bulbous
## 1961           equal
## 1962         bulbous
## 1963           equal
## 1964           equal
## 1965           equal
## 1966         bulbous
## 1967           equal
## 1968         bulbous
## 1969           equal
## 1970           equal
## 1971           equal
## 1972           equal
## 1973         bulbous
## 1974           equal
## 1975           equal
## 1976         bulbous
## 1977         bulbous
## 1978           equal
## 1979         bulbous
## 1980           equal
## 1981           equal
## 1982            club
## 1983           equal
## 1984         bulbous
## 1985         bulbous
## 1986           equal
## 1987           equal
## 1988         bulbous
## 1989           equal
## 1990           equal
## 1991         bulbous
## 1992           equal
## 1993         bulbous
## 1994           equal
## 1995         bulbous
## 1996           equal
## 1997           equal
## 1998           equal
## 1999           equal
## 2000         bulbous
## 2001         bulbous
## 2002           equal
## 2003         bulbous
## 2004           equal
## 2005          rooted
## 2006           equal
## 2007           equal
## 2008           equal
## 2009           equal
## 2010           equal
## 2011           equal
## 2012         bulbous
## 2013           equal
## 2014           equal
## 2015           equal
## 2016           equal
## 2017         bulbous
## 2018         bulbous
## 2019           equal
## 2020         bulbous
## 2021         bulbous
## 2022         bulbous
## 2023           equal
## 2024         bulbous
## 2025         bulbous
## 2026           equal
## 2027         bulbous
## 2028           equal
## 2029            club
## 2030         bulbous
## 2031           equal
## 2032         bulbous
## 2033         bulbous
## 2034         bulbous
## 2035           equal
## 2036           equal
## 2037           equal
## 2038           equal
## 2039         bulbous
## 2040         bulbous
## 2041         bulbous
## 2042           equal
## 2043           equal
## 2044           equal
## 2045          rooted
## 2046         bulbous
## 2047           equal
## 2048         bulbous
## 2049         bulbous
## 2050           equal
## 2051            club
## 2052           equal
## 2053           equal
## 2054         bulbous
## 2055           equal
## 2056         bulbous
## 2057         bulbous
## 2058           equal
## 2059            club
## 2060           equal
## 2061           equal
## 2062           equal
## 2063         bulbous
## 2064           equal
## 2065         bulbous
## 2066         bulbous
## 2067           equal
## 2068           equal
## 2069         bulbous
## 2070         bulbous
## 2071         bulbous
## 2072         bulbous
## 2073         bulbous
## 2074           equal
## 2075            club
## 2076         bulbous
## 2077         bulbous
## 2078           equal
## 2079         bulbous
## 2080           equal
## 2081           equal
## 2082         bulbous
## 2083         bulbous
## 2084           equal
## 2085           equal
## 2086           equal
## 2087         bulbous
## 2088         bulbous
## 2089           equal
## 2090         bulbous
## 2091           equal
## 2092            club
## 2093           equal
## 2094           equal
## 2095         bulbous
## 2096         bulbous
## 2097           equal
## 2098           equal
## 2099           equal
## 2100         bulbous
## 2101         bulbous
## 2102         bulbous
## 2103         bulbous
## 2104         bulbous
## 2105         bulbous
## 2106         bulbous
## 2107         bulbous
## 2108         bulbous
## 2109         bulbous
## 2110         bulbous
## 2111         bulbous
## 2112           equal
## 2113         bulbous
## 2114         bulbous
## 2115         bulbous
## 2116         bulbous
## 2117         bulbous
## 2118         bulbous
## 2119         bulbous
## 2120         bulbous
## 2121         bulbous
## 2122         bulbous
## 2123         bulbous
## 2124         bulbous
## 2125         bulbous
## 2126         bulbous
## 2127         bulbous
## 2128         bulbous
## 2129           equal
## 2130         bulbous
## 2131           equal
## 2132         bulbous
## 2133         bulbous
## 2134         bulbous
## 2135         bulbous
## 2136         bulbous
## 2137         bulbous
## 2138         bulbous
## 2139         bulbous
## 2140         bulbous
## 2141         bulbous
## 2142         bulbous
## 2143         bulbous
## 2144         bulbous
## 2145         bulbous
## 2146         bulbous
## 2147           equal
## 2148         bulbous
## 2149           equal
## 2150         bulbous
## 2151         bulbous
## 2152         bulbous
## 2153         bulbous
## 2154         bulbous
## 2155         bulbous
## 2156         bulbous
## 2157         bulbous
## 2158         bulbous
## 2159         bulbous
## 2160         bulbous
## 2161         bulbous
## 2162         bulbous
## 2163         bulbous
## 2164         bulbous
## 2165         bulbous
## 2166         bulbous
## 2167         bulbous
## 2168         bulbous
## 2169         bulbous
## 2170         bulbous
## 2171         bulbous
## 2172         bulbous
## 2173         bulbous
## 2174         bulbous
## 2175         bulbous
## 2176         bulbous
## 2177         bulbous
## 2178         bulbous
## 2179         bulbous
## 2180         bulbous
## 2181         bulbous
## 2182         bulbous
## 2183         bulbous
## 2184         bulbous
## 2185         bulbous
## 2186         bulbous
## 2187         bulbous
## 2188         bulbous
## 2189         bulbous
## 2190         bulbous
## 2191         bulbous
## 2192           equal
## 2193         bulbous
## 2194         bulbous
## 2195         bulbous
## 2196         bulbous
## 2197         bulbous
## 2198         bulbous
## 2199         bulbous
## 2200           equal
## 2201         bulbous
## 2202         bulbous
## 2203         bulbous
## 2204         bulbous
## 2205         bulbous
## 2206         bulbous
## 2207         bulbous
## 2208         bulbous
## 2209         bulbous
## 2210         bulbous
## 2211         bulbous
## 2212         bulbous
## 2213         bulbous
## 2214         bulbous
## 2215         bulbous
## 2216         bulbous
## 2217         bulbous
## 2218         bulbous
## 2219         bulbous
## 2220         bulbous
## 2221         bulbous
## 2222         bulbous
## 2223         bulbous
## 2224         bulbous
## 2225         bulbous
## 2226         bulbous
## 2227           equal
## 2228         bulbous
## 2229         bulbous
## 2230         bulbous
## 2231         bulbous
## 2232         bulbous
## 2233         bulbous
## 2234         bulbous
## 2235         bulbous
## 2236         bulbous
## 2237           equal
## 2238         bulbous
## 2239         bulbous
## 2240         bulbous
## 2241           equal
## 2242         bulbous
## 2243         bulbous
## 2244         bulbous
## 2245         bulbous
## 2246         bulbous
## 2247           equal
## 2248         bulbous
## 2249         bulbous
## 2250         bulbous
## 2251         bulbous
## 2252           equal
## 2253         bulbous
## 2254         bulbous
## 2255         bulbous
## 2256         bulbous
## 2257         bulbous
## 2258         bulbous
## 2259         bulbous
## 2260           equal
## 2261         bulbous
## 2262         bulbous
## 2263         bulbous
## 2264         bulbous
## 2265         bulbous
## 2266           equal
## 2267         bulbous
## 2268         bulbous
## 2269         bulbous
## 2270         bulbous
## 2271           equal
## 2272         bulbous
## 2273         bulbous
## 2274         bulbous
## 2275         bulbous
## 2276         bulbous
## 2277         bulbous
## 2278         bulbous
## 2279         bulbous
## 2280         bulbous
## 2281         bulbous
## 2282         bulbous
## 2283         bulbous
## 2284         bulbous
## 2285         bulbous
## 2286         bulbous
## 2287         bulbous
## 2288           equal
## 2289         bulbous
## 2290         bulbous
## 2291         bulbous
## 2292         bulbous
## 2293         bulbous
## 2294         bulbous
## 2295           equal
## 2296         bulbous
## 2297           equal
## 2298         bulbous
## 2299         bulbous
## 2300         bulbous
## 2301         bulbous
## 2302         bulbous
## 2303         bulbous
## 2304         bulbous
## 2305         bulbous
## 2306         bulbous
## 2307         bulbous
## 2308         bulbous
## 2309         bulbous
## 2310         bulbous
## 2311         bulbous
## 2312         bulbous
## 2313         bulbous
## 2314         bulbous
## 2315         bulbous
## 2316         bulbous
## 2317         bulbous
## 2318         bulbous
## 2319         bulbous
## 2320         bulbous
## 2321         bulbous
## 2322         bulbous
## 2323         bulbous
## 2324         bulbous
## 2325         bulbous
## 2326         bulbous
## 2327         bulbous
## 2328         bulbous
## 2329         bulbous
## 2330         bulbous
## 2331         bulbous
## 2332         bulbous
## 2333         bulbous
## 2334         bulbous
## 2335         bulbous
## 2336         bulbous
## 2337         bulbous
## 2338         bulbous
## 2339         bulbous
## 2340         bulbous
## 2341         bulbous
## 2342         bulbous
## 2343         bulbous
## 2344         bulbous
## 2345         bulbous
## 2346           equal
## 2347         bulbous
## 2348           equal
## 2349         bulbous
## 2350         bulbous
## 2351           equal
## 2352         bulbous
## 2353         bulbous
## 2354         bulbous
## 2355         bulbous
## 2356         bulbous
## 2357         bulbous
## 2358         bulbous
## 2359         bulbous
## 2360         bulbous
## 2361         bulbous
## 2362         bulbous
## 2363         bulbous
## 2364         bulbous
## 2365         bulbous
## 2366         bulbous
## 2367           equal
## 2368         bulbous
## 2369         bulbous
## 2370         bulbous
## 2371         bulbous
## 2372         bulbous
## 2373         bulbous
## 2374         bulbous
## 2375           equal
## 2376         bulbous
## 2377           equal
## 2378           equal
## 2379         bulbous
## 2380         bulbous
## 2381         bulbous
## 2382         bulbous
## 2383         bulbous
## 2384         bulbous
## 2385         bulbous
## 2386         bulbous
## 2387           equal
## 2388           equal
## 2389         bulbous
## 2390         bulbous
## 2391         bulbous
## 2392         bulbous
## 2393         bulbous
## 2394         bulbous
## 2395         bulbous
## 2396         bulbous
## 2397         bulbous
## 2398         bulbous
## 2399         bulbous
## 2400           equal
## 2401         bulbous
## 2402         bulbous
## 2403         bulbous
## 2404         bulbous
## 2405         bulbous
## 2406         bulbous
## 2407         bulbous
## 2408         bulbous
## 2409         bulbous
## 2410         bulbous
## 2411         bulbous
## 2412         bulbous
## 2413         bulbous
## 2414         bulbous
## 2415         bulbous
## 2416         bulbous
## 2417         bulbous
## 2418         bulbous
## 2419         bulbous
## 2420         bulbous
## 2421         bulbous
## 2422         bulbous
## 2423         bulbous
## 2424         bulbous
## 2425         bulbous
## 2426         bulbous
## 2427         bulbous
## 2428         bulbous
## 2429         bulbous
## 2430         bulbous
## 2431         bulbous
## 2432         bulbous
## 2433         bulbous
## 2434         bulbous
## 2435         bulbous
## 2436         bulbous
## 2437         bulbous
## 2438         bulbous
## 2439         bulbous
## 2440         bulbous
## 2441         bulbous
## 2442         bulbous
## 2443         bulbous
## 2444         bulbous
## 2445         bulbous
## 2446         bulbous
## 2447         bulbous
## 2448         bulbous
## 2449         bulbous
## 2450         bulbous
## 2451         bulbous
## 2452           equal
## 2453         bulbous
## 2454         bulbous
## 2455         bulbous
## 2456         bulbous
## 2457         bulbous
## 2458         bulbous
## 2459         bulbous
## 2460         bulbous
## 2461         bulbous
## 2462         bulbous
## 2463         bulbous
## 2464         bulbous
## 2465         bulbous
## 2466         bulbous
## 2467         bulbous
## 2468         bulbous
## 2469         bulbous
## 2470         bulbous
## 2471         bulbous
## 2472         bulbous
## 2473         bulbous
## 2474         bulbous
## 2475         bulbous
## 2476         bulbous
## 2477         bulbous
## 2478           equal
## 2479           equal
## 2480         bulbous
## 2481         bulbous
## 2482         bulbous
## 2483         bulbous
## 2484         bulbous
## 2485         bulbous
## 2486         bulbous
## 2487           equal
## 2488         bulbous
## 2489         bulbous
## 2490         bulbous
## 2491         bulbous
## 2492         bulbous
## 2493         bulbous
## 2494         bulbous
## 2495           equal
## 2496         bulbous
## 2497         bulbous
## 2498         bulbous
## 2499         bulbous
## 2500           equal
## 2501           equal
## 2502         bulbous
## 2503         bulbous
## 2504         bulbous
## 2505         bulbous
## 2506         bulbous
## 2507         bulbous
## 2508         bulbous
## 2509         bulbous
## 2510         bulbous
## 2511         bulbous
## 2512         bulbous
## 2513         bulbous
## 2514         bulbous
## 2515         bulbous
## 2516         bulbous
## 2517         bulbous
## 2518           equal
## 2519         bulbous
## 2520         bulbous
## 2521         bulbous
## 2522         bulbous
## 2523         bulbous
## 2524         bulbous
## 2525         bulbous
## 2526         bulbous
## 2527         bulbous
## 2528         bulbous
## 2529         bulbous
## 2530         bulbous
## 2531         bulbous
## 2532         bulbous
## 2533         bulbous
## 2534         bulbous
## 2535         bulbous
## 2536         bulbous
## 2537         bulbous
## 2538         bulbous
## 2539         bulbous
## 2540         bulbous
## 2541         bulbous
## 2542         bulbous
## 2543         bulbous
## 2544         bulbous
## 2545         bulbous
## 2546         bulbous
## 2547         bulbous
## 2548         bulbous
## 2549         bulbous
## 2550         bulbous
## 2551         bulbous
## 2552         bulbous
## 2553         bulbous
## 2554         bulbous
## 2555         bulbous
## 2556         bulbous
## 2557         bulbous
## 2558         bulbous
## 2559         bulbous
## 2560         bulbous
## 2561         bulbous
## 2562         bulbous
## 2563         bulbous
## 2564         bulbous
## 2565         bulbous
## 2566         bulbous
## 2567         bulbous
## 2568         bulbous
## 2569         bulbous
## 2570         bulbous
## 2571         bulbous
## 2572         bulbous
## 2573         bulbous
## 2574         bulbous
## 2575         bulbous
## 2576         bulbous
## 2577         bulbous
## 2578         bulbous
## 2579         bulbous
## 2580         bulbous
## 2581         bulbous
## 2582         bulbous
## 2583         bulbous
## 2584         bulbous
## 2585         bulbous
## 2586         bulbous
## 2587         bulbous
## 2588         bulbous
## 2589         bulbous
## 2590         bulbous
## 2591         bulbous
## 2592         bulbous
## 2593         bulbous
## 2594         bulbous
## 2595         bulbous
## 2596         bulbous
## 2597         bulbous
## 2598         bulbous
## 2599         bulbous
## 2600         bulbous
## 2601         bulbous
## 2602         bulbous
## 2603         bulbous
## 2604         bulbous
## 2605         bulbous
## 2606         bulbous
## 2607         bulbous
## 2608         bulbous
## 2609         bulbous
## 2610         bulbous
## 2611         bulbous
## 2612         bulbous
## 2613         bulbous
## 2614         bulbous
## 2615         bulbous
## 2616         bulbous
## 2617         bulbous
## 2618         bulbous
## 2619         bulbous
## 2620         bulbous
## 2621         bulbous
## 2622         bulbous
## 2623         bulbous
## 2624         bulbous
## 2625         bulbous
## 2626         bulbous
## 2627         bulbous
## 2628         bulbous
## 2629         bulbous
## 2630           equal
## 2631         bulbous
## 2632         bulbous
## 2633         bulbous
## 2634         bulbous
## 2635         bulbous
## 2636         bulbous
## 2637         bulbous
## 2638         bulbous
## 2639         bulbous
## 2640         bulbous
## 2641         bulbous
## 2642         bulbous
## 2643         bulbous
## 2644         bulbous
## 2645         bulbous
## 2646         bulbous
## 2647           equal
## 2648         bulbous
## 2649         bulbous
## 2650         bulbous
## 2651         bulbous
## 2652         bulbous
## 2653         bulbous
## 2654         bulbous
## 2655         bulbous
## 2656         bulbous
## 2657         bulbous
## 2658         bulbous
## 2659         bulbous
## 2660         bulbous
## 2661         bulbous
## 2662         bulbous
## 2663         bulbous
## 2664         bulbous
## 2665         bulbous
## 2666         bulbous
## 2667         bulbous
## 2668         bulbous
## 2669         bulbous
## 2670         bulbous
## 2671         bulbous
## 2672         bulbous
## 2673         bulbous
## 2674         bulbous
## 2675         bulbous
## 2676         bulbous
## 2677         bulbous
## 2678         bulbous
## 2679         bulbous
## 2680         bulbous
## 2681         bulbous
## 2682         bulbous
## 2683         bulbous
## 2684         bulbous
## 2685         bulbous
## 2686         bulbous
## 2687         bulbous
## 2688         bulbous
## 2689         bulbous
## 2690           equal
## 2691         bulbous
## 2692         bulbous
## 2693         bulbous
## 2694         bulbous
## 2695         bulbous
## 2696         bulbous
## 2697         bulbous
## 2698         bulbous
## 2699         bulbous
## 2700         bulbous
## 2701         bulbous
## 2702         bulbous
## 2703         bulbous
## 2704         bulbous
## 2705         bulbous
## 2706         bulbous
## 2707         bulbous
## 2708         bulbous
## 2709         bulbous
## 2710         bulbous
## 2711         bulbous
## 2712         bulbous
## 2713         bulbous
## 2714         bulbous
## 2715         bulbous
## 2716         bulbous
## 2717         bulbous
## 2718         bulbous
## 2719         bulbous
## 2720         bulbous
## 2721         bulbous
## 2722         bulbous
## 2723         bulbous
## 2724         bulbous
## 2725         bulbous
## 2726         bulbous
## 2727         bulbous
## 2728         bulbous
## 2729         bulbous
## 2730           equal
## 2731         bulbous
## 2732         bulbous
## 2733         bulbous
## 2734         bulbous
## 2735         bulbous
## 2736         bulbous
## 2737         bulbous
## 2738         bulbous
## 2739         bulbous
## 2740         bulbous
## 2741         bulbous
## 2742         bulbous
## 2743         bulbous
## 2744         bulbous
## 2745         bulbous
## 2746         bulbous
## 2747         bulbous
## 2748         bulbous
## 2749         bulbous
## 2750         bulbous
## 2751         bulbous
## 2752         bulbous
## 2753         bulbous
## 2754         bulbous
## 2755         bulbous
## 2756         bulbous
## 2757         bulbous
## 2758         bulbous
## 2759         bulbous
## 2760         bulbous
## 2761         bulbous
## 2762         bulbous
## 2763         bulbous
## 2764         bulbous
## 2765         bulbous
## 2766         bulbous
## 2767         bulbous
## 2768         bulbous
## 2769         bulbous
## 2770         bulbous
## 2771         bulbous
## 2772         bulbous
## 2773         bulbous
## 2774         bulbous
## 2775         bulbous
## 2776         bulbous
## 2777         bulbous
## 2778         bulbous
## 2779         bulbous
## 2780         bulbous
## 2781         bulbous
## 2782         bulbous
## 2783         bulbous
## 2784         bulbous
## 2785         bulbous
## 2786         bulbous
## 2787         bulbous
## 2788           equal
## 2789         bulbous
## 2790         bulbous
## 2791         bulbous
## 2792         bulbous
## 2793         bulbous
## 2794         bulbous
## 2795         bulbous
## 2796         bulbous
## 2797         bulbous
## 2798         bulbous
## 2799         bulbous
## 2800         bulbous
## 2801           equal
## 2802         bulbous
## 2803         bulbous
## 2804         bulbous
## 2805         bulbous
## 2806         bulbous
## 2807         bulbous
## 2808         bulbous
## 2809         bulbous
## 2810         bulbous
## 2811         bulbous
## 2812         bulbous
## 2813         bulbous
## 2814         bulbous
## 2815         bulbous
## 2816         bulbous
## 2817           equal
## 2818         bulbous
## 2819         bulbous
## 2820         bulbous
## 2821         bulbous
## 2822         bulbous
## 2823         bulbous
## 2824         bulbous
## 2825         bulbous
## 2826         bulbous
## 2827         bulbous
## 2828         bulbous
## 2829         bulbous
## 2830         bulbous
## 2831         bulbous
## 2832         bulbous
## 2833         bulbous
## 2834         bulbous
## 2835         bulbous
## 2836         bulbous
## 2837         bulbous
## 2838         bulbous
## 2839         bulbous
## 2840         bulbous
## 2841         bulbous
## 2842         bulbous
## 2843         bulbous
## 2844           equal
## 2845         bulbous
## 2846         bulbous
## 2847         bulbous
## 2848         bulbous
## 2849         bulbous
## 2850         bulbous
## 2851         bulbous
## 2852         bulbous
## 2853         bulbous
## 2854         bulbous
## 2855         bulbous
## 2856         bulbous
## 2857         bulbous
## 2858         bulbous
## 2859         bulbous
## 2860         bulbous
## 2861         bulbous
## 2862         bulbous
## 2863         bulbous
## 2864         bulbous
## 2865         bulbous
## 2866         bulbous
## 2867         bulbous
## 2868         bulbous
## 2869         bulbous
## 2870         bulbous
## 2871         bulbous
## 2872         bulbous
## 2873         bulbous
## 2874         bulbous
## 2875         bulbous
## 2876         bulbous
## 2877         bulbous
## 2878         bulbous
## 2879         bulbous
## 2880         bulbous
## 2881           equal
## 2882         bulbous
## 2883         bulbous
## 2884         bulbous
## 2885         bulbous
## 2886         bulbous
## 2887         bulbous
## 2888         bulbous
## 2889         bulbous
## 2890           equal
## 2891         bulbous
## 2892         bulbous
## 2893         bulbous
## 2894         bulbous
## 2895         bulbous
## 2896         bulbous
## 2897         bulbous
## 2898         bulbous
## 2899         bulbous
## 2900         bulbous
## 2901         bulbous
## 2902         bulbous
## 2903         bulbous
## 2904         bulbous
## 2905         bulbous
## 2906         bulbous
## 2907         bulbous
## 2908         bulbous
## 2909         bulbous
## 2910         bulbous
## 2911         bulbous
## 2912         bulbous
## 2913         bulbous
## 2914         bulbous
## 2915         bulbous
## 2916         bulbous
## 2917         bulbous
## 2918         bulbous
## 2919         bulbous
## 2920         bulbous
## 2921         bulbous
## 2922         bulbous
## 2923         bulbous
## 2924         bulbous
## 2925         bulbous
## 2926         bulbous
## 2927         bulbous
## 2928         bulbous
## 2929         bulbous
## 2930         bulbous
## 2931         bulbous
## 2932         bulbous
## 2933         bulbous
## 2934         bulbous
## 2935         bulbous
## 2936         bulbous
## 2937         bulbous
## 2938         bulbous
## 2939         bulbous
## 2940         bulbous
## 2941         bulbous
## 2942         bulbous
## 2943         bulbous
## 2944         bulbous
## 2945         bulbous
## 2946         bulbous
## 2947         bulbous
## 2948         bulbous
## 2949         bulbous
## 2950         bulbous
## 2951         bulbous
## 2952         bulbous
## 2953         bulbous
## 2954         bulbous
## 2955         bulbous
## 2956         bulbous
## 2957         bulbous
## 2958         bulbous
## 2959         bulbous
## 2960         bulbous
## 2961         bulbous
## 2962         bulbous
## 2963         bulbous
## 2964         bulbous
## 2965         bulbous
## 2966           equal
## 2967         bulbous
## 2968         bulbous
## 2969         bulbous
## 2970         bulbous
## 2971         bulbous
## 2972         bulbous
## 2973         bulbous
## 2974         bulbous
## 2975         bulbous
## 2976         bulbous
## 2977         bulbous
## 2978         bulbous
## 2979         bulbous
## 2980         bulbous
## 2981         bulbous
## 2982         bulbous
## 2983         bulbous
## 2984         bulbous
## 2985         bulbous
## 2986         bulbous
## 2987         bulbous
## 2988         bulbous
## 2989         bulbous
## 2990         bulbous
## 2991         bulbous
## 2992         bulbous
## 2993         bulbous
## 2994         bulbous
## 2995         bulbous
## 2996         bulbous
## 2997         bulbous
## 2998         bulbous
## 2999         bulbous
## 3000         bulbous
## 3001         bulbous
## 3002         bulbous
## 3003         bulbous
## 3004         bulbous
## 3005         bulbous
## 3006         bulbous
## 3007         bulbous
## 3008         bulbous
## 3009         bulbous
## 3010         bulbous
## 3011         bulbous
## 3012         bulbous
## 3013         bulbous
## 3014         bulbous
## 3015         bulbous
## 3016         bulbous
## 3017         bulbous
## 3018         bulbous
## 3019         bulbous
## 3020         bulbous
## 3021         bulbous
## 3022         bulbous
## 3023         bulbous
## 3024         bulbous
## 3025         bulbous
## 3026         bulbous
## 3027         bulbous
## 3028         bulbous
## 3029         bulbous
## 3030         bulbous
## 3031         bulbous
## 3032         bulbous
## 3033         bulbous
## 3034         bulbous
## 3035         bulbous
## 3036         bulbous
## 3037         bulbous
## 3038         bulbous
## 3039         bulbous
## 3040         bulbous
## 3041         bulbous
## 3042         bulbous
## 3043         bulbous
## 3044         bulbous
## 3045         bulbous
## 3046         bulbous
## 3047         bulbous
## 3048         bulbous
## 3049         bulbous
## 3050         bulbous
## 3051         bulbous
## 3052         bulbous
## 3053         bulbous
## 3054         bulbous
## 3055         bulbous
## 3056         bulbous
## 3057         bulbous
## 3058         bulbous
## 3059         bulbous
## 3060         bulbous
## 3061         bulbous
## 3062         bulbous
## 3063         bulbous
## 3064         bulbous
## 3065         bulbous
## 3066         bulbous
## 3067         bulbous
## 3068         bulbous
## 3069         bulbous
## 3070         bulbous
## 3071         bulbous
## 3072         bulbous
## 3073         bulbous
## 3074         bulbous
## 3075         bulbous
## 3076         bulbous
## 3077         bulbous
## 3078         bulbous
## 3079         bulbous
## 3080         bulbous
## 3081         bulbous
## 3082         bulbous
## 3083         bulbous
## 3084         bulbous
## 3085         bulbous
## 3086         bulbous
## 3087         bulbous
## 3088         bulbous
## 3089         bulbous
## 3090         bulbous
## 3091         bulbous
## 3092         bulbous
## 3093         bulbous
## 3094         bulbous
## 3095         bulbous
## 3096         bulbous
## 3097         bulbous
## 3098         bulbous
## 3099         bulbous
## 3100         bulbous
## 3101         bulbous
## 3102         bulbous
## 3103         bulbous
## 3104         bulbous
## 3105         bulbous
## 3106         bulbous
## 3107         bulbous
## 3108         bulbous
## 3109         bulbous
## 3110         bulbous
## 3111         bulbous
## 3112         bulbous
## 3113         bulbous
## 3114         bulbous
## 3115         bulbous
## 3116         bulbous
## 3117         bulbous
## 3118         bulbous
## 3119         bulbous
## 3120         bulbous
## 3121         bulbous
## 3122         bulbous
## 3123         bulbous
## 3124         bulbous
## 3125         bulbous
## 3126         bulbous
## 3127         bulbous
## 3128         bulbous
## 3129         bulbous
## 3130         bulbous
## 3131         bulbous
## 3132         bulbous
## 3133         bulbous
## 3134         bulbous
## 3135         bulbous
## 3136         bulbous
## 3137         bulbous
## 3138         bulbous
## 3139         bulbous
## 3140         bulbous
## 3141         bulbous
## 3142         bulbous
## 3143         bulbous
## 3144         bulbous
## 3145         bulbous
## 3146         bulbous
## 3147         bulbous
## 3148         bulbous
## 3149         bulbous
## 3150         bulbous
## 3151         bulbous
## 3152         bulbous
## 3153         bulbous
## 3154         bulbous
## 3155         bulbous
## 3156         bulbous
## 3157         bulbous
## 3158         bulbous
## 3159         bulbous
## 3160         bulbous
## 3161         bulbous
## 3162         bulbous
## 3163         bulbous
## 3164         bulbous
## 3165         bulbous
## 3166         bulbous
## 3167         bulbous
## 3168         bulbous
## 3169         bulbous
## 3170         bulbous
## 3171         bulbous
## 3172         bulbous
## 3173         bulbous
## 3174         bulbous
## 3175         bulbous
## 3176         bulbous
## 3177         bulbous
## 3178         bulbous
## 3179         bulbous
## 3180         bulbous
## 3181         bulbous
## 3182         bulbous
## 3183         bulbous
## 3184         bulbous
## 3185         bulbous
## 3186         bulbous
## 3187         bulbous
## 3188         bulbous
## 3189         bulbous
## 3190         bulbous
## 3191         bulbous
## 3192         bulbous
## 3193         bulbous
## 3194         bulbous
## 3195         bulbous
## 3196         bulbous
## 3197         bulbous
## 3198         bulbous
## 3199         bulbous
## 3200         bulbous
## 3201         bulbous
## 3202         bulbous
## 3203         bulbous
## 3204         bulbous
## 3205         bulbous
## 3206         bulbous
## 3207         bulbous
## 3208         bulbous
## 3209         bulbous
## 3210         bulbous
## 3211         bulbous
## 3212         bulbous
## 3213         bulbous
## 3214         bulbous
## 3215         bulbous
## 3216         bulbous
## 3217         bulbous
## 3218         bulbous
## 3219         bulbous
## 3220         bulbous
## 3221         bulbous
## 3222         bulbous
## 3223         bulbous
## 3224         bulbous
## 3225         bulbous
## 3226         bulbous
## 3227         bulbous
## 3228         bulbous
## 3229         bulbous
## 3230         bulbous
## 3231         bulbous
## 3232         bulbous
## 3233         bulbous
## 3234         bulbous
## 3235         bulbous
## 3236         bulbous
## 3237         bulbous
## 3238         bulbous
## 3239         bulbous
## 3240         bulbous
## 3241         bulbous
## 3242         bulbous
## 3243         bulbous
## 3244         bulbous
## 3245         bulbous
## 3246         bulbous
## 3247         bulbous
## 3248         bulbous
## 3249         bulbous
## 3250         bulbous
## 3251         bulbous
## 3252         bulbous
## 3253         bulbous
## 3254         bulbous
## 3255         bulbous
## 3256         bulbous
## 3257         bulbous
## 3258         bulbous
## 3259         bulbous
## 3260         bulbous
## 3261         bulbous
## 3262         bulbous
## 3263         bulbous
## 3264         bulbous
## 3265         bulbous
## 3266         bulbous
## 3267         bulbous
## 3268         bulbous
## 3269         bulbous
## 3270         bulbous
## 3271         bulbous
## 3272         bulbous
## 3273         bulbous
## 3274         bulbous
## 3275         bulbous
## 3276         bulbous
## 3277         bulbous
## 3278         bulbous
## 3279         bulbous
## 3280         bulbous
## 3281         bulbous
## 3282         bulbous
## 3283         bulbous
## 3284         bulbous
## 3285         bulbous
## 3286         bulbous
## 3287         bulbous
## 3288         bulbous
## 3289         bulbous
## 3290         bulbous
## 3291         bulbous
## 3292         bulbous
## 3293         bulbous
## 3294         bulbous
## 3295         bulbous
## 3296         bulbous
## 3297         bulbous
## 3298         bulbous
## 3299         bulbous
## 3300         bulbous
## 3301         bulbous
## 3302         bulbous
## 3303         bulbous
## 3304         bulbous
## 3305         bulbous
## 3306         bulbous
## 3307         bulbous
## 3308         bulbous
## 3309         bulbous
## 3310         bulbous
## 3311         bulbous
## 3312         bulbous
## 3313         bulbous
## 3314         bulbous
## 3315         bulbous
## 3316         bulbous
## 3317         bulbous
## 3318         bulbous
## 3319         bulbous
## 3320         bulbous
## 3321         bulbous
## 3322         bulbous
## 3323         bulbous
## 3324         bulbous
## 3325         bulbous
## 3326         bulbous
## 3327         bulbous
## 3328         bulbous
## 3329         bulbous
## 3330         bulbous
## 3331         bulbous
## 3332         bulbous
## 3333         bulbous
## 3334         bulbous
## 3335         bulbous
## 3336         bulbous
## 3337         bulbous
## 3338         bulbous
## 3339         bulbous
## 3340         bulbous
## 3341         bulbous
## 3342         bulbous
## 3343         bulbous
## 3344         bulbous
## 3345         bulbous
## 3346         bulbous
## 3347         bulbous
## 3348         bulbous
## 3349         bulbous
## 3350         bulbous
## 3351         bulbous
## 3352         bulbous
## 3353         bulbous
## 3354         bulbous
## 3355         bulbous
## 3356         bulbous
## 3357         bulbous
## 3358         bulbous
## 3359         bulbous
## 3360         bulbous
## 3361         bulbous
## 3362         bulbous
## 3363         bulbous
## 3364         bulbous
## 3365         bulbous
## 3366         bulbous
## 3367         bulbous
## 3368         bulbous
## 3369         bulbous
## 3370         bulbous
## 3371         bulbous
## 3372         bulbous
## 3373         bulbous
## 3374         bulbous
## 3375         bulbous
## 3376         bulbous
## 3377         bulbous
## 3378         bulbous
## 3379         bulbous
## 3380         bulbous
## 3381         bulbous
## 3382         bulbous
## 3383         bulbous
## 3384         bulbous
## 3385         bulbous
## 3386         bulbous
## 3387         bulbous
## 3388         bulbous
## 3389         bulbous
## 3390         bulbous
## 3391         bulbous
## 3392         bulbous
## 3393         bulbous
## 3394         bulbous
## 3395         bulbous
## 3396         bulbous
## 3397         bulbous
## 3398         bulbous
## 3399         bulbous
## 3400         bulbous
## 3401         bulbous
## 3402         bulbous
## 3403         bulbous
## 3404         bulbous
## 3405         bulbous
## 3406         bulbous
## 3407         bulbous
## 3408         bulbous
## 3409         bulbous
## 3410         bulbous
## 3411         bulbous
## 3412         bulbous
## 3413         bulbous
## 3414         bulbous
## 3415         bulbous
## 3416         bulbous
## 3417         bulbous
## 3418         bulbous
## 3419         bulbous
## 3420         bulbous
## 3421         bulbous
## 3422         bulbous
## 3423         bulbous
## 3424         bulbous
## 3425         bulbous
## 3426         bulbous
## 3427         bulbous
## 3428         bulbous
## 3429         bulbous
## 3430         bulbous
## 3431         bulbous
## 3432         bulbous
## 3433         bulbous
## 3434         bulbous
## 3435         bulbous
## 3436         bulbous
## 3437         bulbous
## 3438         bulbous
## 3439         bulbous
## 3440         bulbous
## 3441         bulbous
## 3442         bulbous
## 3443         bulbous
## 3444         bulbous
## 3445         bulbous
## 3446         bulbous
## 3447         bulbous
## 3448         bulbous
## 3449         bulbous
## 3450         bulbous
## 3451         bulbous
## 3452         bulbous
## 3453         bulbous
## 3454         bulbous
## 3455         bulbous
## 3456         bulbous
## 3457         bulbous
## 3458         bulbous
## 3459         bulbous
## 3460         bulbous
## 3461         bulbous
## 3462         bulbous
## 3463         bulbous
## 3464         bulbous
## 3465         bulbous
## 3466         bulbous
## 3467         bulbous
## 3468         bulbous
## 3469         bulbous
## 3470         bulbous
## 3471         bulbous
## 3472         bulbous
## 3473         bulbous
## 3474         bulbous
## 3475         bulbous
## 3476         bulbous
## 3477         bulbous
## 3478         bulbous
## 3479         bulbous
## 3480         bulbous
## 3481         bulbous
## 3482         bulbous
## 3483         bulbous
## 3484         bulbous
## 3485         bulbous
## 3486         bulbous
## 3487         bulbous
## 3488         bulbous
## 3489         bulbous
## 3490         bulbous
## 3491         bulbous
## 3492         bulbous
## 3493         bulbous
## 3494         bulbous
## 3495         bulbous
## 3496         bulbous
## 3497         bulbous
## 3498         bulbous
## 3499         bulbous
## 3500         bulbous
## 3501         bulbous
## 3502         bulbous
## 3503         bulbous
## 3504         bulbous
## 3505         bulbous
## 3506         bulbous
## 3507         bulbous
## 3508         bulbous
## 3509         bulbous
## 3510         bulbous
## 3511         bulbous
## 3512         bulbous
## 3513         bulbous
## 3514         bulbous
## 3515         bulbous
## 3516         bulbous
## 3517         bulbous
## 3518         bulbous
## 3519         bulbous
## 3520         bulbous
## 3521         bulbous
## 3522         bulbous
## 3523         bulbous
## 3524         bulbous
## 3525         bulbous
## 3526         bulbous
## 3527         bulbous
## 3528         bulbous
## 3529         bulbous
## 3530         bulbous
## 3531         bulbous
## 3532         bulbous
## 3533         bulbous
## 3534         bulbous
## 3535         bulbous
## 3536         bulbous
## 3537         bulbous
## 3538         bulbous
## 3539         bulbous
## 3540         bulbous
## 3541         bulbous
## 3542         bulbous
## 3543         bulbous
## 3544         bulbous
## 3545         bulbous
## 3546         bulbous
## 3547         bulbous
## 3548         bulbous
## 3549         bulbous
## 3550         bulbous
## 3551         bulbous
## 3552         bulbous
## 3553         bulbous
## 3554         bulbous
## 3555         bulbous
## 3556         bulbous
## 3557         bulbous
## 3558         bulbous
## 3559         bulbous
## 3560         bulbous
## 3561         bulbous
## 3562         bulbous
## 3563         bulbous
## 3564         bulbous
## 3565         bulbous
## 3566         bulbous
## 3567         bulbous
## 3568         bulbous
## 3569         bulbous
## 3570         bulbous
## 3571         bulbous
## 3572         bulbous
## 3573         bulbous
## 3574         bulbous
## 3575         bulbous
## 3576         bulbous
## 3577         bulbous
## 3578         bulbous
## 3579         bulbous
## 3580         bulbous
## 3581         bulbous
## 3582         bulbous
## 3583         bulbous
## 3584         bulbous
## 3585         bulbous
## 3586         bulbous
## 3587         bulbous
## 3588         bulbous
## 3589         bulbous
## 3590         bulbous
## 3591         bulbous
## 3592         bulbous
## 3593         bulbous
## 3594         bulbous
## 3595         bulbous
## 3596         bulbous
## 3597         bulbous
## 3598         bulbous
## 3599         bulbous
## 3600         bulbous
## 3601         bulbous
## 3602         bulbous
## 3603         bulbous
## 3604         bulbous
## 3605         bulbous
## 3606         bulbous
## 3607         bulbous
## 3608         bulbous
## 3609         bulbous
## 3610         bulbous
## 3611         bulbous
## 3612         bulbous
## 3613         bulbous
## 3614         bulbous
## 3615         bulbous
## 3616         bulbous
## 3617         bulbous
## 3618         bulbous
## 3619         bulbous
## 3620         bulbous
## 3621         bulbous
## 3622         bulbous
## 3623         bulbous
## 3624         bulbous
## 3625         bulbous
## 3626         bulbous
## 3627         bulbous
## 3628         bulbous
## 3629         bulbous
## 3630         bulbous
## 3631         bulbous
## 3632         bulbous
## 3633         bulbous
## 3634         bulbous
## 3635         bulbous
## 3636         bulbous
## 3637         bulbous
## 3638         bulbous
## 3639         bulbous
## 3640         bulbous
## 3641         bulbous
## 3642         bulbous
## 3643         bulbous
## 3644         bulbous
## 3645         bulbous
## 3646         bulbous
## 3647         bulbous
## 3648         bulbous
## 3649         bulbous
## 3650         bulbous
## 3651         bulbous
## 3652         bulbous
## 3653         bulbous
## 3654         bulbous
## 3655         bulbous
## 3656         bulbous
## 3657         bulbous
## 3658         bulbous
## 3659         bulbous
## 3660         bulbous
## 3661         bulbous
## 3662         bulbous
## 3663         bulbous
## 3664         bulbous
## 3665         bulbous
## 3666         bulbous
## 3667         bulbous
## 3668         bulbous
## 3669         bulbous
## 3670         bulbous
## 3671         bulbous
## 3672         bulbous
## 3673         bulbous
## 3674         bulbous
## 3675         bulbous
## 3676         bulbous
## 3677         bulbous
## 3678         bulbous
## 3679         bulbous
## 3680         bulbous
## 3681         bulbous
## 3682         bulbous
## 3683         bulbous
## 3684         bulbous
## 3685         bulbous
## 3686         bulbous
## 3687         bulbous
## 3688         bulbous
## 3689         bulbous
## 3690         bulbous
## 3691         bulbous
## 3692         bulbous
## 3693         bulbous
## 3694         bulbous
## 3695         bulbous
## 3696         bulbous
## 3697         bulbous
## 3698         bulbous
## 3699         bulbous
## 3700         bulbous
## 3701         bulbous
## 3702         bulbous
## 3703         bulbous
## 3704         bulbous
## 3705         bulbous
## 3706         bulbous
## 3707         bulbous
## 3708         bulbous
## 3709         bulbous
## 3710         bulbous
## 3711         bulbous
## 3712         bulbous
## 3713         bulbous
## 3714         bulbous
## 3715         bulbous
## 3716         bulbous
## 3717         bulbous
## 3718         bulbous
## 3719         bulbous
## 3720         bulbous
## 3721         bulbous
## 3722         bulbous
## 3723         bulbous
## 3724         bulbous
## 3725         bulbous
## 3726         bulbous
## 3727         bulbous
## 3728         bulbous
## 3729         bulbous
## 3730         bulbous
## 3731         bulbous
## 3732         bulbous
## 3733         bulbous
## 3734         bulbous
## 3735         bulbous
## 3736         bulbous
## 3737         bulbous
## 3738         bulbous
## 3739         bulbous
## 3740         bulbous
## 3741         bulbous
## 3742         bulbous
## 3743         bulbous
## 3744         bulbous
## 3745         bulbous
## 3746         bulbous
## 3747         bulbous
## 3748         bulbous
## 3749         bulbous
## 3750         bulbous
## 3751         bulbous
## 3752         bulbous
## 3753         bulbous
## 3754         bulbous
## 3755         bulbous
## 3756         bulbous
## 3757         bulbous
## 3758         bulbous
## 3759         bulbous
## 3760         bulbous
## 3761         bulbous
## 3762         bulbous
## 3763         bulbous
## 3764         bulbous
## 3765         bulbous
## 3766         bulbous
## 3767         bulbous
## 3768         bulbous
## 3769         bulbous
## 3770         bulbous
## 3771         bulbous
## 3772         bulbous
## 3773         bulbous
## 3774         bulbous
## 3775         bulbous
## 3776         bulbous
## 3777         bulbous
## 3778         bulbous
## 3779         bulbous
## 3780         bulbous
## 3781         bulbous
## 3782         bulbous
## 3783         bulbous
## 3784         bulbous
## 3785         bulbous
## 3786         bulbous
## 3787         bulbous
## 3788         bulbous
## 3789         bulbous
## 3790         bulbous
## 3791         bulbous
## 3792         bulbous
## 3793         bulbous
## 3794         bulbous
## 3795         bulbous
## 3796         bulbous
## 3797         bulbous
## 3798         bulbous
## 3799         bulbous
## 3800         bulbous
## 3801         bulbous
## 3802         bulbous
## 3803         bulbous
## 3804         bulbous
## 3805         bulbous
## 3806         bulbous
## 3807         bulbous
## 3808         bulbous
## 3809         bulbous
## 3810         bulbous
## 3811         bulbous
## 3812         bulbous
## 3813         bulbous
## 3814         bulbous
## 3815         bulbous
## 3816         bulbous
## 3817         bulbous
## 3818         bulbous
## 3819         bulbous
## 3820         bulbous
## 3821         bulbous
## 3822         bulbous
## 3823         bulbous
## 3824         bulbous
## 3825         bulbous
## 3826         bulbous
## 3827         bulbous
## 3828         bulbous
## 3829         bulbous
## 3830         bulbous
## 3831         bulbous
## 3832         bulbous
## 3833         bulbous
## 3834         bulbous
## 3835         bulbous
## 3836         bulbous
## 3837         bulbous
## 3838         bulbous
## 3839         bulbous
## 3840         bulbous
## 3841         bulbous
## 3842         bulbous
## 3843         bulbous
## 3844         bulbous
## 3845         bulbous
## 3846         bulbous
## 3847         bulbous
## 3848         bulbous
## 3849         bulbous
## 3850         bulbous
## 3851         bulbous
## 3852         bulbous
## 3853         bulbous
## 3854         bulbous
## 3855         bulbous
## 3856         bulbous
## 3857         bulbous
## 3858         bulbous
## 3859         bulbous
## 3860         bulbous
## 3861         bulbous
## 3862         bulbous
## 3863         bulbous
## 3864         bulbous
## 3865         bulbous
## 3866         bulbous
## 3867         bulbous
## 3868         bulbous
## 3869         bulbous
## 3870         bulbous
## 3871         bulbous
## 3872         bulbous
## 3873         bulbous
## 3874         bulbous
## 3875         bulbous
## 3876         bulbous
## 3877         bulbous
## 3878         bulbous
## 3879         bulbous
## 3880         bulbous
## 3881         bulbous
## 3882         bulbous
## 3883         bulbous
## 3884         bulbous
## 3885         bulbous
## 3886         bulbous
## 3887         bulbous
## 3888         bulbous
## 3889         bulbous
## 3890         bulbous
## 3891         bulbous
## 3892         bulbous
## 3893         bulbous
## 3894         bulbous
## 3895         bulbous
## 3896         bulbous
## 3897         bulbous
## 3898         bulbous
## 3899         bulbous
## 3900         bulbous
## 3901         bulbous
## 3902         bulbous
## 3903         bulbous
## 3904         bulbous
## 3905         bulbous
## 3906         bulbous
## 3907         bulbous
## 3908         bulbous
## 3909         bulbous
## 3910         bulbous
## 3911         bulbous
## 3912         bulbous
## 3913         bulbous
## 3914         bulbous
## 3915         bulbous
## 3916         bulbous
## 3917         bulbous
## 3918         bulbous
## 3919         bulbous
## 3920         bulbous
## 3921         bulbous
## 3922         bulbous
## 3923         bulbous
## 3924         bulbous
## 3925         bulbous
## 3926         bulbous
## 3927         bulbous
## 3928         bulbous
## 3929         bulbous
## 3930         bulbous
## 3931         bulbous
## 3932         bulbous
## 3933         bulbous
## 3934         bulbous
## 3935         bulbous
## 3936         bulbous
## 3937         bulbous
## 3938         bulbous
## 3939         bulbous
## 3940         bulbous
## 3941         bulbous
## 3942         bulbous
## 3943         bulbous
## 3944         bulbous
## 3945         bulbous
## 3946         bulbous
## 3947         bulbous
## 3948         bulbous
## 3949         bulbous
## 3950         bulbous
## 3951         bulbous
## 3952         bulbous
## 3953         bulbous
## 3954         bulbous
## 3955         bulbous
## 3956         bulbous
## 3957         bulbous
## 3958         bulbous
## 3959         bulbous
## 3960         bulbous
## 3961         bulbous
## 3962         bulbous
## 3963         bulbous
## 3964         bulbous
## 3965         bulbous
## 3966         bulbous
## 3967         bulbous
## 3968         bulbous
## 3969         bulbous
## 3970         bulbous
## 3971         bulbous
## 3972         bulbous
## 3973         bulbous
## 3974         bulbous
## 3975         bulbous
## 3976         bulbous
## 3977         bulbous
## 3978         bulbous
## 3979         bulbous
## 3980         bulbous
## 3981         bulbous
## 3982         bulbous
## 3983         bulbous
## 3984    Missing Data
## 3985         bulbous
## 3986         bulbous
## 3987         bulbous
## 3988         bulbous
## 3989         bulbous
## 3990         bulbous
## 3991         bulbous
## 3992         bulbous
## 3993         bulbous
## 3994         bulbous
## 3995         bulbous
## 3996         bulbous
## 3997         bulbous
## 3998         bulbous
## 3999         bulbous
## 4000         bulbous
## 4001         bulbous
## 4002         bulbous
## 4003         bulbous
## 4004         bulbous
## 4005         bulbous
## 4006         bulbous
## 4007         bulbous
## 4008         bulbous
## 4009         bulbous
## 4010         bulbous
## 4011         bulbous
## 4012         bulbous
## 4013         bulbous
## 4014         bulbous
## 4015         bulbous
## 4016         bulbous
## 4017         bulbous
## 4018         bulbous
## 4019         bulbous
## 4020         bulbous
## 4021         bulbous
## 4022         bulbous
## 4023    Missing Data
## 4024         bulbous
## 4025         bulbous
## 4026         bulbous
## 4027         bulbous
## 4028         bulbous
## 4029         bulbous
## 4030         bulbous
## 4031         bulbous
## 4032         bulbous
## 4033         bulbous
## 4034         bulbous
## 4035         bulbous
## 4036         bulbous
## 4037         bulbous
## 4038         bulbous
## 4039         bulbous
## 4040         bulbous
## 4041         bulbous
## 4042         bulbous
## 4043         bulbous
## 4044         bulbous
## 4045         bulbous
## 4046         bulbous
## 4047         bulbous
## 4048         bulbous
## 4049         bulbous
## 4050         bulbous
## 4051         bulbous
## 4052         bulbous
## 4053         bulbous
## 4054         bulbous
## 4055         bulbous
## 4056         bulbous
## 4057         bulbous
## 4058         bulbous
## 4059         bulbous
## 4060         bulbous
## 4061         bulbous
## 4062         bulbous
## 4063         bulbous
## 4064         bulbous
## 4065         bulbous
## 4066         bulbous
## 4067         bulbous
## 4068         bulbous
## 4069         bulbous
## 4070         bulbous
## 4071         bulbous
## 4072         bulbous
## 4073         bulbous
## 4074         bulbous
## 4075         bulbous
## 4076    Missing Data
## 4077         bulbous
## 4078         bulbous
## 4079         bulbous
## 4080         bulbous
## 4081         bulbous
## 4082         bulbous
## 4083         bulbous
## 4084         bulbous
## 4085         bulbous
## 4086         bulbous
## 4087         bulbous
## 4088         bulbous
## 4089         bulbous
## 4090         bulbous
## 4091         bulbous
## 4092         bulbous
## 4093         bulbous
## 4094         bulbous
## 4095         bulbous
## 4096         bulbous
## 4097         bulbous
## 4098         bulbous
## 4099         bulbous
## 4100    Missing Data
## 4101         bulbous
## 4102         bulbous
## 4103         bulbous
## 4104    Missing Data
## 4105         bulbous
## 4106         bulbous
## 4107         bulbous
## 4108         bulbous
## 4109         bulbous
## 4110         bulbous
## 4111         bulbous
## 4112         bulbous
## 4113         bulbous
## 4114         bulbous
## 4115         bulbous
## 4116         bulbous
## 4117         bulbous
## 4118         bulbous
## 4119         bulbous
## 4120         bulbous
## 4121         bulbous
## 4122         bulbous
## 4123         bulbous
## 4124         bulbous
## 4125         bulbous
## 4126         bulbous
## 4127         bulbous
## 4128         bulbous
## 4129         bulbous
## 4130         bulbous
## 4131         bulbous
## 4132         bulbous
## 4133         bulbous
## 4134         bulbous
## 4135         bulbous
## 4136         bulbous
## 4137         bulbous
## 4138         bulbous
## 4139         bulbous
## 4140         bulbous
## 4141         bulbous
## 4142         bulbous
## 4143         bulbous
## 4144         bulbous
## 4145         bulbous
## 4146         bulbous
## 4147         bulbous
## 4148         bulbous
## 4149         bulbous
## 4150         bulbous
## 4151         bulbous
## 4152         bulbous
## 4153         bulbous
## 4154         bulbous
## 4155         bulbous
## 4156         bulbous
## 4157         bulbous
## 4158         bulbous
## 4159         bulbous
## 4160         bulbous
## 4161         bulbous
## 4162         bulbous
## 4163         bulbous
## 4164         bulbous
## 4165         bulbous
## 4166         bulbous
## 4167         bulbous
## 4168         bulbous
## 4169         bulbous
## 4170         bulbous
## 4171         bulbous
## 4172         bulbous
## 4173         bulbous
## 4174         bulbous
## 4175         bulbous
## 4176         bulbous
## 4177         bulbous
## 4178         bulbous
## 4179         bulbous
## 4180         bulbous
## 4181         bulbous
## 4182         bulbous
## 4183         bulbous
## 4184         bulbous
## 4185         bulbous
## 4186         bulbous
## 4187         bulbous
## 4188         bulbous
## 4189         bulbous
## 4190         bulbous
## 4191         bulbous
## 4192         bulbous
## 4193         bulbous
## 4194         bulbous
## 4195         bulbous
## 4196    Missing Data
## 4197         bulbous
## 4198         bulbous
## 4199         bulbous
## 4200    Missing Data
## 4201         bulbous
## 4202         bulbous
## 4203         bulbous
## 4204         bulbous
## 4205         bulbous
## 4206         bulbous
## 4207         bulbous
## 4208         bulbous
## 4209         bulbous
## 4210         bulbous
## 4211         bulbous
## 4212         bulbous
## 4213         bulbous
## 4214         bulbous
## 4215         bulbous
## 4216         bulbous
## 4217         bulbous
## 4218         bulbous
## 4219         bulbous
## 4220         bulbous
## 4221         bulbous
## 4222         bulbous
## 4223         bulbous
## 4224         bulbous
## 4225         bulbous
## 4226         bulbous
## 4227         bulbous
## 4228         bulbous
## 4229         bulbous
## 4230         bulbous
## 4231         bulbous
## 4232         bulbous
## 4233         bulbous
## 4234         bulbous
## 4235         bulbous
## 4236         bulbous
## 4237         bulbous
## 4238         bulbous
## 4239         bulbous
## 4240         bulbous
## 4241         bulbous
## 4242         bulbous
## 4243         bulbous
## 4244         bulbous
## 4245         bulbous
## 4246         bulbous
## 4247         bulbous
## 4248         bulbous
## 4249         bulbous
## 4250         bulbous
## 4251         bulbous
## 4252         bulbous
## 4253         bulbous
## 4254         bulbous
## 4255         bulbous
## 4256         bulbous
## 4257         bulbous
## 4258         bulbous
## 4259         bulbous
## 4260         bulbous
## 4261         bulbous
## 4262         bulbous
## 4263         bulbous
## 4264         bulbous
## 4265         bulbous
## 4266         bulbous
## 4267         bulbous
## 4268         bulbous
## 4269         bulbous
## 4270         bulbous
## 4271         bulbous
## 4272         bulbous
## 4273         bulbous
## 4274         bulbous
## 4275         bulbous
## 4276         bulbous
## 4277         bulbous
## 4278         bulbous
## 4279         bulbous
## 4280         bulbous
## 4281         bulbous
## 4282         bulbous
## 4283    Missing Data
## 4284         bulbous
## 4285         bulbous
## 4286         bulbous
## 4287         bulbous
## 4288         bulbous
## 4289         bulbous
## 4290         bulbous
## 4291    Missing Data
## 4292         bulbous
## 4293         bulbous
## 4294         bulbous
## 4295         bulbous
## 4296         bulbous
## 4297         bulbous
## 4298         bulbous
## 4299         bulbous
## 4300         bulbous
## 4301         bulbous
## 4302         bulbous
## 4303         bulbous
## 4304         bulbous
## 4305         bulbous
## 4306         bulbous
## 4307         bulbous
## 4308         bulbous
## 4309         bulbous
## 4310         bulbous
## 4311         bulbous
## 4312         bulbous
## 4313         bulbous
## 4314         bulbous
## 4315         bulbous
## 4316         bulbous
## 4317         bulbous
## 4318         bulbous
## 4319         bulbous
## 4320         bulbous
## 4321         bulbous
## 4322         bulbous
## 4323         bulbous
## 4324         bulbous
## 4325         bulbous
## 4326    Missing Data
## 4327         bulbous
## 4328         bulbous
## 4329    Missing Data
## 4330         bulbous
## 4331    Missing Data
## 4332         bulbous
## 4333         bulbous
## 4334         bulbous
## 4335         bulbous
## 4336         bulbous
## 4337         bulbous
## 4338         bulbous
## 4339         bulbous
## 4340         bulbous
## 4341         bulbous
## 4342         bulbous
## 4343         bulbous
## 4344         bulbous
## 4345         bulbous
## 4346         bulbous
## 4347         bulbous
## 4348         bulbous
## 4349         bulbous
## 4350         bulbous
## 4351         bulbous
## 4352         bulbous
## 4353         bulbous
## 4354         bulbous
## 4355         bulbous
## 4356         bulbous
## 4357    Missing Data
## 4358         bulbous
## 4359         bulbous
## 4360         bulbous
## 4361         bulbous
## 4362         bulbous
## 4363         bulbous
## 4364         bulbous
## 4365         bulbous
## 4366         bulbous
## 4367         bulbous
## 4368         bulbous
## 4369         bulbous
## 4370         bulbous
## 4371         bulbous
## 4372         bulbous
## 4373         bulbous
## 4374         bulbous
## 4375         bulbous
## 4376    Missing Data
## 4377         bulbous
## 4378         bulbous
## 4379         bulbous
## 4380    Missing Data
## 4381         bulbous
## 4382         bulbous
## 4383         bulbous
## 4384         bulbous
## 4385         bulbous
## 4386         bulbous
## 4387         bulbous
## 4388         bulbous
## 4389         bulbous
## 4390         bulbous
## 4391         bulbous
## 4392         bulbous
## 4393         bulbous
## 4394         bulbous
## 4395         bulbous
## 4396    Missing Data
## 4397         bulbous
## 4398         bulbous
## 4399         bulbous
## 4400         bulbous
## 4401         bulbous
## 4402         bulbous
## 4403         bulbous
## 4404         bulbous
## 4405         bulbous
## 4406         bulbous
## 4407         bulbous
## 4408         bulbous
## 4409         bulbous
## 4410         bulbous
## 4411         bulbous
## 4412         bulbous
## 4413         bulbous
## 4414         bulbous
## 4415         bulbous
## 4416         bulbous
## 4417         bulbous
## 4418         bulbous
## 4419    Missing Data
## 4420         bulbous
## 4421         bulbous
## 4422         bulbous
## 4423         bulbous
## 4424         bulbous
## 4425         bulbous
## 4426         bulbous
## 4427         bulbous
## 4428         bulbous
## 4429    Missing Data
## 4430         bulbous
## 4431         bulbous
## 4432         bulbous
## 4433         bulbous
## 4434         bulbous
## 4435         bulbous
## 4436         bulbous
## 4437         bulbous
## 4438         bulbous
## 4439         bulbous
## 4440         bulbous
## 4441         bulbous
## 4442         bulbous
## 4443         bulbous
## 4444         bulbous
## 4445         bulbous
## 4446         bulbous
## 4447         bulbous
## 4448         bulbous
## 4449         bulbous
## 4450         bulbous
## 4451         bulbous
## 4452         bulbous
## 4453         bulbous
## 4454         bulbous
## 4455         bulbous
## 4456         bulbous
## 4457         bulbous
## 4458         bulbous
## 4459    Missing Data
## 4460         bulbous
## 4461    Missing Data
## 4462         bulbous
## 4463         bulbous
## 4464         bulbous
## 4465         bulbous
## 4466         bulbous
## 4467         bulbous
## 4468         bulbous
## 4469         bulbous
## 4470         bulbous
## 4471         bulbous
## 4472         bulbous
## 4473         bulbous
## 4474         bulbous
## 4475         bulbous
## 4476         bulbous
## 4477         bulbous
## 4478         bulbous
## 4479         bulbous
## 4480         bulbous
## 4481         bulbous
## 4482         bulbous
## 4483         bulbous
## 4484         bulbous
## 4485         bulbous
## 4486         bulbous
## 4487         bulbous
## 4488         bulbous
## 4489         bulbous
## 4490         bulbous
## 4491         bulbous
## 4492         bulbous
## 4493         bulbous
## 4494    Missing Data
## 4495         bulbous
## 4496         bulbous
## 4497    Missing Data
## 4498    Missing Data
## 4499         bulbous
## 4500         bulbous
## 4501         bulbous
## 4502         bulbous
## 4503         bulbous
## 4504         bulbous
## 4505         bulbous
## 4506         bulbous
## 4507         bulbous
## 4508         bulbous
## 4509         bulbous
## 4510         bulbous
## 4511         bulbous
## 4512         bulbous
## 4513         bulbous
## 4514         bulbous
## 4515         bulbous
## 4516         bulbous
## 4517         bulbous
## 4518         bulbous
## 4519    Missing Data
## 4520         bulbous
## 4521         bulbous
## 4522    Missing Data
## 4523         bulbous
## 4524         bulbous
## 4525         bulbous
## 4526         bulbous
## 4527         bulbous
## 4528         bulbous
## 4529         bulbous
## 4530         bulbous
## 4531         bulbous
## 4532         bulbous
## 4533    Missing Data
## 4534    Missing Data
## 4535         bulbous
## 4536         bulbous
## 4537         bulbous
## 4538         bulbous
## 4539         bulbous
## 4540         bulbous
## 4541         bulbous
## 4542         bulbous
## 4543         bulbous
## 4544         bulbous
## 4545         bulbous
## 4546         bulbous
## 4547         bulbous
## 4548         bulbous
## 4549         bulbous
## 4550         bulbous
## 4551         bulbous
## 4552         bulbous
## 4553         bulbous
## 4554         bulbous
## 4555         bulbous
## 4556         bulbous
## 4557    Missing Data
## 4558         bulbous
## 4559         bulbous
## 4560         bulbous
## 4561         bulbous
## 4562         bulbous
## 4563         bulbous
## 4564         bulbous
## 4565         bulbous
## 4566         bulbous
## 4567         bulbous
## 4568         bulbous
## 4569         bulbous
## 4570         bulbous
## 4571         bulbous
## 4572         bulbous
## 4573         bulbous
## 4574         bulbous
## 4575         bulbous
## 4576         bulbous
## 4577         bulbous
## 4578         bulbous
## 4579         bulbous
## 4580         bulbous
## 4581         bulbous
## 4582         bulbous
## 4583         bulbous
## 4584         bulbous
## 4585         bulbous
## 4586         bulbous
## 4587         bulbous
## 4588         bulbous
## 4589         bulbous
## 4590         bulbous
## 4591         bulbous
## 4592         bulbous
## 4593         bulbous
## 4594         bulbous
## 4595         bulbous
## 4596         bulbous
## 4597         bulbous
## 4598         bulbous
## 4599         bulbous
## 4600         bulbous
## 4601         bulbous
## 4602         bulbous
## 4603         bulbous
## 4604         bulbous
## 4605         bulbous
## 4606         bulbous
## 4607         bulbous
## 4608         bulbous
## 4609         bulbous
## 4610    Missing Data
## 4611    Missing Data
## 4612         bulbous
## 4613         bulbous
## 4614         bulbous
## 4615         bulbous
## 4616         bulbous
## 4617         bulbous
## 4618         bulbous
## 4619         bulbous
## 4620         bulbous
## 4621         bulbous
## 4622         bulbous
## 4623         bulbous
## 4624         bulbous
## 4625         bulbous
## 4626         bulbous
## 4627         bulbous
## 4628         bulbous
## 4629         bulbous
## 4630         bulbous
## 4631         bulbous
## 4632         bulbous
## 4633         bulbous
## 4634         bulbous
## 4635         bulbous
## 4636         bulbous
## 4637         bulbous
## 4638         bulbous
## 4639         bulbous
## 4640         bulbous
## 4641         bulbous
## 4642         bulbous
## 4643         bulbous
## 4644         bulbous
## 4645         bulbous
## 4646         bulbous
## 4647    Missing Data
## 4648         bulbous
## 4649         bulbous
## 4650         bulbous
## 4651         bulbous
## 4652         bulbous
## 4653         bulbous
## 4654         bulbous
## 4655         bulbous
## 4656         bulbous
## 4657         bulbous
## 4658         bulbous
## 4659         bulbous
## 4660         bulbous
## 4661         bulbous
## 4662    Missing Data
## 4663    Missing Data
## 4664         bulbous
## 4665         bulbous
## 4666         bulbous
## 4667         bulbous
## 4668         bulbous
## 4669         bulbous
## 4670         bulbous
## 4671         bulbous
## 4672         bulbous
## 4673    Missing Data
## 4674         bulbous
## 4675         bulbous
## 4676         bulbous
## 4677         bulbous
## 4678         bulbous
## 4679         bulbous
## 4680         bulbous
## 4681         bulbous
## 4682         bulbous
## 4683         bulbous
## 4684         bulbous
## 4685         bulbous
## 4686         bulbous
## 4687         bulbous
## 4688         bulbous
## 4689         bulbous
## 4690         bulbous
## 4691         bulbous
## 4692         bulbous
## 4693         bulbous
## 4694         bulbous
## 4695         bulbous
## 4696         bulbous
## 4697         bulbous
## 4698         bulbous
## 4699         bulbous
## 4700         bulbous
## 4701         bulbous
## 4702         bulbous
## 4703         bulbous
## 4704         bulbous
## 4705         bulbous
## 4706         bulbous
## 4707         bulbous
## 4708         bulbous
## 4709         bulbous
## 4710         bulbous
## 4711         bulbous
## 4712         bulbous
## 4713         bulbous
## 4714         bulbous
## 4715         bulbous
## 4716         bulbous
## 4717    Missing Data
## 4718         bulbous
## 4719         bulbous
## 4720         bulbous
## 4721         bulbous
## 4722    Missing Data
## 4723         bulbous
## 4724         bulbous
## 4725         bulbous
## 4726         bulbous
## 4727         bulbous
## 4728         bulbous
## 4729         bulbous
## 4730         bulbous
## 4731         bulbous
## 4732         bulbous
## 4733         bulbous
## 4734         bulbous
## 4735         bulbous
## 4736         bulbous
## 4737         bulbous
## 4738         bulbous
## 4739         bulbous
## 4740         bulbous
## 4741         bulbous
## 4742         bulbous
## 4743         bulbous
## 4744         bulbous
## 4745         bulbous
## 4746         bulbous
## 4747         bulbous
## 4748         bulbous
## 4749         bulbous
## 4750         bulbous
## 4751         bulbous
## 4752         bulbous
## 4753         bulbous
## 4754         bulbous
## 4755         bulbous
## 4756         bulbous
## 4757         bulbous
## 4758         bulbous
## 4759         bulbous
## 4760         bulbous
## 4761         bulbous
## 4762         bulbous
## 4763         bulbous
## 4764         bulbous
## 4765         bulbous
## 4766         bulbous
## 4767         bulbous
## 4768         bulbous
## 4769         bulbous
## 4770         bulbous
## 4771         bulbous
## 4772         bulbous
## 4773         bulbous
## 4774         bulbous
## 4775         bulbous
## 4776         bulbous
## 4777    Missing Data
## 4778         bulbous
## 4779         bulbous
## 4780         bulbous
## 4781         bulbous
## 4782         bulbous
## 4783         bulbous
## 4784         bulbous
## 4785         bulbous
## 4786         bulbous
## 4787         bulbous
## 4788         bulbous
## 4789         bulbous
## 4790         bulbous
## 4791         bulbous
## 4792         bulbous
## 4793         bulbous
## 4794         bulbous
## 4795         bulbous
## 4796         bulbous
## 4797         bulbous
## 4798         bulbous
## 4799         bulbous
## 4800         bulbous
## 4801    Missing Data
## 4802         bulbous
## 4803         bulbous
## 4804         bulbous
## 4805         bulbous
## 4806    Missing Data
## 4807         bulbous
## 4808         bulbous
## 4809         bulbous
## 4810         bulbous
## 4811         bulbous
## 4812    Missing Data
## 4813         bulbous
## 4814    Missing Data
## 4815         bulbous
## 4816         bulbous
## 4817    Missing Data
## 4818         bulbous
## 4819         bulbous
## 4820         bulbous
## 4821         bulbous
## 4822         bulbous
## 4823         bulbous
## 4824    Missing Data
## 4825         bulbous
## 4826    Missing Data
## 4827         bulbous
## 4828         bulbous
## 4829         bulbous
## 4830         bulbous
## 4831    Missing Data
## 4832         bulbous
## 4833         bulbous
## 4834         bulbous
## 4835         bulbous
## 4836         bulbous
## 4837         bulbous
## 4838         bulbous
## 4839         bulbous
## 4840         bulbous
## 4841         bulbous
## 4842         bulbous
## 4843         bulbous
## 4844    Missing Data
## 4845         bulbous
## 4846    Missing Data
## 4847         bulbous
## 4848         bulbous
## 4849         bulbous
## 4850         bulbous
## 4851         bulbous
## 4852         bulbous
## 4853         bulbous
## 4854         bulbous
## 4855         bulbous
## 4856         bulbous
## 4857         bulbous
## 4858    Missing Data
## 4859    Missing Data
## 4860    Missing Data
## 4861         bulbous
## 4862         bulbous
## 4863         bulbous
## 4864         bulbous
## 4865         bulbous
## 4866         bulbous
## 4867         bulbous
## 4868         bulbous
## 4869    Missing Data
## 4870         bulbous
## 4871    Missing Data
## 4872         bulbous
## 4873         bulbous
## 4874         bulbous
## 4875         bulbous
## 4876         bulbous
## 4877         bulbous
## 4878         bulbous
## 4879         bulbous
## 4880         bulbous
## 4881         bulbous
## 4882         bulbous
## 4883         bulbous
## 4884    Missing Data
## 4885         bulbous
## 4886         bulbous
## 4887         bulbous
## 4888    Missing Data
## 4889         bulbous
## 4890         bulbous
## 4891         bulbous
## 4892         bulbous
## 4893         bulbous
## 4894         bulbous
## 4895         bulbous
## 4896         bulbous
## 4897         bulbous
## 4898    Missing Data
## 4899    Missing Data
## 4900         bulbous
## 4901         bulbous
## 4902         bulbous
## 4903    Missing Data
## 4904    Missing Data
## 4905         bulbous
## 4906         bulbous
## 4907         bulbous
## 4908         bulbous
## 4909         bulbous
## 4910         bulbous
## 4911    Missing Data
## 4912         bulbous
## 4913         bulbous
## 4914         bulbous
## 4915         bulbous
## 4916         bulbous
## 4917         bulbous
## 4918         bulbous
## 4919         bulbous
## 4920         bulbous
## 4921         bulbous
## 4922         bulbous
## 4923         bulbous
## 4924         bulbous
## 4925         bulbous
## 4926    Missing Data
## 4927         bulbous
## 4928         bulbous
## 4929         bulbous
## 4930         bulbous
## 4931    Missing Data
## 4932         bulbous
## 4933         bulbous
## 4934         bulbous
## 4935         bulbous
## 4936         bulbous
## 4937         bulbous
## 4938    Missing Data
## 4939    Missing Data
## 4940         bulbous
## 4941         bulbous
## 4942         bulbous
## 4943         bulbous
## 4944         bulbous
## 4945    Missing Data
## 4946    Missing Data
## 4947         bulbous
## 4948         bulbous
## 4949         bulbous
## 4950         bulbous
## 4951    Missing Data
## 4952         bulbous
## 4953         bulbous
## 4954         bulbous
## 4955         bulbous
## 4956         bulbous
## 4957         bulbous
## 4958         bulbous
## 4959         bulbous
## 4960         bulbous
## 4961         bulbous
## 4962         bulbous
## 4963         bulbous
## 4964    Missing Data
## 4965    Missing Data
## 4966    Missing Data
## 4967         bulbous
## 4968         bulbous
## 4969         bulbous
## 4970         bulbous
## 4971         bulbous
## 4972         bulbous
## 4973         bulbous
## 4974         bulbous
## 4975         bulbous
## 4976         bulbous
## 4977         bulbous
## 4978         bulbous
## 4979         bulbous
## 4980         bulbous
## 4981         bulbous
## 4982         bulbous
## 4983         bulbous
## 4984    Missing Data
## 4985         bulbous
## 4986    Missing Data
## 4987         bulbous
## 4988         bulbous
## 4989         bulbous
## 4990         bulbous
## 4991         bulbous
## 4992         bulbous
## 4993    Missing Data
## 4994         bulbous
## 4995         bulbous
## 4996    Missing Data
## 4997         bulbous
## 4998         bulbous
## 4999    Missing Data
## 5000         bulbous
## 5001    Missing Data
## 5002         bulbous
## 5003         bulbous
## 5004         bulbous
## 5005    Missing Data
## 5006         bulbous
## 5007         bulbous
## 5008         bulbous
## 5009         bulbous
## 5010    Missing Data
## 5011         bulbous
## 5012         bulbous
## 5013         bulbous
## 5014         bulbous
## 5015    Missing Data
## 5016         bulbous
## 5017         bulbous
## 5018         bulbous
## 5019         bulbous
## 5020         bulbous
## 5021         bulbous
## 5022         bulbous
## 5023    Missing Data
## 5024         bulbous
## 5025         bulbous
## 5026         bulbous
## 5027         bulbous
## 5028         bulbous
## 5029         bulbous
## 5030         bulbous
## 5031         bulbous
## 5032         bulbous
## 5033         bulbous
## 5034         bulbous
## 5035         bulbous
## 5036         bulbous
## 5037         bulbous
## 5038         bulbous
## 5039         bulbous
## 5040         bulbous
## 5041    Missing Data
## 5042         bulbous
## 5043         bulbous
## 5044         bulbous
## 5045         bulbous
## 5046         bulbous
## 5047         bulbous
## 5048         bulbous
## 5049         bulbous
## 5050         bulbous
## 5051    Missing Data
## 5052    Missing Data
## 5053    Missing Data
## 5054         bulbous
## 5055         bulbous
## 5056         bulbous
## 5057         bulbous
## 5058         bulbous
## 5059         bulbous
## 5060         bulbous
## 5061         bulbous
## 5062         bulbous
## 5063         bulbous
## 5064         bulbous
## 5065         bulbous
## 5066         bulbous
## 5067         bulbous
## 5068         bulbous
## 5069         bulbous
## 5070    Missing Data
## 5071    Missing Data
## 5072         bulbous
## 5073         bulbous
## 5074    Missing Data
## 5075         bulbous
## 5076         bulbous
## 5077         bulbous
## 5078         bulbous
## 5079         bulbous
## 5080         bulbous
## 5081         bulbous
## 5082         bulbous
## 5083         bulbous
## 5084         bulbous
## 5085    Missing Data
## 5086         bulbous
## 5087         bulbous
## 5088         bulbous
## 5089         bulbous
## 5090         bulbous
## 5091         bulbous
## 5092         bulbous
## 5093         bulbous
## 5094         bulbous
## 5095         bulbous
## 5096         bulbous
## 5097         bulbous
## 5098    Missing Data
## 5099         bulbous
## 5100         bulbous
## 5101    Missing Data
## 5102         bulbous
## 5103         bulbous
## 5104    Missing Data
## 5105    Missing Data
## 5106    Missing Data
## 5107         bulbous
## 5108         bulbous
## 5109         bulbous
## 5110         bulbous
## 5111         bulbous
## 5112         bulbous
## 5113    Missing Data
## 5114         bulbous
## 5115         bulbous
## 5116    Missing Data
## 5117         bulbous
## 5118         bulbous
## 5119         bulbous
## 5120         bulbous
## 5121         bulbous
## 5122         bulbous
## 5123         bulbous
## 5124         bulbous
## 5125         bulbous
## 5126         bulbous
## 5127         bulbous
## 5128         bulbous
## 5129         bulbous
## 5130         bulbous
## 5131    Missing Data
## 5132    Missing Data
## 5133    Missing Data
## 5134    Missing Data
## 5135    Missing Data
## 5136         bulbous
## 5137         bulbous
## 5138         bulbous
## 5139         bulbous
## 5140         bulbous
## 5141    Missing Data
## 5142    Missing Data
## 5143         bulbous
## 5144    Missing Data
## 5145    Missing Data
## 5146         bulbous
## 5147    Missing Data
## 5148         bulbous
## 5149    Missing Data
## 5150    Missing Data
## 5151    Missing Data
## 5152         bulbous
## 5153         bulbous
## 5154    Missing Data
## 5155    Missing Data
## 5156         bulbous
## 5157         bulbous
## 5158         bulbous
## 5159         bulbous
## 5160    Missing Data
## 5161         bulbous
## 5162    Missing Data
## 5163    Missing Data
## 5164         bulbous
## 5165         bulbous
## 5166    Missing Data
## 5167         bulbous
## 5168    Missing Data
## 5169    Missing Data
## 5170         bulbous
## 5171         bulbous
## 5172         bulbous
## 5173         bulbous
## 5174         bulbous
## 5175    Missing Data
## 5176    Missing Data
## 5177         bulbous
## 5178         bulbous
## 5179    Missing Data
## 5180         bulbous
## 5181         bulbous
## 5182         bulbous
## 5183         bulbous
## 5184         bulbous
## 5185         bulbous
## 5186    Missing Data
## 5187         bulbous
## 5188    Missing Data
## 5189         bulbous
## 5190         bulbous
## 5191         bulbous
## 5192    Missing Data
## 5193    Missing Data
## 5194    Missing Data
## 5195         bulbous
## 5196         bulbous
## 5197    Missing Data
## 5198         bulbous
## 5199         bulbous
## 5200         bulbous
## 5201         bulbous
## 5202    Missing Data
## 5203         bulbous
## 5204         bulbous
## 5205    Missing Data
## 5206    Missing Data
## 5207         bulbous
## 5208    Missing Data
## 5209         bulbous
## 5210    Missing Data
## 5211         bulbous
## 5212    Missing Data
## 5213         bulbous
## 5214         bulbous
## 5215         bulbous
## 5216    Missing Data
## 5217         bulbous
## 5218    Missing Data
## 5219    Missing Data
## 5220         bulbous
## 5221    Missing Data
## 5222         bulbous
## 5223    Missing Data
## 5224    Missing Data
## 5225         bulbous
## 5226    Missing Data
## 5227    Missing Data
## 5228         bulbous
## 5229    Missing Data
## 5230    Missing Data
## 5231         bulbous
## 5232         bulbous
## 5233    Missing Data
## 5234         bulbous
## 5235         bulbous
## 5236         bulbous
## 5237         bulbous
## 5238         bulbous
## 5239    Missing Data
## 5240         bulbous
## 5241    Missing Data
## 5242         bulbous
## 5243    Missing Data
## 5244         bulbous
## 5245    Missing Data
## 5246         bulbous
## 5247         bulbous
## 5248         bulbous
## 5249         bulbous
## 5250         bulbous
## 5251         bulbous
## 5252    Missing Data
## 5253         bulbous
## 5254         bulbous
## 5255         bulbous
## 5256         bulbous
## 5257    Missing Data
## 5258         bulbous
## 5259    Missing Data
## 5260         bulbous
## 5261         bulbous
## 5262    Missing Data
## 5263         bulbous
## 5264    Missing Data
## 5265    Missing Data
## 5266    Missing Data
## 5267    Missing Data
## 5268         bulbous
## 5269    Missing Data
## 5270         bulbous
## 5271    Missing Data
## 5272         bulbous
## 5273         bulbous
## 5274    Missing Data
## 5275         bulbous
## 5276         bulbous
## 5277    Missing Data
## 5278         bulbous
## 5279         bulbous
## 5280    Missing Data
## 5281         bulbous
## 5282         bulbous
## 5283    Missing Data
## 5284    Missing Data
## 5285    Missing Data
## 5286         bulbous
## 5287    Missing Data
## 5288         bulbous
## 5289         bulbous
## 5290         bulbous
## 5291    Missing Data
## 5292    Missing Data
## 5293         bulbous
## 5294         bulbous
## 5295    Missing Data
## 5296         bulbous
## 5297    Missing Data
## 5298         bulbous
## 5299         bulbous
## 5300         bulbous
## 5301         bulbous
## 5302    Missing Data
## 5303         bulbous
## 5304    Missing Data
## 5305    Missing Data
## 5306    Missing Data
## 5307         bulbous
## 5308    Missing Data
## 5309    Missing Data
## 5310    Missing Data
## 5311    Missing Data
## 5312    Missing Data
## 5313    Missing Data
## 5314         bulbous
## 5315         bulbous
## 5316    Missing Data
## 5317         bulbous
## 5318         bulbous
## 5319         bulbous
## 5320         bulbous
## 5321    Missing Data
## 5322         bulbous
## 5323         bulbous
## 5324    Missing Data
## 5325    Missing Data
## 5326    Missing Data
## 5327         bulbous
## 5328    Missing Data
## 5329         bulbous
## 5330         bulbous
## 5331         bulbous
## 5332    Missing Data
## 5333         bulbous
## 5334         bulbous
## 5335         bulbous
## 5336         bulbous
## 5337    Missing Data
## 5338         bulbous
## 5339         bulbous
## 5340    Missing Data
## 5341         bulbous
## 5342    Missing Data
## 5343         bulbous
## 5344         bulbous
## 5345         bulbous
## 5346    Missing Data
## 5347         bulbous
## 5348         bulbous
## 5349         bulbous
## 5350         bulbous
## 5351    Missing Data
## 5352         bulbous
## 5353         bulbous
## 5354    Missing Data
## 5355         bulbous
## 5356         bulbous
## 5357         bulbous
## 5358         bulbous
## 5359         bulbous
## 5360    Missing Data
## 5361    Missing Data
## 5362    Missing Data
## 5363         bulbous
## 5364         bulbous
## 5365    Missing Data
## 5366         bulbous
## 5367         bulbous
## 5368         bulbous
## 5369         bulbous
## 5370         bulbous
## 5371    Missing Data
## 5372         bulbous
## 5373         bulbous
## 5374         bulbous
## 5375    Missing Data
## 5376         bulbous
## 5377         bulbous
## 5378    Missing Data
## 5379    Missing Data
## 5380         bulbous
## 5381         bulbous
## 5382    Missing Data
## 5383         bulbous
## 5384         bulbous
## 5385    Missing Data
## 5386         bulbous
## 5387    Missing Data
## 5388         bulbous
## 5389    Missing Data
## 5390    Missing Data
## 5391         bulbous
## 5392    Missing Data
## 5393         bulbous
## 5394    Missing Data
## 5395         bulbous
## 5396         bulbous
## 5397         bulbous
## 5398    Missing Data
## 5399         bulbous
## 5400         bulbous
## 5401         bulbous
## 5402    Missing Data
## 5403         bulbous
## 5404    Missing Data
## 5405         bulbous
## 5406         bulbous
## 5407         bulbous
## 5408         bulbous
## 5409         bulbous
## 5410         bulbous
## 5411    Missing Data
## 5412         bulbous
## 5413    Missing Data
## 5414         bulbous
## 5415    Missing Data
## 5416    Missing Data
## 5417    Missing Data
## 5418         bulbous
## 5419         bulbous
## 5420    Missing Data
## 5421    Missing Data
## 5422         bulbous
## 5423         bulbous
## 5424         bulbous
## 5425         bulbous
## 5426         bulbous
## 5427         bulbous
## 5428         bulbous
## 5429         bulbous
## 5430    Missing Data
## 5431         bulbous
## 5432    Missing Data
## 5433         bulbous
## 5434         bulbous
## 5435         bulbous
## 5436    Missing Data
## 5437         bulbous
## 5438         bulbous
## 5439         bulbous
## 5440    Missing Data
## 5441    Missing Data
## 5442         bulbous
## 5443    Missing Data
## 5444         bulbous
## 5445         bulbous
## 5446    Missing Data
## 5447         bulbous
## 5448    Missing Data
## 5449         bulbous
## 5450         bulbous
## 5451         bulbous
## 5452         bulbous
## 5453         bulbous
## 5454         bulbous
## 5455         bulbous
## 5456         bulbous
## 5457         bulbous
## 5458         bulbous
## 5459         bulbous
## 5460         bulbous
## 5461    Missing Data
## 5462         bulbous
## 5463    Missing Data
## 5464         bulbous
## 5465    Missing Data
## 5466    Missing Data
## 5467         bulbous
## 5468         bulbous
## 5469    Missing Data
## 5470         bulbous
## 5471    Missing Data
## 5472         bulbous
## 5473    Missing Data
## 5474         bulbous
## 5475         bulbous
## 5476         bulbous
## 5477         bulbous
## 5478         bulbous
## 5479    Missing Data
## 5480         bulbous
## 5481    Missing Data
## 5482         bulbous
## 5483    Missing Data
## 5484         bulbous
## 5485         bulbous
## 5486         bulbous
## 5487    Missing Data
## 5488         bulbous
## 5489    Missing Data
## 5490         bulbous
## 5491         bulbous
## 5492    Missing Data
## 5493         bulbous
## 5494         bulbous
## 5495         bulbous
## 5496         bulbous
## 5497    Missing Data
## 5498         bulbous
## 5499         bulbous
## 5500         bulbous
## 5501    Missing Data
## 5502    Missing Data
## 5503    Missing Data
## 5504    Missing Data
## 5505         bulbous
## 5506         bulbous
## 5507    Missing Data
## 5508         bulbous
## 5509         bulbous
## 5510         bulbous
## 5511    Missing Data
## 5512         bulbous
## 5513    Missing Data
## 5514    Missing Data
## 5515    Missing Data
## 5516         bulbous
## 5517    Missing Data
## 5518         bulbous
## 5519    Missing Data
## 5520         bulbous
## 5521    Missing Data
## 5522         bulbous
## 5523         bulbous
## 5524         bulbous
## 5525    Missing Data
## 5526         bulbous
## 5527         bulbous
## 5528    Missing Data
## 5529    Missing Data
## 5530    Missing Data
## 5531         bulbous
## 5532         bulbous
## 5533    Missing Data
## 5534    Missing Data
## 5535    Missing Data
## 5536    Missing Data
## 5537    Missing Data
## 5538    Missing Data
## 5539         bulbous
## 5540    Missing Data
## 5541         bulbous
## 5542         bulbous
## 5543         bulbous
## 5544    Missing Data
## 5545         bulbous
## 5546         bulbous
## 5547         bulbous
## 5548         bulbous
## 5549    Missing Data
## 5550         bulbous
## 5551    Missing Data
## 5552         bulbous
## 5553    Missing Data
## 5554    Missing Data
## 5555         bulbous
## 5556    Missing Data
## 5557    Missing Data
## 5558    Missing Data
## 5559    Missing Data
## 5560         bulbous
## 5561         bulbous
## 5562    Missing Data
## 5563    Missing Data
## 5564         bulbous
## 5565         bulbous
## 5566         bulbous
## 5567         bulbous
## 5568         bulbous
## 5569    Missing Data
## 5570    Missing Data
## 5571         bulbous
## 5572         bulbous
## 5573    Missing Data
## 5574         bulbous
## 5575         bulbous
## 5576    Missing Data
## 5577         bulbous
## 5578         bulbous
## 5579    Missing Data
## 5580         bulbous
## 5581    Missing Data
## 5582         bulbous
## 5583    Missing Data
## 5584         bulbous
## 5585    Missing Data
## 5586    Missing Data
## 5587         bulbous
## 5588    Missing Data
## 5589    Missing Data
## 5590    Missing Data
## 5591         bulbous
## 5592         bulbous
## 5593         bulbous
## 5594    Missing Data
## 5595    Missing Data
## 5596    Missing Data
## 5597         bulbous
## 5598         bulbous
## 5599    Missing Data
## 5600    Missing Data
## 5601         bulbous
## 5602    Missing Data
## 5603    Missing Data
## 5604    Missing Data
## 5605         bulbous
## 5606    Missing Data
## 5607         bulbous
## 5608         bulbous
## 5609         bulbous
## 5610         bulbous
## 5611         bulbous
## 5612    Missing Data
## 5613         bulbous
## 5614    Missing Data
## 5615    Missing Data
## 5616         bulbous
## 5617         bulbous
## 5618         bulbous
## 5619    Missing Data
## 5620         bulbous
## 5621         bulbous
## 5622    Missing Data
## 5623    Missing Data
## 5624    Missing Data
## 5625         bulbous
## 5626         bulbous
## 5627         bulbous
## 5628    Missing Data
## 5629         bulbous
## 5630         bulbous
## 5631         bulbous
## 5632         bulbous
## 5633         bulbous
## 5634    Missing Data
## 5635         bulbous
## 5636         bulbous
## 5637         bulbous
## 5638    Missing Data
## 5639         bulbous
## 5640    Missing Data
## 5641    Missing Data
## 5642         bulbous
## 5643         bulbous
## 5644    Missing Data
## 5645    Missing Data
## 5646         bulbous
## 5647         bulbous
## 5648         bulbous
## 5649    Missing Data
## 5650         bulbous
## 5651         bulbous
## 5652    Missing Data
## 5653    Missing Data
## 5654         bulbous
## 5655         bulbous
## 5656         bulbous
## 5657         bulbous
## 5658         bulbous
## 5659    Missing Data
## 5660         bulbous
## 5661    Missing Data
## 5662         bulbous
## 5663         bulbous
## 5664         bulbous
## 5665         bulbous
## 5666         bulbous
## 5667         bulbous
## 5668    Missing Data
## 5669    Missing Data
## 5670         bulbous
## 5671         bulbous
## 5672         bulbous
## 5673    Missing Data
## 5674    Missing Data
## 5675         bulbous
## 5676         bulbous
## 5677         bulbous
## 5678         bulbous
## 5679    Missing Data
## 5680    Missing Data
## 5681    Missing Data
## 5682    Missing Data
## 5683    Missing Data
## 5684         bulbous
## 5685         bulbous
## 5686    Missing Data
## 5687         bulbous
## 5688         bulbous
## 5689         bulbous
## 5690    Missing Data
## 5691    Missing Data
## 5692    Missing Data
## 5693         bulbous
## 5694    Missing Data
## 5695    Missing Data
## 5696         bulbous
## 5697    Missing Data
## 5698    Missing Data
## 5699         bulbous
## 5700         bulbous
## 5701         bulbous
## 5702         bulbous
## 5703         bulbous
## 5704    Missing Data
## 5705         bulbous
## 5706         bulbous
## 5707         bulbous
## 5708         bulbous
## 5709    Missing Data
## 5710         bulbous
## 5711    Missing Data
## 5712         bulbous
## 5713    Missing Data
## 5714    Missing Data
## 5715    Missing Data
## 5716         bulbous
## 5717         bulbous
## 5718         bulbous
## 5719    Missing Data
## 5720    Missing Data
## 5721    Missing Data
## 5722    Missing Data
## 5723         bulbous
## 5724    Missing Data
## 5725         bulbous
## 5726         bulbous
## 5727         bulbous
## 5728         bulbous
## 5729         bulbous
## 5730         bulbous
## 5731    Missing Data
## 5732    Missing Data
## 5733    Missing Data
## 5734    Missing Data
## 5735         bulbous
## 5736    Missing Data
## 5737    Missing Data
## 5738         bulbous
## 5739         bulbous
## 5740         bulbous
## 5741    Missing Data
## 5742         bulbous
## 5743    Missing Data
## 5744         bulbous
## 5745    Missing Data
## 5746         bulbous
## 5747         bulbous
## 5748         bulbous
## 5749         bulbous
## 5750         bulbous
## 5751         bulbous
## 5752         bulbous
## 5753         bulbous
## 5754    Missing Data
## 5755    Missing Data
## 5756         bulbous
## 5757    Missing Data
## 5758    Missing Data
## 5759         bulbous
## 5760         bulbous
## 5761    Missing Data
## 5762         bulbous
## 5763         bulbous
## 5764    Missing Data
## 5765         bulbous
## 5766         bulbous
## 5767    Missing Data
## 5768    Missing Data
## 5769    Missing Data
## 5770    Missing Data
## 5771    Missing Data
## 5772         bulbous
## 5773    Missing Data
## 5774         bulbous
## 5775         bulbous
## 5776         bulbous
## 5777    Missing Data
## 5778         bulbous
## 5779    Missing Data
## 5780    Missing Data
## 5781    Missing Data
## 5782         bulbous
## 5783    Missing Data
## 5784         bulbous
## 5785         bulbous
## 5786         bulbous
## 5787    Missing Data
## 5788         bulbous
## 5789         bulbous
## 5790    Missing Data
## 5791         bulbous
## 5792         bulbous
## 5793         bulbous
## 5794         bulbous
## 5795         bulbous
## 5796         bulbous
## 5797         bulbous
## 5798         bulbous
## 5799    Missing Data
## 5800    Missing Data
## 5801    Missing Data
## 5802         bulbous
## 5803         bulbous
## 5804         bulbous
## 5805         bulbous
## 5806         bulbous
## 5807    Missing Data
## 5808         bulbous
## 5809         bulbous
## 5810    Missing Data
## 5811         bulbous
## 5812         bulbous
## 5813         bulbous
## 5814         bulbous
## 5815    Missing Data
## 5816    Missing Data
## 5817    Missing Data
## 5818         bulbous
## 5819    Missing Data
## 5820    Missing Data
## 5821         bulbous
## 5822         bulbous
## 5823    Missing Data
## 5824         bulbous
## 5825         bulbous
## 5826    Missing Data
## 5827         bulbous
## 5828    Missing Data
## 5829         bulbous
## 5830         bulbous
## 5831    Missing Data
## 5832         bulbous
## 5833         bulbous
## 5834    Missing Data
## 5835    Missing Data
## 5836    Missing Data
## 5837    Missing Data
## 5838         bulbous
## 5839    Missing Data
## 5840         bulbous
## 5841         bulbous
## 5842         bulbous
## 5843         bulbous
## 5844         bulbous
## 5845         bulbous
## 5846         bulbous
## 5847    Missing Data
## 5848         bulbous
## 5849    Missing Data
## 5850    Missing Data
## 5851         bulbous
## 5852         bulbous
## 5853         bulbous
## 5854    Missing Data
## 5855         bulbous
## 5856         bulbous
## 5857         bulbous
## 5858    Missing Data
## 5859    Missing Data
## 5860    Missing Data
## 5861    Missing Data
## 5862         bulbous
## 5863    Missing Data
## 5864    Missing Data
## 5865    Missing Data
## 5866         bulbous
## 5867         bulbous
## 5868    Missing Data
## 5869    Missing Data
## 5870         bulbous
## 5871    Missing Data
## 5872    Missing Data
## 5873         bulbous
## 5874    Missing Data
## 5875    Missing Data
## 5876         bulbous
## 5877         bulbous
## 5878    Missing Data
## 5879         bulbous
## 5880         bulbous
## 5881         bulbous
## 5882         bulbous
## 5883    Missing Data
## 5884    Missing Data
## 5885         bulbous
## 5886    Missing Data
## 5887         bulbous
## 5888         bulbous
## 5889         bulbous
## 5890         bulbous
## 5891    Missing Data
## 5892         bulbous
## 5893    Missing Data
## 5894    Missing Data
## 5895    Missing Data
## 5896         bulbous
## 5897         bulbous
## 5898    Missing Data
## 5899         bulbous
## 5900    Missing Data
## 5901         bulbous
## 5902         bulbous
## 5903         bulbous
## 5904         bulbous
## 5905         bulbous
## 5906    Missing Data
## 5907    Missing Data
## 5908         bulbous
## 5909         bulbous
## 5910         bulbous
## 5911         bulbous
## 5912         bulbous
## 5913    Missing Data
## 5914    Missing Data
## 5915         bulbous
## 5916    Missing Data
## 5917    Missing Data
## 5918         bulbous
## 5919         bulbous
## 5920         bulbous
## 5921         bulbous
## 5922         bulbous
## 5923         bulbous
## 5924         bulbous
## 5925         bulbous
## 5926         bulbous
## 5927         bulbous
## 5928    Missing Data
## 5929         bulbous
## 5930    Missing Data
## 5931    Missing Data
## 5932    Missing Data
## 5933    Missing Data
## 5934         bulbous
## 5935    Missing Data
## 5936         bulbous
## 5937    Missing Data
## 5938    Missing Data
## 5939    Missing Data
## 5940         bulbous
## 5941         bulbous
## 5942         bulbous
## 5943         bulbous
## 5944    Missing Data
## 5945         bulbous
## 5946         bulbous
## 5947         bulbous
## 5948    Missing Data
## 5949         bulbous
## 5950         bulbous
## 5951         bulbous
## 5952         bulbous
## 5953    Missing Data
## 5954         bulbous
## 5955    Missing Data
## 5956    Missing Data
## 5957         bulbous
## 5958         bulbous
## 5959         bulbous
## 5960    Missing Data
## 5961    Missing Data
## 5962         bulbous
## 5963         bulbous
## 5964    Missing Data
## 5965         bulbous
## 5966    Missing Data
## 5967         bulbous
## 5968         bulbous
## 5969         bulbous
## 5970    Missing Data
## 5971    Missing Data
## 5972         bulbous
## 5973    Missing Data
## 5974         bulbous
## 5975         bulbous
## 5976    Missing Data
## 5977         bulbous
## 5978         bulbous
## 5979         bulbous
## 5980    Missing Data
## 5981         bulbous
## 5982         bulbous
## 5983         bulbous
## 5984         bulbous
## 5985    Missing Data
## 5986         bulbous
## 5987         bulbous
## 5988         bulbous
## 5989    Missing Data
## 5990         bulbous
## 5991    Missing Data
## 5992         bulbous
## 5993         bulbous
## 5994    Missing Data
## 5995    Missing Data
## 5996    Missing Data
## 5997    Missing Data
## 5998         bulbous
## 5999         bulbous
## 6000    Missing Data
## 6001    Missing Data
## 6002    Missing Data
## 6003    Missing Data
## 6004    Missing Data
## 6005    Missing Data
## 6006    Missing Data
## 6007    Missing Data
## 6008    Missing Data
## 6009    Missing Data
## 6010    Missing Data
## 6011    Missing Data
## 6012    Missing Data
## 6013    Missing Data
## 6014    Missing Data
## 6015    Missing Data
## 6016    Missing Data
## 6017    Missing Data
## 6018    Missing Data
## 6019    Missing Data
## 6020    Missing Data
## 6021    Missing Data
## 6022    Missing Data
## 6023    Missing Data
## 6024    Missing Data
## 6025    Missing Data
## 6026    Missing Data
## 6027    Missing Data
## 6028    Missing Data
## 6029    Missing Data
## 6030    Missing Data
## 6031    Missing Data
## 6032    Missing Data
## 6033    Missing Data
## 6034    Missing Data
## 6035    Missing Data
## 6036    Missing Data
## 6037    Missing Data
## 6038    Missing Data
## 6039    Missing Data
## 6040    Missing Data
## 6041    Missing Data
## 6042    Missing Data
## 6043    Missing Data
## 6044    Missing Data
## 6045    Missing Data
## 6046    Missing Data
## 6047    Missing Data
## 6048    Missing Data
## 6049    Missing Data
## 6050    Missing Data
## 6051    Missing Data
## 6052    Missing Data
## 6053    Missing Data
## 6054    Missing Data
## 6055    Missing Data
## 6056    Missing Data
## 6057    Missing Data
## 6058    Missing Data
## 6059    Missing Data
## 6060    Missing Data
## 6061    Missing Data
## 6062    Missing Data
## 6063    Missing Data
## 6064    Missing Data
## 6065    Missing Data
## 6066    Missing Data
## 6067    Missing Data
## 6068    Missing Data
## 6069    Missing Data
## 6070    Missing Data
## 6071    Missing Data
## 6072    Missing Data
## 6073    Missing Data
## 6074    Missing Data
## 6075    Missing Data
## 6076    Missing Data
## 6077    Missing Data
## 6078    Missing Data
## 6079    Missing Data
## 6080    Missing Data
## 6081    Missing Data
## 6082    Missing Data
## 6083    Missing Data
## 6084    Missing Data
## 6085    Missing Data
## 6086    Missing Data
## 6087    Missing Data
## 6088    Missing Data
## 6089    Missing Data
## 6090    Missing Data
## 6091    Missing Data
## 6092    Missing Data
## 6093    Missing Data
## 6094    Missing Data
## 6095    Missing Data
## 6096    Missing Data
## 6097    Missing Data
## 6098    Missing Data
## 6099    Missing Data
## 6100    Missing Data
## 6101    Missing Data
## 6102    Missing Data
## 6103    Missing Data
## 6104    Missing Data
## 6105    Missing Data
## 6106    Missing Data
## 6107    Missing Data
## 6108    Missing Data
## 6109    Missing Data
## 6110    Missing Data
## 6111    Missing Data
## 6112    Missing Data
## 6113    Missing Data
## 6114    Missing Data
## 6115    Missing Data
## 6116    Missing Data
## 6117    Missing Data
## 6118    Missing Data
## 6119    Missing Data
## 6120         bulbous
## 6121    Missing Data
## 6122    Missing Data
## 6123    Missing Data
## 6124    Missing Data
## 6125    Missing Data
## 6126    Missing Data
## 6127    Missing Data
## 6128    Missing Data
## 6129    Missing Data
## 6130    Missing Data
## 6131    Missing Data
## 6132    Missing Data
## 6133    Missing Data
## 6134    Missing Data
## 6135    Missing Data
## 6136    Missing Data
## 6137    Missing Data
## 6138    Missing Data
## 6139    Missing Data
## 6140    Missing Data
## 6141    Missing Data
## 6142    Missing Data
## 6143    Missing Data
## 6144    Missing Data
## 6145    Missing Data
## 6146    Missing Data
## 6147    Missing Data
## 6148    Missing Data
## 6149    Missing Data
## 6150    Missing Data
## 6151    Missing Data
## 6152    Missing Data
## 6153    Missing Data
## 6154    Missing Data
## 6155    Missing Data
## 6156    Missing Data
## 6157    Missing Data
## 6158    Missing Data
## 6159    Missing Data
## 6160    Missing Data
## 6161    Missing Data
## 6162    Missing Data
## 6163    Missing Data
## 6164    Missing Data
## 6165    Missing Data
## 6166    Missing Data
## 6167    Missing Data
## 6168    Missing Data
## 6169    Missing Data
## 6170    Missing Data
## 6171    Missing Data
## 6172    Missing Data
## 6173    Missing Data
## 6174    Missing Data
## 6175    Missing Data
## 6176    Missing Data
## 6177    Missing Data
## 6178    Missing Data
## 6179    Missing Data
## 6180    Missing Data
## 6181    Missing Data
## 6182    Missing Data
## 6183    Missing Data
## 6184    Missing Data
## 6185    Missing Data
## 6186    Missing Data
## 6187    Missing Data
## 6188    Missing Data
## 6189    Missing Data
## 6190    Missing Data
## 6191    Missing Data
## 6192    Missing Data
## 6193    Missing Data
## 6194    Missing Data
## 6195    Missing Data
## 6196    Missing Data
## 6197    Missing Data
## 6198    Missing Data
## 6199    Missing Data
## 6200    Missing Data
## 6201    Missing Data
## 6202    Missing Data
## 6203    Missing Data
## 6204    Missing Data
## 6205    Missing Data
## 6206    Missing Data
## 6207    Missing Data
## 6208    Missing Data
## 6209    Missing Data
## 6210    Missing Data
## 6211    Missing Data
## 6212    Missing Data
## 6213    Missing Data
## 6214    Missing Data
## 6215    Missing Data
## 6216    Missing Data
## 6217    Missing Data
## 6218    Missing Data
## 6219    Missing Data
## 6220    Missing Data
## 6221    Missing Data
## 6222    Missing Data
## 6223    Missing Data
## 6224    Missing Data
## 6225    Missing Data
## 6226    Missing Data
## 6227    Missing Data
## 6228    Missing Data
## 6229    Missing Data
## 6230    Missing Data
## 6231    Missing Data
## 6232    Missing Data
## 6233    Missing Data
## 6234    Missing Data
## 6235    Missing Data
## 6236    Missing Data
## 6237    Missing Data
## 6238    Missing Data
## 6239    Missing Data
## 6240    Missing Data
## 6241    Missing Data
## 6242    Missing Data
## 6243    Missing Data
## 6244    Missing Data
## 6245    Missing Data
## 6246    Missing Data
## 6247    Missing Data
## 6248    Missing Data
## 6249    Missing Data
## 6250    Missing Data
## 6251    Missing Data
## 6252    Missing Data
## 6253    Missing Data
## 6254    Missing Data
## 6255    Missing Data
## 6256    Missing Data
## 6257    Missing Data
## 6258    Missing Data
## 6259    Missing Data
## 6260    Missing Data
## 6261    Missing Data
## 6262    Missing Data
## 6263    Missing Data
## 6264    Missing Data
## 6265    Missing Data
## 6266    Missing Data
## 6267    Missing Data
## 6268    Missing Data
## 6269    Missing Data
## 6270    Missing Data
## 6271    Missing Data
## 6272    Missing Data
## 6273    Missing Data
## 6274    Missing Data
## 6275    Missing Data
## 6276    Missing Data
## 6277    Missing Data
## 6278    Missing Data
## 6279    Missing Data
## 6280    Missing Data
## 6281    Missing Data
## 6282    Missing Data
## 6283    Missing Data
## 6284    Missing Data
## 6285    Missing Data
## 6286    Missing Data
## 6287    Missing Data
## 6288    Missing Data
## 6289    Missing Data
## 6290    Missing Data
## 6291    Missing Data
## 6292    Missing Data
## 6293    Missing Data
## 6294    Missing Data
## 6295    Missing Data
## 6296    Missing Data
## 6297    Missing Data
## 6298    Missing Data
## 6299    Missing Data
## 6300    Missing Data
## 6301    Missing Data
## 6302    Missing Data
## 6303    Missing Data
## 6304    Missing Data
## 6305    Missing Data
## 6306    Missing Data
## 6307    Missing Data
## 6308    Missing Data
## 6309    Missing Data
## 6310    Missing Data
## 6311    Missing Data
## 6312    Missing Data
## 6313    Missing Data
## 6314    Missing Data
## 6315    Missing Data
## 6316    Missing Data
## 6317    Missing Data
## 6318    Missing Data
## 6319    Missing Data
## 6320    Missing Data
## 6321    Missing Data
## 6322    Missing Data
## 6323    Missing Data
## 6324    Missing Data
## 6325    Missing Data
## 6326    Missing Data
## 6327    Missing Data
## 6328    Missing Data
## 6329    Missing Data
## 6330    Missing Data
## 6331    Missing Data
## 6332    Missing Data
## 6333    Missing Data
## 6334    Missing Data
## 6335    Missing Data
## 6336    Missing Data
## 6337    Missing Data
## 6338    Missing Data
## 6339    Missing Data
## 6340    Missing Data
## 6341    Missing Data
## 6342    Missing Data
## 6343    Missing Data
## 6344    Missing Data
## 6345    Missing Data
## 6346    Missing Data
## 6347    Missing Data
## 6348    Missing Data
## 6349    Missing Data
## 6350    Missing Data
## 6351    Missing Data
## 6352    Missing Data
## 6353    Missing Data
## 6354    Missing Data
## 6355    Missing Data
## 6356    Missing Data
## 6357    Missing Data
## 6358    Missing Data
## 6359    Missing Data
## 6360    Missing Data
## 6361    Missing Data
## 6362    Missing Data
## 6363    Missing Data
## 6364    Missing Data
## 6365    Missing Data
## 6366    Missing Data
## 6367    Missing Data
## 6368    Missing Data
## 6369    Missing Data
## 6370    Missing Data
## 6371    Missing Data
## 6372    Missing Data
## 6373    Missing Data
## 6374    Missing Data
## 6375    Missing Data
## 6376    Missing Data
## 6377    Missing Data
## 6378    Missing Data
## 6379    Missing Data
## 6380    Missing Data
## 6381    Missing Data
## 6382    Missing Data
## 6383    Missing Data
## 6384    Missing Data
## 6385    Missing Data
## 6386    Missing Data
## 6387    Missing Data
## 6388    Missing Data
## 6389    Missing Data
## 6390    Missing Data
## 6391    Missing Data
## 6392    Missing Data
## 6393    Missing Data
## 6394    Missing Data
## 6395    Missing Data
## 6396    Missing Data
## 6397    Missing Data
## 6398    Missing Data
## 6399    Missing Data
## 6400    Missing Data
## 6401    Missing Data
## 6402    Missing Data
## 6403    Missing Data
## 6404    Missing Data
## 6405    Missing Data
## 6406    Missing Data
## 6407    Missing Data
## 6408    Missing Data
## 6409    Missing Data
## 6410    Missing Data
## 6411    Missing Data
## 6412    Missing Data
## 6413    Missing Data
## 6414    Missing Data
## 6415            club
## 6416    Missing Data
## 6417    Missing Data
## 6418    Missing Data
## 6419    Missing Data
## 6420    Missing Data
## 6421    Missing Data
## 6422    Missing Data
## 6423    Missing Data
## 6424    Missing Data
## 6425    Missing Data
## 6426    Missing Data
## 6427    Missing Data
## 6428    Missing Data
## 6429    Missing Data
## 6430    Missing Data
## 6431    Missing Data
## 6432    Missing Data
## 6433    Missing Data
## 6434    Missing Data
## 6435    Missing Data
## 6436    Missing Data
## 6437    Missing Data
## 6438    Missing Data
## 6439    Missing Data
## 6440    Missing Data
## 6441    Missing Data
## 6442    Missing Data
## 6443    Missing Data
## 6444    Missing Data
## 6445    Missing Data
## 6446    Missing Data
## 6447    Missing Data
## 6448    Missing Data
## 6449    Missing Data
## 6450    Missing Data
## 6451    Missing Data
## 6452    Missing Data
## 6453    Missing Data
## 6454    Missing Data
## 6455    Missing Data
## 6456    Missing Data
## 6457    Missing Data
## 6458    Missing Data
## 6459    Missing Data
## 6460    Missing Data
## 6461    Missing Data
## 6462    Missing Data
## 6463    Missing Data
## 6464    Missing Data
## 6465    Missing Data
## 6466    Missing Data
## 6467    Missing Data
## 6468    Missing Data
## 6469    Missing Data
## 6470    Missing Data
## 6471    Missing Data
## 6472    Missing Data
## 6473    Missing Data
## 6474    Missing Data
## 6475    Missing Data
## 6476    Missing Data
## 6477    Missing Data
## 6478    Missing Data
## 6479    Missing Data
## 6480    Missing Data
## 6481    Missing Data
## 6482    Missing Data
## 6483    Missing Data
## 6484    Missing Data
## 6485    Missing Data
## 6486    Missing Data
## 6487    Missing Data
## 6488    Missing Data
## 6489    Missing Data
## 6490    Missing Data
## 6491    Missing Data
## 6492    Missing Data
## 6493    Missing Data
## 6494    Missing Data
## 6495    Missing Data
## 6496    Missing Data
## 6497    Missing Data
## 6498    Missing Data
## 6499    Missing Data
## 6500    Missing Data
## 6501    Missing Data
## 6502    Missing Data
## 6503    Missing Data
## 6504    Missing Data
## 6505    Missing Data
## 6506    Missing Data
## 6507    Missing Data
## 6508    Missing Data
## 6509    Missing Data
## 6510    Missing Data
## 6511    Missing Data
## 6512    Missing Data
## 6513    Missing Data
## 6514    Missing Data
## 6515    Missing Data
## 6516    Missing Data
## 6517    Missing Data
## 6518    Missing Data
## 6519    Missing Data
## 6520    Missing Data
## 6521    Missing Data
## 6522    Missing Data
## 6523    Missing Data
## 6524    Missing Data
## 6525    Missing Data
## 6526    Missing Data
## 6527    Missing Data
## 6528    Missing Data
## 6529    Missing Data
## 6530    Missing Data
## 6531    Missing Data
## 6532    Missing Data
## 6533    Missing Data
## 6534    Missing Data
## 6535    Missing Data
## 6536    Missing Data
## 6537    Missing Data
## 6538    Missing Data
## 6539    Missing Data
## 6540    Missing Data
## 6541    Missing Data
## 6542    Missing Data
## 6543    Missing Data
## 6544    Missing Data
## 6545    Missing Data
## 6546    Missing Data
## 6547    Missing Data
## 6548    Missing Data
## 6549    Missing Data
## 6550    Missing Data
## 6551    Missing Data
## 6552    Missing Data
## 6553    Missing Data
## 6554    Missing Data
## 6555    Missing Data
## 6556    Missing Data
## 6557    Missing Data
## 6558    Missing Data
## 6559    Missing Data
## 6560    Missing Data
## 6561    Missing Data
## 6562    Missing Data
## 6563    Missing Data
## 6564    Missing Data
## 6565    Missing Data
## 6566    Missing Data
## 6567    Missing Data
## 6568    Missing Data
## 6569    Missing Data
## 6570    Missing Data
## 6571    Missing Data
## 6572    Missing Data
## 6573    Missing Data
## 6574    Missing Data
## 6575    Missing Data
## 6576    Missing Data
## 6577    Missing Data
## 6578    Missing Data
## 6579    Missing Data
## 6580    Missing Data
## 6581    Missing Data
## 6582    Missing Data
## 6583    Missing Data
## 6584    Missing Data
## 6585    Missing Data
## 6586    Missing Data
## 6587    Missing Data
## 6588    Missing Data
## 6589    Missing Data
## 6590    Missing Data
## 6591    Missing Data
## 6592    Missing Data
## 6593    Missing Data
## 6594    Missing Data
## 6595    Missing Data
## 6596    Missing Data
## 6597    Missing Data
## 6598    Missing Data
## 6599    Missing Data
## 6600    Missing Data
## 6601    Missing Data
## 6602    Missing Data
## 6603    Missing Data
## 6604    Missing Data
## 6605    Missing Data
## 6606    Missing Data
## 6607    Missing Data
## 6608    Missing Data
## 6609    Missing Data
## 6610    Missing Data
## 6611    Missing Data
## 6612    Missing Data
## 6613    Missing Data
## 6614    Missing Data
## 6615    Missing Data
## 6616    Missing Data
## 6617    Missing Data
## 6618    Missing Data
## 6619    Missing Data
## 6620    Missing Data
## 6621    Missing Data
## 6622    Missing Data
## 6623    Missing Data
## 6624    Missing Data
## 6625    Missing Data
## 6626    Missing Data
## 6627    Missing Data
## 6628    Missing Data
## 6629    Missing Data
## 6630    Missing Data
## 6631    Missing Data
## 6632    Missing Data
## 6633    Missing Data
## 6634    Missing Data
## 6635    Missing Data
## 6636    Missing Data
## 6637    Missing Data
## 6638    Missing Data
## 6639    Missing Data
## 6640    Missing Data
## 6641    Missing Data
## 6642    Missing Data
## 6643    Missing Data
## 6644    Missing Data
## 6645    Missing Data
## 6646    Missing Data
## 6647    Missing Data
## 6648    Missing Data
## 6649    Missing Data
## 6650    Missing Data
## 6651    Missing Data
## 6652    Missing Data
## 6653    Missing Data
## 6654    Missing Data
## 6655    Missing Data
## 6656    Missing Data
## 6657    Missing Data
## 6658    Missing Data
## 6659    Missing Data
## 6660    Missing Data
## 6661    Missing Data
## 6662    Missing Data
## 6663    Missing Data
## 6664    Missing Data
## 6665    Missing Data
## 6666    Missing Data
## 6667    Missing Data
## 6668            club
## 6669    Missing Data
## 6670    Missing Data
## 6671    Missing Data
## 6672    Missing Data
## 6673    Missing Data
## 6674    Missing Data
## 6675    Missing Data
## 6676    Missing Data
## 6677    Missing Data
## 6678    Missing Data
## 6679    Missing Data
## 6680    Missing Data
## 6681    Missing Data
## 6682    Missing Data
## 6683    Missing Data
## 6684    Missing Data
## 6685    Missing Data
## 6686    Missing Data
## 6687    Missing Data
## 6688    Missing Data
## 6689    Missing Data
## 6690    Missing Data
## 6691    Missing Data
## 6692    Missing Data
## 6693    Missing Data
## 6694    Missing Data
## 6695    Missing Data
## 6696    Missing Data
## 6697    Missing Data
## 6698    Missing Data
## 6699    Missing Data
## 6700    Missing Data
## 6701    Missing Data
## 6702    Missing Data
## 6703    Missing Data
## 6704    Missing Data
## 6705    Missing Data
## 6706    Missing Data
## 6707    Missing Data
## 6708    Missing Data
## 6709    Missing Data
## 6710    Missing Data
## 6711    Missing Data
## 6712    Missing Data
## 6713    Missing Data
## 6714    Missing Data
## 6715    Missing Data
## 6716    Missing Data
## 6717    Missing Data
## 6718    Missing Data
## 6719    Missing Data
## 6720    Missing Data
## 6721    Missing Data
## 6722    Missing Data
## 6723    Missing Data
## 6724    Missing Data
## 6725    Missing Data
## 6726    Missing Data
## 6727    Missing Data
## 6728    Missing Data
## 6729    Missing Data
## 6730    Missing Data
## 6731    Missing Data
## 6732    Missing Data
## 6733    Missing Data
## 6734    Missing Data
## 6735    Missing Data
## 6736    Missing Data
## 6737    Missing Data
## 6738    Missing Data
## 6739    Missing Data
## 6740    Missing Data
## 6741    Missing Data
## 6742    Missing Data
## 6743    Missing Data
## 6744    Missing Data
## 6745    Missing Data
## 6746    Missing Data
## 6747    Missing Data
## 6748    Missing Data
## 6749    Missing Data
## 6750    Missing Data
## 6751    Missing Data
## 6752    Missing Data
## 6753    Missing Data
## 6754    Missing Data
## 6755    Missing Data
## 6756    Missing Data
## 6757    Missing Data
## 6758    Missing Data
## 6759    Missing Data
## 6760    Missing Data
## 6761    Missing Data
## 6762    Missing Data
## 6763    Missing Data
## 6764    Missing Data
## 6765    Missing Data
## 6766    Missing Data
## 6767    Missing Data
## 6768    Missing Data
## 6769    Missing Data
## 6770    Missing Data
## 6771    Missing Data
## 6772    Missing Data
## 6773    Missing Data
## 6774    Missing Data
## 6775    Missing Data
## 6776    Missing Data
## 6777    Missing Data
## 6778    Missing Data
## 6779    Missing Data
## 6780    Missing Data
## 6781    Missing Data
## 6782    Missing Data
## 6783    Missing Data
## 6784    Missing Data
## 6785    Missing Data
## 6786    Missing Data
## 6787    Missing Data
## 6788    Missing Data
## 6789    Missing Data
## 6790    Missing Data
## 6791    Missing Data
## 6792    Missing Data
## 6793    Missing Data
## 6794    Missing Data
## 6795    Missing Data
## 6796    Missing Data
## 6797    Missing Data
## 6798    Missing Data
## 6799    Missing Data
## 6800    Missing Data
## 6801    Missing Data
## 6802    Missing Data
## 6803    Missing Data
## 6804    Missing Data
## 6805    Missing Data
## 6806    Missing Data
## 6807    Missing Data
## 6808    Missing Data
## 6809    Missing Data
## 6810    Missing Data
## 6811    Missing Data
## 6812    Missing Data
## 6813    Missing Data
## 6814    Missing Data
## 6815    Missing Data
## 6816    Missing Data
## 6817    Missing Data
## 6818    Missing Data
## 6819    Missing Data
## 6820    Missing Data
## 6821    Missing Data
## 6822    Missing Data
## 6823    Missing Data
## 6824    Missing Data
## 6825    Missing Data
## 6826    Missing Data
## 6827    Missing Data
## 6828    Missing Data
## 6829    Missing Data
## 6830    Missing Data
## 6831    Missing Data
## 6832    Missing Data
## 6833    Missing Data
## 6834    Missing Data
## 6835    Missing Data
## 6836    Missing Data
## 6837    Missing Data
## 6838    Missing Data
## 6839    Missing Data
## 6840    Missing Data
## 6841    Missing Data
## 6842    Missing Data
## 6843    Missing Data
## 6844    Missing Data
## 6845    Missing Data
## 6846    Missing Data
## 6847    Missing Data
## 6848    Missing Data
## 6849    Missing Data
## 6850    Missing Data
## 6851    Missing Data
## 6852    Missing Data
## 6853    Missing Data
## 6854    Missing Data
## 6855            club
## 6856    Missing Data
## 6857    Missing Data
## 6858    Missing Data
## 6859    Missing Data
## 6860    Missing Data
## 6861    Missing Data
## 6862    Missing Data
## 6863    Missing Data
## 6864    Missing Data
## 6865    Missing Data
## 6866    Missing Data
## 6867    Missing Data
## 6868    Missing Data
## 6869    Missing Data
## 6870    Missing Data
## 6871    Missing Data
## 6872    Missing Data
## 6873    Missing Data
## 6874    Missing Data
## 6875    Missing Data
## 6876    Missing Data
## 6877    Missing Data
## 6878    Missing Data
## 6879    Missing Data
## 6880    Missing Data
## 6881    Missing Data
## 6882    Missing Data
## 6883    Missing Data
## 6884    Missing Data
## 6885    Missing Data
## 6886    Missing Data
## 6887    Missing Data
## 6888    Missing Data
## 6889    Missing Data
## 6890    Missing Data
## 6891    Missing Data
## 6892    Missing Data
## 6893    Missing Data
## 6894    Missing Data
## 6895    Missing Data
## 6896    Missing Data
## 6897    Missing Data
## 6898    Missing Data
## 6899    Missing Data
## 6900    Missing Data
## 6901    Missing Data
## 6902    Missing Data
## 6903    Missing Data
## 6904         bulbous
## 6905    Missing Data
## 6906    Missing Data
## 6907    Missing Data
## 6908    Missing Data
## 6909    Missing Data
## 6910    Missing Data
## 6911    Missing Data
## 6912            club
## 6913    Missing Data
## 6914    Missing Data
## 6915    Missing Data
## 6916    Missing Data
## 6917    Missing Data
## 6918    Missing Data
## 6919    Missing Data
## 6920    Missing Data
## 6921    Missing Data
## 6922    Missing Data
## 6923    Missing Data
## 6924    Missing Data
## 6925    Missing Data
## 6926    Missing Data
## 6927    Missing Data
## 6928         bulbous
## 6929    Missing Data
## 6930    Missing Data
## 6931    Missing Data
## 6932    Missing Data
## 6933    Missing Data
## 6934    Missing Data
## 6935    Missing Data
## 6936    Missing Data
## 6937    Missing Data
## 6938    Missing Data
## 6939    Missing Data
## 6940    Missing Data
## 6941         bulbous
## 6942    Missing Data
## 6943    Missing Data
## 6944    Missing Data
## 6945            club
## 6946    Missing Data
## 6947    Missing Data
## 6948    Missing Data
## 6949    Missing Data
## 6950    Missing Data
## 6951    Missing Data
## 6952    Missing Data
## 6953    Missing Data
## 6954    Missing Data
## 6955    Missing Data
## 6956    Missing Data
## 6957    Missing Data
## 6958    Missing Data
## 6959    Missing Data
## 6960    Missing Data
## 6961    Missing Data
## 6962    Missing Data
## 6963    Missing Data
## 6964    Missing Data
## 6965    Missing Data
## 6966    Missing Data
## 6967         bulbous
## 6968    Missing Data
## 6969    Missing Data
## 6970         bulbous
## 6971    Missing Data
## 6972    Missing Data
## 6973    Missing Data
## 6974    Missing Data
## 6975    Missing Data
## 6976    Missing Data
## 6977    Missing Data
## 6978    Missing Data
## 6979    Missing Data
## 6980    Missing Data
## 6981    Missing Data
## 6982    Missing Data
## 6983    Missing Data
## 6984         bulbous
## 6985    Missing Data
## 6986    Missing Data
## 6987    Missing Data
## 6988    Missing Data
## 6989    Missing Data
## 6990    Missing Data
## 6991            club
## 6992    Missing Data
## 6993    Missing Data
## 6994    Missing Data
## 6995    Missing Data
## 6996    Missing Data
## 6997    Missing Data
## 6998    Missing Data
## 6999    Missing Data
## 7000    Missing Data
## 7001    Missing Data
## 7002    Missing Data
## 7003    Missing Data
## 7004    Missing Data
## 7005    Missing Data
## 7006    Missing Data
## 7007    Missing Data
## 7008    Missing Data
## 7009    Missing Data
## 7010    Missing Data
## 7011    Missing Data
## 7012    Missing Data
## 7013    Missing Data
## 7014    Missing Data
## 7015    Missing Data
## 7016    Missing Data
## 7017    Missing Data
## 7018    Missing Data
## 7019    Missing Data
## 7020    Missing Data
## 7021    Missing Data
## 7022         bulbous
## 7023    Missing Data
## 7024    Missing Data
## 7025    Missing Data
## 7026    Missing Data
## 7027    Missing Data
## 7028    Missing Data
## 7029    Missing Data
## 7030    Missing Data
## 7031    Missing Data
## 7032    Missing Data
## 7033    Missing Data
## 7034            club
## 7035    Missing Data
## 7036    Missing Data
## 7037    Missing Data
## 7038    Missing Data
## 7039    Missing Data
## 7040    Missing Data
## 7041    Missing Data
## 7042    Missing Data
## 7043    Missing Data
## 7044    Missing Data
## 7045    Missing Data
## 7046    Missing Data
## 7047    Missing Data
## 7048    Missing Data
## 7049    Missing Data
## 7050    Missing Data
## 7051    Missing Data
## 7052    Missing Data
## 7053    Missing Data
## 7054    Missing Data
## 7055    Missing Data
## 7056    Missing Data
## 7057    Missing Data
## 7058    Missing Data
## 7059    Missing Data
## 7060    Missing Data
## 7061    Missing Data
## 7062    Missing Data
## 7063         bulbous
## 7064    Missing Data
## 7065            club
## 7066    Missing Data
## 7067    Missing Data
## 7068    Missing Data
## 7069    Missing Data
## 7070    Missing Data
## 7071    Missing Data
## 7072    Missing Data
## 7073         bulbous
## 7074    Missing Data
## 7075    Missing Data
## 7076    Missing Data
## 7077    Missing Data
## 7078    Missing Data
## 7079    Missing Data
## 7080    Missing Data
## 7081    Missing Data
## 7082    Missing Data
## 7083    Missing Data
## 7084    Missing Data
## 7085    Missing Data
## 7086    Missing Data
## 7087    Missing Data
## 7088    Missing Data
## 7089    Missing Data
## 7090    Missing Data
## 7091            club
## 7092    Missing Data
## 7093    Missing Data
## 7094    Missing Data
## 7095    Missing Data
## 7096    Missing Data
## 7097    Missing Data
## 7098    Missing Data
## 7099    Missing Data
## 7100            club
## 7101    Missing Data
## 7102    Missing Data
## 7103    Missing Data
## 7104    Missing Data
## 7105    Missing Data
## 7106    Missing Data
## 7107    Missing Data
## 7108    Missing Data
## 7109    Missing Data
## 7110    Missing Data
## 7111            club
## 7112    Missing Data
## 7113    Missing Data
## 7114    Missing Data
## 7115    Missing Data
## 7116         bulbous
## 7117    Missing Data
## 7118    Missing Data
## 7119    Missing Data
## 7120    Missing Data
## 7121    Missing Data
## 7122    Missing Data
## 7123    Missing Data
## 7124    Missing Data
## 7125    Missing Data
## 7126    Missing Data
## 7127    Missing Data
## 7128    Missing Data
## 7129    Missing Data
## 7130    Missing Data
## 7131    Missing Data
## 7132    Missing Data
## 7133    Missing Data
## 7134    Missing Data
## 7135    Missing Data
## 7136    Missing Data
## 7137    Missing Data
## 7138    Missing Data
## 7139    Missing Data
## 7140    Missing Data
## 7141    Missing Data
## 7142    Missing Data
## 7143    Missing Data
## 7144    Missing Data
## 7145    Missing Data
## 7146            club
## 7147    Missing Data
## 7148    Missing Data
## 7149    Missing Data
## 7150    Missing Data
## 7151    Missing Data
## 7152    Missing Data
## 7153    Missing Data
## 7154    Missing Data
## 7155    Missing Data
## 7156    Missing Data
## 7157    Missing Data
## 7158    Missing Data
## 7159    Missing Data
## 7160    Missing Data
## 7161    Missing Data
## 7162    Missing Data
## 7163    Missing Data
## 7164    Missing Data
## 7165    Missing Data
## 7166            club
## 7167    Missing Data
## 7168    Missing Data
## 7169    Missing Data
## 7170    Missing Data
## 7171    Missing Data
## 7172    Missing Data
## 7173    Missing Data
## 7174    Missing Data
## 7175    Missing Data
## 7176    Missing Data
## 7177    Missing Data
## 7178    Missing Data
## 7179    Missing Data
## 7180    Missing Data
## 7181         bulbous
## 7182    Missing Data
## 7183    Missing Data
## 7184    Missing Data
## 7185    Missing Data
## 7186    Missing Data
## 7187    Missing Data
## 7188    Missing Data
## 7189    Missing Data
## 7190    Missing Data
## 7191    Missing Data
## 7192    Missing Data
## 7193    Missing Data
## 7194    Missing Data
## 7195         bulbous
## 7196    Missing Data
## 7197    Missing Data
## 7198    Missing Data
## 7199    Missing Data
## 7200    Missing Data
## 7201    Missing Data
## 7202    Missing Data
## 7203    Missing Data
## 7204    Missing Data
## 7205    Missing Data
## 7206    Missing Data
## 7207    Missing Data
## 7208    Missing Data
## 7209    Missing Data
## 7210    Missing Data
## 7211    Missing Data
## 7212    Missing Data
## 7213    Missing Data
## 7214    Missing Data
## 7215    Missing Data
## 7216    Missing Data
## 7217    Missing Data
## 7218    Missing Data
## 7219    Missing Data
## 7220    Missing Data
## 7221    Missing Data
## 7222    Missing Data
## 7223    Missing Data
## 7224    Missing Data
## 7225    Missing Data
## 7226    Missing Data
## 7227    Missing Data
## 7228    Missing Data
## 7229    Missing Data
## 7230            club
## 7231    Missing Data
## 7232    Missing Data
## 7233    Missing Data
## 7234    Missing Data
## 7235    Missing Data
## 7236    Missing Data
## 7237    Missing Data
## 7238    Missing Data
## 7239    Missing Data
## 7240    Missing Data
## 7241    Missing Data
## 7242    Missing Data
## 7243    Missing Data
## 7244    Missing Data
## 7245    Missing Data
## 7246    Missing Data
## 7247    Missing Data
## 7248    Missing Data
## 7249    Missing Data
## 7250    Missing Data
## 7251    Missing Data
## 7252    Missing Data
## 7253    Missing Data
## 7254    Missing Data
## 7255    Missing Data
## 7256    Missing Data
## 7257    Missing Data
## 7258    Missing Data
## 7259    Missing Data
## 7260    Missing Data
## 7261    Missing Data
## 7262    Missing Data
## 7263    Missing Data
## 7264    Missing Data
## 7265            club
## 7266    Missing Data
## 7267    Missing Data
## 7268    Missing Data
## 7269    Missing Data
## 7270    Missing Data
## 7271    Missing Data
## 7272    Missing Data
## 7273    Missing Data
## 7274    Missing Data
## 7275    Missing Data
## 7276    Missing Data
## 7277    Missing Data
## 7278    Missing Data
## 7279    Missing Data
## 7280    Missing Data
## 7281    Missing Data
## 7282    Missing Data
## 7283    Missing Data
## 7284    Missing Data
## 7285            club
## 7286    Missing Data
## 7287    Missing Data
## 7288    Missing Data
## 7289    Missing Data
## 7290    Missing Data
## 7291    Missing Data
## 7292         bulbous
## 7293    Missing Data
## 7294    Missing Data
## 7295            club
## 7296    Missing Data
## 7297    Missing Data
## 7298    Missing Data
## 7299    Missing Data
## 7300         bulbous
## 7301    Missing Data
## 7302    Missing Data
## 7303    Missing Data
## 7304    Missing Data
## 7305    Missing Data
## 7306    Missing Data
## 7307    Missing Data
## 7308    Missing Data
## 7309    Missing Data
## 7310    Missing Data
## 7311    Missing Data
## 7312    Missing Data
## 7313    Missing Data
## 7314    Missing Data
## 7315    Missing Data
## 7316    Missing Data
## 7317    Missing Data
## 7318    Missing Data
## 7319    Missing Data
## 7320    Missing Data
## 7321    Missing Data
## 7322    Missing Data
## 7323            club
## 7324    Missing Data
## 7325    Missing Data
## 7326    Missing Data
## 7327    Missing Data
## 7328    Missing Data
## 7329    Missing Data
## 7330    Missing Data
## 7331    Missing Data
## 7332    Missing Data
## 7333    Missing Data
## 7334    Missing Data
## 7335    Missing Data
## 7336            club
## 7337    Missing Data
## 7338    Missing Data
## 7339    Missing Data
## 7340    Missing Data
## 7341    Missing Data
## 7342            club
## 7343    Missing Data
## 7344    Missing Data
## 7345    Missing Data
## 7346    Missing Data
## 7347    Missing Data
## 7348    Missing Data
## 7349    Missing Data
## 7350    Missing Data
## 7351    Missing Data
## 7352    Missing Data
## 7353         bulbous
## 7354    Missing Data
## 7355    Missing Data
## 7356    Missing Data
## 7357    Missing Data
## 7358    Missing Data
## 7359    Missing Data
## 7360         bulbous
## 7361    Missing Data
## 7362    Missing Data
## 7363    Missing Data
## 7364    Missing Data
## 7365    Missing Data
## 7366    Missing Data
## 7367            club
## 7368            club
## 7369    Missing Data
## 7370         bulbous
## 7371    Missing Data
## 7372    Missing Data
## 7373    Missing Data
## 7374    Missing Data
## 7375    Missing Data
## 7376    Missing Data
## 7377         bulbous
## 7378    Missing Data
## 7379    Missing Data
## 7380    Missing Data
## 7381    Missing Data
## 7382    Missing Data
## 7383    Missing Data
## 7384    Missing Data
## 7385    Missing Data
## 7386            club
## 7387    Missing Data
## 7388    Missing Data
## 7389    Missing Data
## 7390    Missing Data
## 7391    Missing Data
## 7392    Missing Data
## 7393    Missing Data
## 7394    Missing Data
## 7395    Missing Data
## 7396    Missing Data
## 7397    Missing Data
## 7398    Missing Data
## 7399    Missing Data
## 7400    Missing Data
## 7401            club
## 7402    Missing Data
## 7403    Missing Data
## 7404    Missing Data
## 7405    Missing Data
## 7406    Missing Data
## 7407    Missing Data
## 7408    Missing Data
## 7409    Missing Data
## 7410    Missing Data
## 7411    Missing Data
## 7412    Missing Data
## 7413    Missing Data
## 7414    Missing Data
## 7415         bulbous
## 7416    Missing Data
## 7417    Missing Data
## 7418    Missing Data
## 7419    Missing Data
## 7420    Missing Data
## 7421    Missing Data
## 7422         bulbous
## 7423    Missing Data
## 7424    Missing Data
## 7425    Missing Data
## 7426    Missing Data
## 7427    Missing Data
## 7428    Missing Data
## 7429    Missing Data
## 7430    Missing Data
## 7431    Missing Data
## 7432    Missing Data
## 7433    Missing Data
## 7434    Missing Data
## 7435    Missing Data
## 7436    Missing Data
## 7437    Missing Data
## 7438    Missing Data
## 7439    Missing Data
## 7440    Missing Data
## 7441    Missing Data
## 7442    Missing Data
## 7443         bulbous
## 7444    Missing Data
## 7445    Missing Data
## 7446    Missing Data
## 7447    Missing Data
## 7448    Missing Data
## 7449         bulbous
## 7450    Missing Data
## 7451    Missing Data
## 7452    Missing Data
## 7453    Missing Data
## 7454    Missing Data
## 7455    Missing Data
## 7456    Missing Data
## 7457    Missing Data
## 7458    Missing Data
## 7459    Missing Data
## 7460    Missing Data
## 7461    Missing Data
## 7462    Missing Data
## 7463    Missing Data
## 7464    Missing Data
## 7465    Missing Data
## 7466    Missing Data
## 7467    Missing Data
## 7468    Missing Data
## 7469            club
## 7470    Missing Data
## 7471    Missing Data
## 7472    Missing Data
## 7473    Missing Data
## 7474    Missing Data
## 7475    Missing Data
## 7476    Missing Data
## 7477    Missing Data
## 7478    Missing Data
## 7479    Missing Data
## 7480            club
## 7481         bulbous
## 7482    Missing Data
## 7483            club
## 7484    Missing Data
## 7485            club
## 7486    Missing Data
## 7487    Missing Data
## 7488    Missing Data
## 7489    Missing Data
## 7490    Missing Data
## 7491    Missing Data
## 7492    Missing Data
## 7493    Missing Data
## 7494    Missing Data
## 7495    Missing Data
## 7496    Missing Data
## 7497    Missing Data
## 7498    Missing Data
## 7499    Missing Data
## 7500    Missing Data
## 7501    Missing Data
## 7502    Missing Data
## 7503    Missing Data
## 7504    Missing Data
## 7505    Missing Data
## 7506    Missing Data
## 7507    Missing Data
## 7508    Missing Data
## 7509    Missing Data
## 7510    Missing Data
## 7511    Missing Data
## 7512    Missing Data
## 7513    Missing Data
## 7514    Missing Data
## 7515    Missing Data
## 7516    Missing Data
## 7517    Missing Data
## 7518    Missing Data
## 7519    Missing Data
## 7520    Missing Data
## 7521    Missing Data
## 7522    Missing Data
## 7523    Missing Data
## 7524    Missing Data
## 7525    Missing Data
## 7526    Missing Data
## 7527    Missing Data
## 7528    Missing Data
## 7529    Missing Data
## 7530    Missing Data
## 7531    Missing Data
## 7532    Missing Data
## 7533         bulbous
## 7534    Missing Data
## 7535    Missing Data
## 7536            club
## 7537    Missing Data
## 7538    Missing Data
## 7539    Missing Data
## 7540    Missing Data
## 7541    Missing Data
## 7542    Missing Data
## 7543    Missing Data
## 7544    Missing Data
## 7545    Missing Data
## 7546    Missing Data
## 7547    Missing Data
## 7548         bulbous
## 7549    Missing Data
## 7550    Missing Data
## 7551    Missing Data
## 7552    Missing Data
## 7553    Missing Data
## 7554    Missing Data
## 7555    Missing Data
## 7556    Missing Data
## 7557    Missing Data
## 7558    Missing Data
## 7559    Missing Data
## 7560    Missing Data
## 7561    Missing Data
## 7562    Missing Data
## 7563    Missing Data
## 7564    Missing Data
## 7565    Missing Data
## 7566    Missing Data
## 7567    Missing Data
## 7568    Missing Data
## 7569    Missing Data
## 7570         bulbous
## 7571    Missing Data
## 7572    Missing Data
## 7573    Missing Data
## 7574    Missing Data
## 7575    Missing Data
## 7576    Missing Data
## 7577    Missing Data
## 7578    Missing Data
## 7579    Missing Data
## 7580    Missing Data
## 7581    Missing Data
## 7582    Missing Data
## 7583    Missing Data
## 7584    Missing Data
## 7585    Missing Data
## 7586    Missing Data
## 7587    Missing Data
## 7588    Missing Data
## 7589    Missing Data
## 7590    Missing Data
## 7591    Missing Data
## 7592    Missing Data
## 7593    Missing Data
## 7594    Missing Data
## 7595    Missing Data
## 7596    Missing Data
## 7597         bulbous
## 7598    Missing Data
## 7599    Missing Data
## 7600            club
## 7601    Missing Data
## 7602         bulbous
## 7603    Missing Data
## 7604    Missing Data
## 7605    Missing Data
## 7606    Missing Data
## 7607    Missing Data
## 7608    Missing Data
## 7609    Missing Data
## 7610    Missing Data
## 7611    Missing Data
## 7612    Missing Data
## 7613    Missing Data
## 7614    Missing Data
## 7615    Missing Data
## 7616    Missing Data
## 7617    Missing Data
## 7618    Missing Data
## 7619    Missing Data
## 7620    Missing Data
## 7621    Missing Data
## 7622    Missing Data
## 7623    Missing Data
## 7624    Missing Data
## 7625    Missing Data
## 7626    Missing Data
## 7627    Missing Data
## 7628    Missing Data
## 7629    Missing Data
## 7630    Missing Data
## 7631    Missing Data
## 7632    Missing Data
## 7633    Missing Data
## 7634    Missing Data
## 7635            club
## 7636    Missing Data
## 7637    Missing Data
## 7638    Missing Data
## 7639    Missing Data
## 7640    Missing Data
## 7641    Missing Data
## 7642    Missing Data
## 7643    Missing Data
## 7644    Missing Data
## 7645    Missing Data
## 7646    Missing Data
## 7647    Missing Data
## 7648    Missing Data
## 7649    Missing Data
## 7650    Missing Data
## 7651    Missing Data
## 7652    Missing Data
## 7653    Missing Data
## 7654    Missing Data
## 7655    Missing Data
## 7656    Missing Data
## 7657    Missing Data
## 7658    Missing Data
## 7659    Missing Data
## 7660    Missing Data
## 7661    Missing Data
## 7662    Missing Data
## 7663    Missing Data
## 7664    Missing Data
## 7665    Missing Data
## 7666    Missing Data
## 7667    Missing Data
## 7668    Missing Data
## 7669    Missing Data
## 7670    Missing Data
## 7671    Missing Data
## 7672    Missing Data
## 7673         bulbous
## 7674    Missing Data
## 7675    Missing Data
## 7676    Missing Data
## 7677    Missing Data
## 7678    Missing Data
## 7679    Missing Data
## 7680    Missing Data
## 7681    Missing Data
## 7682    Missing Data
## 7683    Missing Data
## 7684    Missing Data
## 7685    Missing Data
## 7686    Missing Data
## 7687    Missing Data
## 7688    Missing Data
## 7689    Missing Data
## 7690    Missing Data
## 7691    Missing Data
## 7692    Missing Data
## 7693    Missing Data
## 7694    Missing Data
## 7695    Missing Data
## 7696    Missing Data
## 7697    Missing Data
## 7698    Missing Data
## 7699    Missing Data
## 7700    Missing Data
## 7701    Missing Data
## 7702         bulbous
## 7703    Missing Data
## 7704         bulbous
## 7705         bulbous
## 7706            club
## 7707    Missing Data
## 7708    Missing Data
## 7709            club
## 7710    Missing Data
## 7711    Missing Data
## 7712    Missing Data
## 7713    Missing Data
## 7714            club
## 7715    Missing Data
## 7716    Missing Data
## 7717         bulbous
## 7718    Missing Data
## 7719    Missing Data
## 7720    Missing Data
## 7721         bulbous
## 7722    Missing Data
## 7723    Missing Data
## 7724    Missing Data
## 7725    Missing Data
## 7726    Missing Data
## 7727            club
## 7728    Missing Data
## 7729    Missing Data
## 7730    Missing Data
## 7731    Missing Data
## 7732    Missing Data
## 7733    Missing Data
## 7734    Missing Data
## 7735    Missing Data
## 7736    Missing Data
## 7737    Missing Data
## 7738    Missing Data
## 7739            club
## 7740    Missing Data
## 7741    Missing Data
## 7742    Missing Data
## 7743    Missing Data
## 7744    Missing Data
## 7745    Missing Data
## 7746    Missing Data
## 7747    Missing Data
## 7748    Missing Data
## 7749    Missing Data
## 7750    Missing Data
## 7751    Missing Data
## 7752    Missing Data
## 7753    Missing Data
## 7754    Missing Data
## 7755    Missing Data
## 7756    Missing Data
## 7757    Missing Data
## 7758    Missing Data
## 7759    Missing Data
## 7760    Missing Data
## 7761    Missing Data
## 7762    Missing Data
## 7763    Missing Data
## 7764    Missing Data
## 7765    Missing Data
## 7766    Missing Data
## 7767    Missing Data
## 7768    Missing Data
## 7769    Missing Data
## 7770    Missing Data
## 7771    Missing Data
## 7772    Missing Data
## 7773    Missing Data
## 7774    Missing Data
## 7775    Missing Data
## 7776    Missing Data
## 7777    Missing Data
## 7778    Missing Data
## 7779         bulbous
## 7780    Missing Data
## 7781    Missing Data
## 7782    Missing Data
## 7783    Missing Data
## 7784    Missing Data
## 7785    Missing Data
## 7786    Missing Data
## 7787    Missing Data
## 7788    Missing Data
## 7789    Missing Data
## 7790    Missing Data
## 7791    Missing Data
## 7792    Missing Data
## 7793    Missing Data
## 7794    Missing Data
## 7795    Missing Data
## 7796    Missing Data
## 7797    Missing Data
## 7798    Missing Data
## 7799    Missing Data
## 7800    Missing Data
## 7801            club
## 7802    Missing Data
## 7803    Missing Data
## 7804    Missing Data
## 7805            club
## 7806    Missing Data
## 7807    Missing Data
## 7808    Missing Data
## 7809    Missing Data
## 7810    Missing Data
## 7811    Missing Data
## 7812    Missing Data
## 7813    Missing Data
## 7814    Missing Data
## 7815    Missing Data
## 7816    Missing Data
## 7817    Missing Data
## 7818    Missing Data
## 7819    Missing Data
## 7820            club
## 7821    Missing Data
## 7822    Missing Data
## 7823    Missing Data
## 7824    Missing Data
## 7825    Missing Data
## 7826    Missing Data
## 7827    Missing Data
## 7828    Missing Data
## 7829    Missing Data
## 7830    Missing Data
## 7831    Missing Data
## 7832    Missing Data
## 7833    Missing Data
## 7834    Missing Data
## 7835    Missing Data
## 7836    Missing Data
## 7837    Missing Data
## 7838    Missing Data
## 7839    Missing Data
## 7840    Missing Data
## 7841    Missing Data
## 7842    Missing Data
## 7843    Missing Data
## 7844    Missing Data
## 7845    Missing Data
## 7846    Missing Data
## 7847    Missing Data
## 7848    Missing Data
## 7849    Missing Data
## 7850    Missing Data
## 7851    Missing Data
## 7852    Missing Data
## 7853    Missing Data
## 7854    Missing Data
## 7855    Missing Data
## 7856    Missing Data
## 7857    Missing Data
## 7858    Missing Data
## 7859    Missing Data
## 7860    Missing Data
## 7861    Missing Data
## 7862    Missing Data
## 7863    Missing Data
## 7864    Missing Data
## 7865    Missing Data
## 7866    Missing Data
## 7867    Missing Data
## 7868    Missing Data
## 7869    Missing Data
## 7870    Missing Data
## 7871    Missing Data
## 7872    Missing Data
## 7873    Missing Data
## 7874    Missing Data
## 7875    Missing Data
## 7876    Missing Data
## 7877    Missing Data
## 7878    Missing Data
## 7879    Missing Data
## 7880    Missing Data
## 7881    Missing Data
## 7882    Missing Data
## 7883    Missing Data
## 7884    Missing Data
## 7885    Missing Data
## 7886    Missing Data
## 7887         bulbous
## 7888    Missing Data
## 7889    Missing Data
## 7890    Missing Data
## 7891    Missing Data
## 7892    Missing Data
## 7893    Missing Data
## 7894    Missing Data
## 7895    Missing Data
## 7896    Missing Data
## 7897    Missing Data
## 7898         bulbous
## 7899    Missing Data
## 7900    Missing Data
## 7901    Missing Data
## 7902    Missing Data
## 7903    Missing Data
## 7904    Missing Data
## 7905    Missing Data
## 7906    Missing Data
## 7907    Missing Data
## 7908    Missing Data
## 7909    Missing Data
## 7910            club
## 7911    Missing Data
## 7912    Missing Data
## 7913    Missing Data
## 7914    Missing Data
## 7915    Missing Data
## 7916    Missing Data
## 7917    Missing Data
## 7918    Missing Data
## 7919         bulbous
## 7920    Missing Data
## 7921    Missing Data
## 7922    Missing Data
## 7923    Missing Data
## 7924    Missing Data
## 7925    Missing Data
## 7926    Missing Data
## 7927    Missing Data
## 7928    Missing Data
## 7929    Missing Data
## 7930    Missing Data
## 7931         bulbous
## 7932    Missing Data
## 7933    Missing Data
## 7934    Missing Data
## 7935    Missing Data
## 7936    Missing Data
## 7937    Missing Data
## 7938    Missing Data
## 7939    Missing Data
## 7940         bulbous
## 7941            club
## 7942    Missing Data
## 7943    Missing Data
## 7944    Missing Data
## 7945    Missing Data
## 7946         bulbous
## 7947    Missing Data
## 7948    Missing Data
## 7949    Missing Data
## 7950    Missing Data
## 7951    Missing Data
## 7952         bulbous
## 7953    Missing Data
## 7954    Missing Data
## 7955    Missing Data
## 7956    Missing Data
## 7957    Missing Data
## 7958    Missing Data
## 7959    Missing Data
## 7960    Missing Data
## 7961    Missing Data
## 7962    Missing Data
## 7963    Missing Data
## 7964    Missing Data
## 7965         bulbous
## 7966    Missing Data
## 7967    Missing Data
## 7968    Missing Data
## 7969    Missing Data
## 7970    Missing Data
## 7971    Missing Data
## 7972    Missing Data
## 7973    Missing Data
## 7974    Missing Data
## 7975    Missing Data
## 7976    Missing Data
## 7977    Missing Data
## 7978    Missing Data
## 7979    Missing Data
## 7980    Missing Data
## 7981            club
## 7982    Missing Data
## 7983    Missing Data
## 7984         bulbous
## 7985    Missing Data
## 7986         bulbous
## 7987    Missing Data
## 7988    Missing Data
## 7989    Missing Data
## 7990    Missing Data
## 7991    Missing Data
## 7992    Missing Data
## 7993    Missing Data
## 7994    Missing Data
## 7995    Missing Data
## 7996    Missing Data
## 7997    Missing Data
## 7998    Missing Data
## 7999    Missing Data
## 8000    Missing Data
## 8001         bulbous
## 8002    Missing Data
## 8003    Missing Data
## 8004    Missing Data
## 8005    Missing Data
## 8006    Missing Data
## 8007    Missing Data
## 8008    Missing Data
## 8009    Missing Data
## 8010    Missing Data
## 8011    Missing Data
## 8012    Missing Data
## 8013    Missing Data
## 8014    Missing Data
## 8015    Missing Data
## 8016    Missing Data
## 8017    Missing Data
## 8018    Missing Data
## 8019    Missing Data
## 8020    Missing Data
## 8021    Missing Data
## 8022    Missing Data
## 8023    Missing Data
## 8024    Missing Data
## 8025    Missing Data
## 8026    Missing Data
## 8027    Missing Data
## 8028    Missing Data
## 8029    Missing Data
## 8030    Missing Data
## 8031    Missing Data
## 8032    Missing Data
## 8033    Missing Data
## 8034    Missing Data
## 8035    Missing Data
## 8036    Missing Data
## 8037    Missing Data
## 8038         bulbous
## 8039    Missing Data
## 8040    Missing Data
## 8041    Missing Data
## 8042    Missing Data
## 8043    Missing Data
## 8044    Missing Data
## 8045    Missing Data
## 8046    Missing Data
## 8047    Missing Data
## 8048    Missing Data
## 8049    Missing Data
## 8050    Missing Data
## 8051    Missing Data
## 8052    Missing Data
## 8053    Missing Data
## 8054    Missing Data
## 8055    Missing Data
## 8056    Missing Data
## 8057    Missing Data
## 8058    Missing Data
## 8059    Missing Data
## 8060    Missing Data
## 8061    Missing Data
## 8062    Missing Data
## 8063    Missing Data
## 8064    Missing Data
## 8065    Missing Data
## 8066    Missing Data
## 8067    Missing Data
## 8068    Missing Data
## 8069    Missing Data
## 8070    Missing Data
## 8071    Missing Data
## 8072    Missing Data
## 8073    Missing Data
## 8074    Missing Data
## 8075    Missing Data
## 8076    Missing Data
## 8077    Missing Data
## 8078    Missing Data
## 8079    Missing Data
## 8080    Missing Data
## 8081    Missing Data
## 8082    Missing Data
## 8083    Missing Data
## 8084    Missing Data
## 8085    Missing Data
## 8086    Missing Data
## 8087    Missing Data
## 8088    Missing Data
## 8089    Missing Data
## 8090    Missing Data
## 8091    Missing Data
## 8092    Missing Data
## 8093    Missing Data
## 8094    Missing Data
## 8095            club
## 8096    Missing Data
## 8097    Missing Data
## 8098    Missing Data
## 8099    Missing Data
## 8100    Missing Data
## 8101    Missing Data
## 8102    Missing Data
## 8103    Missing Data
## 8104    Missing Data
## 8105    Missing Data
## 8106    Missing Data
## 8107    Missing Data
## 8108    Missing Data
## 8109    Missing Data
## 8110    Missing Data
## 8111    Missing Data
## 8112    Missing Data
## 8113    Missing Data
## 8114            club
## 8115    Missing Data
## 8116    Missing Data
## 8117    Missing Data
## 8118    Missing Data
## 8119    Missing Data
## 8120    Missing Data
## 8121    Missing Data
## 8122    Missing Data
## 8123    Missing Data