diff --git a/HD wallpaper.xcworkspace/contents.xcworkspacedata b/HD wallpaper.xcworkspace/contents.xcworkspacedata index febf3e2..5a70653 100644 --- a/HD wallpaper.xcworkspace/contents.xcworkspacedata +++ b/HD wallpaper.xcworkspace/contents.xcworkspacedata @@ -2,7 +2,7 @@ + location = "group:/Users/aaa/Documents/IOS/BZ/723/HDwallpaper/TallPaper.xcodeproj"> diff --git a/HD wallpaper.xcworkspace/xcuserdata/aaa.xcuserdatad/UserInterfaceState.xcuserstate b/HD wallpaper.xcworkspace/xcuserdata/aaa.xcuserdatad/UserInterfaceState.xcuserstate index 437bad2..92d8792 100644 Binary files a/HD wallpaper.xcworkspace/xcuserdata/aaa.xcuserdatad/UserInterfaceState.xcuserstate and b/HD wallpaper.xcworkspace/xcuserdata/aaa.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/HDwallpaper/AWM_AllWallpaperViewController.m b/HDwallpaper/AWM_AllWallpaperViewController.m index 9f27484..0210de1 100644 --- a/HDwallpaper/AWM_AllWallpaperViewController.m +++ b/HDwallpaper/AWM_AllWallpaperViewController.m @@ -16,7 +16,7 @@ @end @implementation AWM_AllWallpaperViewController -- (void)backItemEvent{ +- (void)backItemEventLove:(id)sender{ __weak typeof(self) weakSelf = self; [[AWM_WallPapaerADManager shareInstance] showIntersitialAD_Back:^(NSInteger actionType) { [weakSelf.navigationController popViewControllerAnimated:YES]; @@ -46,7 +46,7 @@ NSString *backitem = KLS(@"back", @"A friendly greeting"); UIButton *backItem = [[UIButton alloc] initWithFrame:CGRectMake(20-1,0-1,74-1,44-1)]; [backItem setImage:[UIImage imageNamed:backitem] forState:UIControlStateNormal]; - [backItem addTarget:self action:@selector(backItemEvent) forControlEvents:UIControlEventTouchUpInside]; + [backItem addTarget:self action:@selector(backItemEventLove:) forControlEvents:UIControlEventTouchUpInside]; self.backItem = backItem; self.data = @[@[@"fj1",@"fj2",@"fj3",@"fj4",@"fj5",@"fj6",@"fj7",@"fj8",@"fj9",@"fj10"],@[@"mv1",@"mv2",@"mv3",@"mv4",@"mv5",@"mv6",@"mv7",@"mv8",@"mv9",@"mv10"],@[@"kt1",@"kt2",@"kt3",@"kt4",@"kt5",@"kt6",@"kt7",@"kt8",@"kt9"],@[@"rw1",@"rw2",@"rw3",@"rw4",@"rw5",@"rw6",@"rw7",@"rw8",@"rw9",@"rw10",@"rw11",@"rw12",@"rw13",@"rw14",@"rw15",@"rw16",@"rw17",@"rw18",@"rw19"]]; @@ -87,7 +87,7 @@ [btn setImage:[UIImage imageNamed:self.data[indexPath.section][i]] forState:UIControlStateNormal]; btn.layer.cornerRadius = 5; btn.layer.masksToBounds = YES; - [btn addTarget:self action:@selector(headerEvent:) forControlEvents:UIControlEventTouchUpInside]; + [btn addTarget:self action:@selector(headerEventLove:) forControlEvents:UIControlEventTouchUpInside]; btn.tag = indexPath.section; [cell.contentView addSubview:btn]; } @@ -129,7 +129,7 @@ wpdetail.data = self.data[indexPath.section]; [self.navigationController pushViewController:wpdetail animated:YES]; } -- (void)headerEvent:(UIButton *)btn{ +- (void)headerEventLove:(UIButton *)btn{ AWM_DetailViewController *wpdetail = [[AWM_DetailViewController alloc] init]; wpdetail.data = self.data[btn.tag]; [self.navigationController pushViewController:wpdetail animated:YES]; diff --git a/HDwallpaper/AWM_DetailViewController.m b/HDwallpaper/AWM_DetailViewController.m index 02d981e..bde7afb 100644 --- a/HDwallpaper/AWM_DetailViewController.m +++ b/HDwallpaper/AWM_DetailViewController.m @@ -16,14 +16,14 @@ @end @implementation AWM_DetailViewController -- (void)backItemEvent{ +- (void)backItemEventLove:(id)sender{ __weak typeof(self) weakSelf = self; [[AWM_WallPapaerADManager shareInstance] showIntersitialAD_Back:^(NSInteger actionType) { [weakSelf.navigationController popViewControllerAnimated:YES]; }]; // [self.navigationController popViewControllerAnimated:YES]; } -- (void)saveItemEvent{ +- (void)saveItemEventLove:(id)sender{ UIImageWriteToSavedPhotosAlbum([UIImage imageNamed:self.data[self.index]], self, @selector(imageSavedToPhotosAlbum:didFinishSavingWithError:contextInfo:), nil); AppDelegate *app = (AppDelegate *)[[UIApplication sharedApplication] delegate]; [app.saveImages addObject:self.data[self.index]]; @@ -56,13 +56,13 @@ NSString *backitem = KLS(@"back", @"A friendly greeting"); UIButton *backItem = [[UIButton alloc] initWithFrame:CGRectMake(20-1,0-1,74-1,44-1)]; [backItem setImage:[UIImage imageNamed:backitem] forState:UIControlStateNormal]; - [backItem addTarget:self action:@selector(backItemEvent) forControlEvents:UIControlEventTouchUpInside]; + [backItem addTarget:self action:@selector(backItemEventLove:) forControlEvents:UIControlEventTouchUpInside]; self.backItem = backItem; UIButton *navImage = [[UIButton alloc] initWithFrame:CGRectMake(WPScreen_w-100-1,2-1,74-1,40-1)]; NSString *save = KLS(@"save", @"A friendly greeting"); [navImage setImage:[UIImage imageNamed:save] forState:UIControlStateNormal]; - [navImage addTarget:self action:@selector(saveItemEvent) forControlEvents:UIControlEventTouchUpInside]; + [navImage addTarget:self action:@selector(saveItemEventLove:) forControlEvents:UIControlEventTouchUpInside]; self.navImage = navImage; @@ -86,17 +86,17 @@ UIButton *shangItem = [[UIButton alloc] initWithFrame:CGRectMake((WPScreen_w-240)/3-1,WPScreen_h-170-1,120-1,50-1)]; NSString *shang = KLS(@"shang", @"A friendly greeting"); [shangItem setImage:[UIImage imageNamed:shang] forState:UIControlStateNormal]; - [shangItem addTarget:self action:@selector(shangItemEvent) forControlEvents:UIControlEventTouchUpInside]; + [shangItem addTarget:self action:@selector(shangItemEventLove:) forControlEvents:UIControlEventTouchUpInside]; [self.view addSubview:shangItem]; UIButton *xiaItem = [[UIButton alloc] initWithFrame:CGRectMake((WPScreen_w-240)/3*2+120-1-1,WPScreen_h-170-1-1,120-1-1,50-1-1)]; NSString *xia = KLS(@"xia", @"A friendly greeting"); [xiaItem setImage:[UIImage imageNamed:xia] forState:UIControlStateNormal]; - [xiaItem addTarget:self action:@selector(xiaItemEvent) forControlEvents:UIControlEventTouchUpInside]; + [xiaItem addTarget:self action:@selector(xiaItemEventLove:) forControlEvents:UIControlEventTouchUpInside]; [self.view addSubview:xiaItem]; } -- (void)shangItemEvent{ +- (void)shangItemEventLove:(id)sender{ if (self.index == 0) { UIAlertView *iconAl = [[UIAlertView alloc] initWithTitle:@"" message:@"It's already the first one" delegate:self cancelButtonTitle:nil otherButtonTitles:@"ok", nil]; [iconAl show]; @@ -105,7 +105,7 @@ self.index --; [self.wpscroll setContentOffset:CGPointMake(self.index*WPScreen_w, 0)]; } -- (void)xiaItemEvent{ +- (void)xiaItemEventLove:(id)sender{ if (self.index == self.data.count-1) { UIAlertView *iconAl = [[UIAlertView alloc] initWithTitle:@"" message:@"It's the last one" delegate:self cancelButtonTitle:nil otherButtonTitles:@"ok", nil]; [iconAl show]; diff --git a/HDwallpaper/AWM_ForMyViewController.m b/HDwallpaper/AWM_ForMyViewController.m index e8cbc71..c05b595 100644 --- a/HDwallpaper/AWM_ForMyViewController.m +++ b/HDwallpaper/AWM_ForMyViewController.m @@ -37,13 +37,13 @@ // btn.layer.cornerRadius = 5; // btn.layer.masksToBounds = YES; btn.tag = i; - [btn addTarget:self action:@selector(iconEvent:) forControlEvents:UIControlEventTouchUpInside]; + [btn addTarget:self action:@selector(iconEventLove:) forControlEvents:UIControlEventTouchUpInside]; [self.view addSubview:btn]; } UIButton *pracy_btn = [UIButton new]; [self.view addSubview:pracy_btn]; - [pracy_btn addTarget:self action:@selector(showUserPravcy) forControlEvents:UIControlEventTouchUpInside]; + [pracy_btn addTarget:self action:@selector(showUserPravcyLove:) forControlEvents:UIControlEventTouchUpInside]; NSString *privacy = KLS(@"privacy", @"A friendly greeting"); [pracy_btn setTitle:privacy forState:UIControlStateNormal]; [pracy_btn setTitleColor:[UIColor blueColor] forState:UIControlStateNormal]; @@ -55,12 +55,12 @@ } //显示用户隐私 -- (void)showUserPravcy { +- (void)showUserPravcyLove:(id)s { AWM_UserPravcyVC *vc = [AWM_UserPravcyVC new]; [self.navigationController pushViewController:vc animated:YES]; } -- (void)iconEvent:(UIButton *)icon{ +- (void)iconEventLove:(UIButton *)icon{ if (icon.tag == 0) { AWM_wallpaperViewController *wpdetail = [[AWM_wallpaperViewController alloc] init]; [self.navigationController pushViewController:wpdetail animated:YES]; diff --git a/HDwallpaper/AWM_HotViewController.m b/HDwallpaper/AWM_HotViewController.m index a622124..633974c 100644 --- a/HDwallpaper/AWM_HotViewController.m +++ b/HDwallpaper/AWM_HotViewController.m @@ -37,7 +37,7 @@ UIButton *searchBtn = [[UIButton alloc] initWithFrame:CGRectMake((WPScreen_w-300)/2-1,100-1,300-1,96-1)]; NSString *search = KLS(@"search", @"A friendly greeting"); [searchBtn setBackgroundImage:[UIImage imageNamed:search] forState:UIControlStateNormal]; - [searchBtn addTarget:self action:@selector(searchEvent) forControlEvents:UIControlEventTouchUpInside]; + [searchBtn addTarget:self action:@selector(searchEventLove) forControlEvents:UIControlEventTouchUpInside]; [self.view addSubview:searchBtn]; self.table = [[UITableView alloc] initWithFrame:CGRectMake(0-1,220-1,WPScreen_w-1,WPScreen_h-220-1) style:UITableViewStyleGrouped]; @@ -47,7 +47,7 @@ self.table.separatorColor = [UIColor clearColor]; [self.view addSubview:self.table]; } -- (void)searchEvent{ +- (void)searchEventLove{ AWM_SearchViewController *vc = [[AWM_SearchViewController alloc] init]; [self.navigationController pushViewController:vc animated:YES]; } @@ -78,7 +78,7 @@ [btn setImage:[UIImage imageNamed:self.data[indexPath.section][i]] forState:UIControlStateNormal]; btn.layer.cornerRadius = 5; btn.layer.masksToBounds = YES; - [btn addTarget:self action:@selector(headerEvent) forControlEvents:UIControlEventTouchUpInside]; + [btn addTarget:self action:@selector(headerEventLove:) forControlEvents:UIControlEventTouchUpInside]; [bgView addSubview:btn]; } @@ -91,7 +91,7 @@ [bgView addSubview:more]; return cell; } -- (void)headerEvent{ +- (void)headerEventLove:(id)sender{ AWM_AllWallpaperViewController *wpdetail = [[AWM_AllWallpaperViewController alloc] init]; [self.navigationController pushViewController:wpdetail animated:YES]; } diff --git a/HDwallpaper/AWM_OnePageViewController.m b/HDwallpaper/AWM_OnePageViewController.m index 21bf64d..f2b530d 100644 --- a/HDwallpaper/AWM_OnePageViewController.m +++ b/HDwallpaper/AWM_OnePageViewController.m @@ -36,7 +36,7 @@ UIButton *searchBtn = [[UIButton alloc] initWithFrame:CGRectMake((WPScreen_w-300)/2-1,100-1,300-1,96-1)]; NSString *search = KLS(@"search", @"A friendly greeting"); [searchBtn setBackgroundImage:[UIImage imageNamed:search] forState:UIControlStateNormal]; - [searchBtn addTarget:self action:@selector(searchEvent) forControlEvents:UIControlEventTouchUpInside]; + [searchBtn addTarget:self action:@selector(searchEventLove:) forControlEvents:UIControlEventTouchUpInside]; [self.view addSubview:searchBtn]; self.table = [[UITableView alloc] initWithFrame:CGRectMake(0-1,220-1,WPScreen_w-1,WPScreen_h-220-1) style:UITableViewStyleGrouped]; @@ -46,7 +46,7 @@ self.table.separatorColor = [UIColor clearColor]; [self.view addSubview:self.table]; } -- (void)searchEvent{ +- (void)searchEventLove:(id)s{ AWM_SearchViewController *vc = [[AWM_SearchViewController alloc] init]; [self.navigationController pushViewController:vc animated:YES]; } @@ -64,7 +64,7 @@ return 3*(10+space*1.5)+30; } } -- (void)headerEvent{ +- (void)headerEvent:(id)s{ AWM_AllWallpaperViewController *wpdetail = [[AWM_AllWallpaperViewController alloc] init]; [self.navigationController pushViewController:wpdetail animated:YES]; } @@ -82,7 +82,7 @@ header.userInteractionEnabled = YES; UIButton *headerbtn = [[UIButton alloc] initWithFrame:header.bounds]; - [headerbtn addTarget:self action:@selector(headerEvent) forControlEvents:UIControlEventTouchUpInside]; + [headerbtn addTarget:self action:@selector(headerEvent:) forControlEvents:UIControlEventTouchUpInside]; [cell.contentView addSubview:header]; } }else{ @@ -99,7 +99,7 @@ [btn setImage:[UIImage imageNamed:self.data[indexPath.section][i]] forState:UIControlStateNormal]; btn.layer.cornerRadius = 5; btn.layer.masksToBounds = YES; - [btn addTarget:self action:@selector(headerEvent) forControlEvents:UIControlEventTouchUpInside]; + [btn addTarget:self action:@selector(headerEvent:) forControlEvents:UIControlEventTouchUpInside]; [bgView addSubview:btn]; } } diff --git a/HDwallpaper/AWM_SearchViewController.m b/HDwallpaper/AWM_SearchViewController.m index 62a8dee..024202d 100644 --- a/HDwallpaper/AWM_SearchViewController.m +++ b/HDwallpaper/AWM_SearchViewController.m @@ -13,7 +13,7 @@ @end @implementation AWM_SearchViewController -- (void)backItemEvent{ +- (void)backItemEventLove:(id)sender{ __weak typeof(self) weakSelf = self; [[AWM_WallPapaerADManager shareInstance] showIntersitialAD_Back:^(NSInteger actionType) { [weakSelf.navigationController popViewControllerAnimated:YES]; @@ -50,7 +50,7 @@ NSString *greeting1 = KLS(@"back", @"A friendly greeting"); UIButton *backItem = [[UIButton alloc] initWithFrame:CGRectMake(20-1,0-1,74-1,44-1)]; [backItem setImage:[UIImage imageNamed:greeting1] forState:UIControlStateNormal]; - [backItem addTarget:self action:@selector(backItemEvent) forControlEvents:UIControlEventTouchUpInside]; + [backItem addTarget:self action:@selector(backItemEventLove:) forControlEvents:UIControlEventTouchUpInside]; self.backItem = backItem; UIImageView *navImage = [[UIImageView alloc] initWithFrame:CGRectMake(WPScreen_w-150-1,8-1,130-1,28-1)]; diff --git a/HDwallpaper/AWM_UserPravcyVC.m b/HDwallpaper/AWM_UserPravcyVC.m index 05be4cf..f34329e 100644 --- a/HDwallpaper/AWM_UserPravcyVC.m +++ b/HDwallpaper/AWM_UserPravcyVC.m @@ -38,7 +38,7 @@ NSString *greeting = KLS(@"back", @"A friendly greeting"); UIButton *backItem = [[UIButton alloc] initWithFrame:CGRectMake(20-1,0-1,74-1,44-1)]; [backItem setImage:[UIImage imageNamed:greeting] forState:UIControlStateNormal]; - [backItem addTarget:self action:@selector(backItemEvent) forControlEvents:UIControlEventTouchUpInside]; + [backItem addTarget:self action:@selector(backItemEventLove:) forControlEvents:UIControlEventTouchUpInside]; self.backItem = backItem; // UILabel *titleLabel = [UILabel new]; @@ -60,7 +60,7 @@ [webView loadRequest:request]; } -- (void)backItemEvent{ +- (void)backItemEventLove:(id)sender{ [self.navigationController popViewControllerAnimated:YES]; } diff --git a/HDwallpaper/AWM_ditViewController.m b/HDwallpaper/AWM_ditViewController.m index eb42410..b403927 100644 --- a/HDwallpaper/AWM_ditViewController.m +++ b/HDwallpaper/AWM_ditViewController.m @@ -27,7 +27,7 @@ NSString *addpic = KLS(@"addpic", @"A friendly greeting"); UIButton *addImage = [[UIButton alloc] initWithFrame:CGRectMake((WPScreen_w-150)/2-1,650-1,150-1,75-1)]; [addImage setImage:[UIImage imageNamed:addpic] forState:UIControlStateNormal]; - [addImage addTarget:self action:@selector(selectPhoto) forControlEvents:UIControlEventTouchUpInside]; + [addImage addTarget:self action:@selector(selectPhotoLove:) forControlEvents:UIControlEventTouchUpInside]; // addImage.center = self.view.center; [self.view addSubview:addImage]; self.addImage = addImage; @@ -42,7 +42,7 @@ self.showImage = showImage; } -- (void)selectPhoto{ +- (void)selectPhotoLove:(id)sender{ if (self.isShow) { __weak typeof(self)weakSelf = self; diff --git a/HDwallpaper/AWM_wallpaperViewController.m b/HDwallpaper/AWM_wallpaperViewController.m index dbabe1e..2d97c25 100644 --- a/HDwallpaper/AWM_wallpaperViewController.m +++ b/HDwallpaper/AWM_wallpaperViewController.m @@ -18,7 +18,7 @@ @end @implementation AWM_wallpaperViewController -- (void)backItemEvent{ +- (void)backItemEventLove:(id)sender{ __weak typeof(self) weakSelf = self; [[AWM_WallPapaerADManager shareInstance] showIntersitialAD_Back:^(NSInteger actionType) { [weakSelf.navigationController popViewControllerAnimated:YES]; @@ -59,7 +59,7 @@ NSString *backitem = KLS(@"back", @"A friendly greeting"); UIButton *backItem = [[UIButton alloc] initWithFrame:CGRectMake(20-1,0-1,74-1,44-1)]; [backItem setImage:[UIImage imageNamed:backitem] forState:UIControlStateNormal]; - [backItem addTarget:self action:@selector(backItemEvent) forControlEvents:UIControlEventTouchUpInside]; + [backItem addTarget:self action:@selector(backItemEventLove:) forControlEvents:UIControlEventTouchUpInside]; self.backItem = backItem; NSString *greeting3 = KLS(@"navmy", @"A friendly greeting"); UIImageView *navImage = [[UIImageView alloc] initWithFrame:CGRectMake(WPScreen_w-150-1,8-1,130-1,28-1)]; @@ -94,7 +94,7 @@ [btn setImage:[UIImage imageNamed:self.data[i]] forState:UIControlStateNormal]; btn.layer.cornerRadius = 5; btn.layer.masksToBounds = YES; - [btn addTarget:self action:@selector(headerEvent) forControlEvents:UIControlEventTouchUpInside]; + [btn addTarget:self action:@selector(headerEventLove:) forControlEvents:UIControlEventTouchUpInside]; [cell.contentView addSubview:btn]; } return cell; @@ -121,7 +121,7 @@ wpdetail.data = self.data; [self.navigationController pushViewController:wpdetail animated:YES]; } -- (void)headerEvent{ +- (void)headerEventLove:(id)sender{ AWM_DetailViewController *wpdetail = [[AWM_DetailViewController alloc] init]; wpdetail.data = self.data; [self.navigationController pushViewController:wpdetail animated:YES]; diff --git a/HX/.idea/.gitignore b/HX/.idea/.gitignore new file mode 100644 index 0000000..26d3352 --- /dev/null +++ b/HX/.idea/.gitignore @@ -0,0 +1,3 @@ +# Default ignored files +/shelf/ +/workspace.xml diff --git a/HX/.idea/HX.iml b/HX/.idea/HX.iml new file mode 100644 index 0000000..d6ebd48 --- /dev/null +++ b/HX/.idea/HX.iml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/HX/.idea/misc.xml b/HX/.idea/misc.xml new file mode 100644 index 0000000..639900d --- /dev/null +++ b/HX/.idea/misc.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/HX/.idea/modules.xml b/HX/.idea/modules.xml new file mode 100644 index 0000000..bf91045 --- /dev/null +++ b/HX/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/HX/.idea/vcs.xml b/HX/.idea/vcs.xml new file mode 100644 index 0000000..b2bdec2 --- /dev/null +++ b/HX/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/HX/AddClashCodeToFile.py b/HX/AddClashCodeToFile.py new file mode 100644 index 0000000..baebdf3 --- /dev/null +++ b/HX/AddClashCodeToFile.py @@ -0,0 +1,197 @@ +# -*- coding: UTF-8 -*- +import os,sys +import random +import string +import re +import time +import json +import shutil +import hashlib +import time +import argparse + +import sys + + +script_path = os.path.split(os.path.realpath(sys.argv[0]))[0] + +swiftFunPattern = "func.*?\\{" + +#目前oc只向对象实例方法注入垃圾代码 +ocFunPattern = "-.*?\\{" + +#需要忽略的文件,写入这里后,这些文件将不会被添加垃圾代码 +ignore_files = ["ZHAuthorSetVC.m", "DownloadManager.swift"] + +#用于匹配 // 注释 的文本信息,在插入函数垃圾代码前,需要清除掉注释,避免在被注释的函数中添加垃圾代码而导致编译不过 +explanatoryPattern = "(^//.*)" + +#判断是否应该被忽略插入垃圾代码 +def isNeedIgnore(fileName): + global ignore_files + for file in ignore_files: + if fileName.find(file) != -1: + return True + return False + +#单词列表,用以随机名称 +with open(os.path.join(script_path, "./word_list.json"), "r") as fileObj: + word_name_list = json.load(fileObj) + +# 随机获取一个字符 +def get_random_char(): + # 可以根据需要更改字符的范围 + ascii_uppercase = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' + ascii_lowercase = 'abcdefghijklmnopqrstuvwxyz' + digits = '0123456789' + # 这里可以选择不同的字符集合进行随机选择 + char_sets = [ascii_uppercase, ascii_lowercase, digits] + char_set = random.choice(char_sets) + return random.choice(char_set) + +#获取一个随机变量名称 +def getVeriableName(): + global word_name_list + return random.choice(word_name_list) + "_" + get_random_char() + + +#向OC文件的既有函数添加垃圾代码 +def addClashCode2OC(filePath): + global ocFunPattern + print("\n开始向:\n%s\n添加垃圾代码\n" %filePath) + with open(filePath,"r",errors="ignore") as fileObj: + fileContent_text = fileObj.read() + fileObj.close() + matches = re.finditer(ocFunPattern,fileContent_text) + #倒序遍历匹配的结果 + for match in reversed(list(matches)): + firstPart_text = fileContent_text[:match.end()] + firstPart_text = firstPart_text +"\n" + " " + getOCFakeCode() + "\n" + fileContent_text = firstPart_text + fileContent_text[match.end():] + #print("match position:",match.end()) + with open(filePath,"w",errors="ignore") as fileObj: + fileObj.write(fileContent_text) + + + +#获取OC垃圾伪装代码 +def getOCFakeCode(): + random_number = random.randint(1, 2) + if random_number == 1: + return getOCFakeCode_1() + else: + return getOCFakeCode_2() + +#oc代码格式1 +def getOCFakeCode_1(): + vn1 = getVeriableName() + vn2 = getVeriableName() + vn_key = getVeriableName() + resultText = "\nNSDateFormatter *%s = [NSDateFormatter new];\n[%s setDateFormat:@\"yyyy-MM-dd HH:mm\"];\nNSString *%s = [%s stringFromDate:[NSDate date]];\n[[NSUserDefaults standardUserDefaults] setObject:%s forKey:@\"%s\"];\n" %(vn1,vn1,vn2,vn1,vn2,vn_key) + return resultText + +#oc代码格式2 +def getOCFakeCode_2(): + digits = '0123456789' + value1 = random.choice(digits) + + vn1 = getVeriableName() + vn2 = getVeriableName() + vn_key = getVeriableName() + resultText = "\nNSInteger %s = %s;\nNSInteger %s = [[NSUserDefaults standardUserDefaults] integerForKey:@\"%s\"];\n%s *= %s;\n[[NSUserDefaults standardUserDefaults] setInteger:%s forKey:@\"%s\"];\n" %(vn1,value1,vn2,vn_key,vn2,vn1,vn2,vn_key) + return resultText + + + +#向Swift文件的既有函数添加垃圾代码 +def addClashCode2Swift(filePath): + global swiftFunPattern + print("\n开始向:\n%s\n添加垃圾代码\n" %filePath) + with open(filePath,"r",errors="ignore") as fileObj: + fileContent_text = fileObj.read() + fileObj.close() + matches = re.finditer(swiftFunPattern,fileContent_text) + #倒序遍历匹配的结果 + for match in reversed(list(matches)): + firstPart_text = fileContent_text[:match.end()] + firstPart_text = firstPart_text +"\n" + " " + getSwiftFakeCode() + "\n" + fileContent_text = firstPart_text + fileContent_text[match.end():] + #print("match position:",match.end()) + with open(filePath,"w",errors="ignore") as fileObj: + fileObj.write(fileContent_text) + +#获取swift垃圾伪装代码 +def getSwiftFakeCode(): + random_number = random.randint(1, 2) + if random_number == 1: + return getSwiftFakeCode_1() + else: + return getSwiftFakeCode_2() + +#swift代码格式1 +def getSwiftFakeCode_1(): + vn1 = getVeriableName() + digits = '0123456789' + value1 = random.choice(digits) + + vn2 = getVeriableName() + vn2_key = getVeriableName() + + vn3 = getVeriableName() + + resultText = "\nlet %s:Int = %s\nlet %s:Int = UserDefaults.standard.integer(forKey: \"%s\")\nvar %s = %s * %s\nUserDefaults.standard .setValue(%s, forKey: \"%s\")\n" %(vn1,value1,vn2,vn2_key,vn3,vn1,vn2,vn3,vn2_key) + return resultText + +#swift代码格式2 +def getSwiftFakeCode_2(): + vn1 = getVeriableName() + vn2 = getVeriableName() + vn_key = getVeriableName() + resultText = "\nlet %s = DateFormatter() \n%s.dateStyle = .full\nlet %s = %s.string(from: NSDate.now)\nUserDefaults.standard .setValue(%s, forKey: \"%s\")\n" %(vn1,vn1,vn2,vn1,vn2,vn_key) + return resultText + + +#解析初始化参数 +def parase_args(): + global script_path + parseParam = argparse.ArgumentParser(description='添加垃圾代码.\n') + #存放代码的根路径,即需要 函数 被添加垃圾代码 的根路径,该程序将遍历这个目录下的所有文件(即包含子目录的子文件 执行垃圾代码添加) + parseParam.add_argument('--code_dir', dest='code_dir', type=str, required=False, default=script_path, help='需要添加垃圾函数代码的根目录') + print("paraseParam:",parseParam) + return parseParam.parse_args() + +#进行循环处理目录中的文件 +def cycleDealDir(need_dealDir): + print("开始循环这个目录:",need_dealDir) + if not os.path.exists(need_dealDir): + print("当前目录不存在:",need_dealDir) + #以walk的方式,本身就会遍历完毕当前目录下的所有文件 + for parent,folders,files in os.walk(need_dealDir): + #print("遍历子文件...") + for file in files: + filePath = os.path.join(parent, file) + file_extension = file.split(".")[-1] + if file_extension == "swift" and not isNeedIgnore(file): + addClashCode2Swift(filePath) + elif file_extension == "m" and not isNeedIgnore(file): + addClashCode2OC(filePath) + else: + print("其他类型的文件暂不处理:",file) + + +def main(): + #解析参数 + parseParam = parase_args() + + #获取只要添加垃圾代码的目标 文件夹 + cycleDealDir(parseParam.code_dir) + +#遍历获取目标文件夹中的目标文件 +#过滤 需要忽略的目标文件 + + + +if __name__ == "__main__": + main() + + diff --git a/HX/ClassName_list.json b/HX/ClassName_list.json new file mode 100644 index 0000000..b1d91f7 --- /dev/null +++ b/HX/ClassName_list.json @@ -0,0 +1,12604 @@ +[ + "LLVA_ability", + "LLVA_about", + "LLVA_above", + "LLVA_accident", + "LLVA_accordingto", + "LLVA_achieve", + "LLVA_across", + "LLVA_action", + "LLVA_active", + "LLVA_actual", + "LLVA_adapt", + "LLVA_addition", + "LLVA_address", + "LLVA_admire", + "LLVA_admit", + "LLVA_advance", + "LLVA_advanced", + "LLVA_advantage", + "LLVA_advice", + "LLVA_advise", + "LLVA_affair", + "LLVA_afraid", + "LLVA_Africa", + "LLVA_African", + "LLVA_after", + "LLVA_afternoon", + "LLVA_afterward", + "LLVA_again", + "LLVA_against", + "LLVA_agree", + "LLVA_agreement", + "LLVA_ahead", + "LLVA_alike", + "LLVA_alive", + "LLVA_allow", + "LLVA_almost", + "LLVA_alone", + "LLVA_along", + "LLVA_aloud", + "LLVA_already", + "LLVA_although", + "LLVA_altogether", + "LLVA_always", + "LLVA_America", + "LLVA_American", + "LLVA_among", + "LLVA_amount", + "LLVA_ancient", + "LLVA_anger", + "LLVA_angry", + "LLVA_animal", + "LLVA_announce", + "LLVA_another", + "LLVA_answer", + "LLVA_anxious", + "LLVA_anybody", + "LLVA_anyhow", + "LLVA_anyone", + "LLVA_anything", + "LLVA_anywhere", + "LLVA_appear", + "LLVA_apple", + "LLVA_apply", + "LLVA_April", + "LLVA_around", + "LLVA_arrange", + "LLVA_arrive", + "LLVA_article", + "LLVA_ashamed", + "LLVA_Asian", + "LLVA_aside", + "LLVA_asleep", + "LLVA_attack", + "LLVA_attempt", + "LLVA_attend", + "LLVA_attention", + "LLVA_audience", + "LLVA_August", + "LLVA_autumn", + "LLVA_avoid", + "LLVA_awake", + "LLVA_award", + "LLVA_background", + "LLVA_badly", + "LLVA_basic", + "LLVA_basket", + "LLVA_basketball", + "LLVA_bathe", + "LLVA_battle", + "LLVA_beach", + "LLVA_beautiful", + "LLVA_beauty", + "LLVA_because", + "LLVA_become", + "LLVA_bedroom", + "LLVA_before", + "LLVA_begin", + "LLVA_behind", + "LLVA_being", + "LLVA_believe", + "LLVA_belong", + "LLVA_below", + "LLVA_beside", + "LLVA_besides", + "LLVA_between", + "LLVA_beyond", + "LLVA_birth", + "LLVA_birthday", + "LLVA_bitter", + "LLVA_black", + "LLVA_blackboard", + "LLVA_blame", + "LLVA_blind", + "LLVA_block", + "LLVA_blood", + "LLVA_board", + "LLVA_border", + "LLVA_borrow", + "LLVA_bother", + "LLVA_bottle", + "LLVA_bottom", + "LLVA_brain", + "LLVA_branch", + "LLVA_brave", + "LLVA_bread", + "LLVA_break", + "LLVA_breakfast", + "LLVA_breath", + "LLVA_breathe", + "LLVA_brick", + "LLVA_bridge", + "LLVA_brief", + "LLVA_bright", + "LLVA_bring", + "LLVA_brother", + "LLVA_brown", + "LLVA_brush", + "LLVA_build", + "LLVA_building", + "LLVA_business", + "LLVA_butter", + "LLVA_capable", + "LLVA_capital", + "LLVA_careful", + "LLVA_careless", + "LLVA_carry", + "LLVA_casual", + "LLVA_catch", + "LLVA_cattle", + "LLVA_cause", + "LLVA_ceiling", + "LLVA_celebrate", + "LLVA_central", + "LLVA_centre", + "LLVA_century", + "LLVA_certain", + "LLVA_certainly", + "LLVA_chair", + "LLVA_chairman", + "LLVA_champion", + "LLVA_chance", + "LLVA_change", + "LLVA_character", + "LLVA_cheap", + "LLVA_check", + "LLVA_cheer", + "LLVA_chemical", + "LLVA_chemistry", + "LLVA_chicken", + "LLVA_chief", + "LLVA_child", + "LLVA_China", + "LLVA_Chinese", + "LLVA_choice", + "LLVA_choose", + "LLVA_Christmas", + "LLVA_church", + "LLVA_cinema", + "LLVA_circle", + "LLVA_class", + "LLVA_classroom", + "LLVA_clean", + "LLVA_clear", + "LLVA_clever", + "LLVA_climb", + "LLVA_clock", + "LLVA_close", + "LLVA_cloth", + "LLVA_clothes", + "LLVA_cloud", + "LLVA_coffee", + "LLVA_collect", + "LLVA_college", + "LLVA_color", + "LLVA_combine", + "LLVA_comfort", + "LLVA_comfortable", + "LLVA_command", + "LLVA_committee", + "LLVA_common", + "LLVA_companion", + "LLVA_company", + "LLVA_compare", + "LLVA_compete", + "LLVA_competition", + "LLVA_complain", + "LLVA_complete", + "LLVA_computer", + "LLVA_comrade", + "LLVA_condition", + "LLVA_conduct", + "LLVA_conductor", + "LLVA_confident", + "LLVA_connect", + "LLVA_consider", + "LLVA_contact", + "LLVA_continue", + "LLVA_continuous", + "LLVA_contrary", + "LLVA_control", + "LLVA_convenient", + "LLVA_corner", + "LLVA_correct", + "LLVA_cotton", + "LLVA_count", + "LLVA_country", + "LLVA_countryside", + "LLVA_couple", + "LLVA_courage", + "LLVA_course", + "LLVA_court", + "LLVA_cousin", + "LLVA_cover", + "LLVA_crazy", + "LLVA_create", + "LLVA_cross", + "LLVA_crowd", + "LLVA_crown", + "LLVA_cruel", + "LLVA_custom", + "LLVA_customer", + "LLVA_cycle", + "LLVA_daily", + "LLVA_dance", + "LLVA_danger", + "LLVA_daughter", + "LLVA_December", + "LLVA_decide", + "LLVA_decision", + "LLVA_declare", + "LLVA_decrease", + "LLVA_defeat", + "LLVA_defend", + "LLVA_degree", + "LLVA_delay", + "LLVA_delight", + "LLVA_demand", + "LLVA_democratic", + "LLVA_department", + "LLVA_depend", + "LLVA_depth", + "LLVA_describe", + "LLVA_desire", + "LLVA_despite", + "LLVA_develop", + "LLVA_devote", + "LLVA_diamond", + "LLVA_diary", + "LLVA_dictionary", + "LLVA_difference", + "LLVA_different", + "LLVA_difficult", + "LLVA_difficulty", + "LLVA_dinner", + "LLVA_direct", + "LLVA_direction", + "LLVA_dirty", + "LLVA_disappear", + "LLVA_discourage", + "LLVA_discover", + "LLVA_discuss", + "LLVA_divide", + "LLVA_doctor", + "LLVA_dollar", + "LLVA_doubt", + "LLVA_dream", + "LLVA_dress", + "LLVA_drink", + "LLVA_drive", + "LLVA_during", + "LLVA_eager", + "LLVA_early", + "LLVA_earth", + "LLVA_eastern", + "LLVA_educate", + "LLVA_education", + "LLVA_effort", + "LLVA_eight", + "LLVA_eighth", + "LLVA_eighty", + "LLVA_either", + "LLVA_elder", + "LLVA_elect", + "LLVA_electric", + "LLVA_electricity", + "LLVA_eleven", + "LLVA_elsewhere", + "LLVA_embarrass", + "LLVA_emotion", + "LLVA_emperor", + "LLVA_employ", + "LLVA_empty", + "LLVA_encourage", + "LLVA_enemy", + "LLVA_engage", + "LLVA_engine", + "LLVA_England", + "LLVA_English", + "LLVA_enjoy", + "LLVA_enough", + "LLVA_enter", + "LLVA_entire", + "LLVA_equal", + "LLVA_escape", + "LLVA_especially", + "LLVA_Europe", + "LLVA_European", + "LLVA_evening", + "LLVA_event", + "LLVA_eventually", + "LLVA_every", + "LLVA_everybody", + "LLVA_everyday", + "LLVA_everyone", + "LLVA_everything", + "LLVA_everywhere", + "LLVA_exact", + "LLVA_examination", + "LLVA_examine", + "LLVA_example", + "LLVA_excellent", + "LLVA_except", + "LLVA_excite", + "LLVA_exciting", + "LLVA_excuse", + "LLVA_exercise", + "LLVA_exhibition", + "LLVA_exist", + "LLVA_expect", + "LLVA_expensive", + "LLVA_experience", + "LLVA_experiment", + "LLVA_expert", + "LLVA_explain", + "LLVA_express", + "LLVA_factory", + "LLVA_failure", + "LLVA_faint", + "LLVA_familiar", + "LLVA_family", + "LLVA_famous", + "LLVA_father", + "LLVA_fault", + "LLVA_favour", + "LLVA_favourite", + "LLVA_February", + "LLVA_feeling", + "LLVA_fellow", + "LLVA_fever", + "LLVA_field", + "LLVA_fifteen", + "LLVA_fifth", + "LLVA_fifty", + "LLVA_fight", + "LLVA_final", + "LLVA_finger", + "LLVA_finish", + "LLVA_first", + "LLVA_flood", + "LLVA_floor", + "LLVA_flower", + "LLVA_follow", + "LLVA_foolish", + "LLVA_football", + "LLVA_force", + "LLVA_foreign", + "LLVA_forest", + "LLVA_forever", + "LLVA_forget", + "LLVA_formal", + "LLVA_former", + "LLVA_fortunate", + "LLVA_fortune", + "LLVA_forty", + "LLVA_forward", + "LLVA_fourteen", + "LLVA_freedom", + "LLVA_freeze", + "LLVA_French", + "LLVA_frequent", + "LLVA_fresh", + "LLVA_Friday", + "LLVA_friend", + "LLVA_friendly", + "LLVA_friendship", + "LLVA_frighten", + "LLVA_front", + "LLVA_fruit", + "LLVA_fulfill", + "LLVA_funny", + "LLVA_furniture", + "LLVA_further", + "LLVA_furthermore", + "LLVA_future", + "LLVA_garden", + "LLVA_gather", + "LLVA_general", + "LLVA_gentle", + "LLVA_gentleman", + "LLVA_geography", + "LLVA_German", + "LLVA_Germany", + "LLVA_glance", + "LLVA_glass", + "LLVA_glory", + "LLVA_golden", + "LLVA_goodbye", + "LLVA_government", + "LLVA_grade", + "LLVA_gradual", + "LLVA_graduate", + "LLVA_grain", + "LLVA_grammar", + "LLVA_granddaughter", + "LLVA_grandfather", + "LLVA_grandmother", + "LLVA_grandson", + "LLVA_grass", + "LLVA_grateful", + "LLVA_great", + "LLVA_green", + "LLVA_greet", + "LLVA_ground", + "LLVA_group", + "LLVA_guard", + "LLVA_guess", + "LLVA_guest", + "LLVA_guide", + "LLVA_habit", + "LLVA_handsome", + "LLVA_happen", + "LLVA_happy", + "LLVA_hardly", + "LLVA_harvest", + "LLVA_headache", + "LLVA_headquarters", + "LLVA_health", + "LLVA_heart", + "LLVA_heaven", + "LLVA_heavy", + "LLVA_height", + "LLVA_hello", + "LLVA_herself", + "LLVA_highly", + "LLVA_himself", + "LLVA_history", + "LLVA_holiday", + "LLVA_homework", + "LLVA_honest", + "LLVA_honour", + "LLVA_horse", + "LLVA_hospital", + "LLVA_hotel", + "LLVA_house", + "LLVA_however", + "LLVA_human", + "LLVA_hundred", + "LLVA_hungry", + "LLVA_hurry", + "LLVA_husband", + "LLVA_ignore", + "LLVA_illness", + "LLVA_imagine", + "LLVA_import", + "LLVA_important", + "LLVA_impossible", + "LLVA_improve", + "LLVA_incident", + "LLVA_include", + "LLVA_income", + "LLVA_increase", + "LLVA_indeed", + "LLVA_India", + "LLVA_Indian", + "LLVA_indicate", + "LLVA_industry", + "LLVA_influence", + "LLVA_information", + "LLVA_inside", + "LLVA_insist", + "LLVA_instance", + "LLVA_instead", + "LLVA_instrument", + "LLVA_intend", + "LLVA_interest", + "LLVA_interesting", + "LLVA_interview", + "LLVA_introduce", + "LLVA_invite", + "LLVA_involve", + "LLVA_island", + "LLVA_issue", + "LLVA_itself", + "LLVA_January", + "LLVA_Japan", + "LLVA_journey", + "LLVA_kitchen", + "LLVA_knife", + "LLVA_knock", + "LLVA_knowledge", + "LLVA_labour", + "LLVA_ladder", + "LLVA_language", + "LLVA_large", + "LLVA_laugh", + "LLVA_laughter", + "LLVA_lawyer", + "LLVA_learn", + "LLVA_leave", + "LLVA_lecture", + "LLVA_length", + "LLVA_lesson", + "LLVA_letter", + "LLVA_level", + "LLVA_light", + "LLVA_liquid", + "LLVA_listen", + "LLVA_little", + "LLVA_lonely", + "LLVA_loose", + "LLVA_lovely", + "LLVA_lower", + "LLVA_lunch", + "LLVA_machine", + "LLVA_magazine", + "LLVA_maintain", + "LLVA_major", + "LLVA_majority", + "LLVA_manage", + "LLVA_manager", + "LLVA_mankind", + "LLVA_manner", + "LLVA_march", + "LLVA_market", + "LLVA_marriage", + "LLVA_marry", + "LLVA_master", + "LLVA_match", + "LLVA_material", + "LLVA_mathematics", + "LLVA_matter", + "LLVA_maybe", + "LLVA_mayor", + "LLVA_meaning", + "LLVA_means", + "LLVA_measure", + "LLVA_medicine", + "LLVA_medium", + "LLVA_meeting", + "LLVA_member", + "LLVA_memory", + "LLVA_merchant", + "LLVA_merry", + "LLVA_message", + "LLVA_metal", + "LLVA_meter", + "LLVA_middle", + "LLVA_might", + "LLVA_military", + "LLVA_million", + "LLVA_minister", + "LLVA_minute", + "LLVA_mirror", + "LLVA_missing", + "LLVA_mistake", + "LLVA_model", + "LLVA_modern", + "LLVA_modest", + "LLVA_moment", + "LLVA_Monday", + "LLVA_monkey", + "LLVA_month", + "LLVA_morning", + "LLVA_mother", + "LLVA_motor", + "LLVA_mountain", + "LLVA_mouth", + "LLVA_murder", + "LLVA_museum", + "LLVA_music", + "LLVA_myself", + "LLVA_narrow", + "LLVA_nation", + "LLVA_national", + "LLVA_native", + "LLVA_nearly", + "LLVA_necessary", + "LLVA_negative", + "LLVA_Negro", + "LLVA_neighbour", + "LLVA_neither", + "LLVA_never", + "LLVA_newspaper", + "LLVA_night", + "LLVA_nineteen", + "LLVA_ninety", + "LLVA_ninth", + "LLVA_nobody", + "LLVA_noise", + "LLVA_north", + "LLVA_northern", + "LLVA_nothing", + "LLVA_notice", + "LLVA_November", + "LLVA_number", + "LLVA_nurse", + "LLVA_object", + "LLVA_obtain", + "LLVA_obvious", + "LLVA_ocean", + "LLVA_oclock", + "LLVA_October", + "LLVA_offer", + "LLVA_office", + "LLVA_official", + "LLVA_often", + "LLVA_oneself", + "LLVA_operation", + "LLVA_opinion", + "LLVA_orange", + "LLVA_ordinary", + "LLVA_other", + "LLVA_ought", + "LLVA_ourselves", + "LLVA_outline", + "LLVA_outside", + "LLVA_owner", + "LLVA_palace", + "LLVA_paper", + "LLVA_pardon", + "LLVA_parent", + "LLVA_particular", + "LLVA_partly", + "LLVA_party", + "LLVA_passage", + "LLVA_passenger", + "LLVA_passport", + "LLVA_patient", + "LLVA_pattern", + "LLVA_peace", + "LLVA_peasant", + "LLVA_pencil", + "LLVA_penny", + "LLVA_people", + "LLVA_percent", + "LLVA_perfect", + "LLVA_perhaps", + "LLVA_permit", + "LLVA_person", + "LLVA_personnel", + "LLVA_persuade", + "LLVA_physics", + "LLVA_piano", + "LLVA_picture", + "LLVA_piece", + "LLVA_place", + "LLVA_plain", + "LLVA_plane", + "LLVA_planet", + "LLVA_plant", + "LLVA_plate", + "LLVA_platform", + "LLVA_pleasant", + "LLVA_please", + "LLVA_pleasure", + "LLVA_plenty", + "LLVA_pocket", + "LLVA_point", + "LLVA_police", + "LLVA_policeman", + "LLVA_polite", + "LLVA_political", + "LLVA_politics", + "LLVA_population", + "LLVA_position", + "LLVA_possible", + "LLVA_potato", + "LLVA_poverty", + "LLVA_practical", + "LLVA_practice", + "LLVA_practise", + "LLVA_prepare", + "LLVA_present", + "LLVA_president", + "LLVA_press", + "LLVA_pretend", + "LLVA_pretty", + "LLVA_prevent", + "LLVA_price", + "LLVA_pride", + "LLVA_print", + "LLVA_prison", + "LLVA_prize", + "LLVA_probably", + "LLVA_problem", + "LLVA_produce", + "LLVA_production", + "LLVA_professor", + "LLVA_profit", + "LLVA_progress", + "LLVA_promise", + "LLVA_pronunciation", + "LLVA_proper", + "LLVA_protect", + "LLVA_proud", + "LLVA_prove", + "LLVA_provide", + "LLVA_province", + "LLVA_public", + "LLVA_punish", + "LLVA_pupil", + "LLVA_purpose", + "LLVA_quality", + "LLVA_quantity", + "LLVA_quarrel", + "LLVA_quarter", + "LLVA_queen", + "LLVA_question", + "LLVA_quick", + "LLVA_quiet", + "LLVA_quite", + "LLVA_radio", + "LLVA_railroad", + "LLVA_raise", + "LLVA_range", + "LLVA_rapid", + "LLVA_rather", + "LLVA_reach", + "LLVA_ready", + "LLVA_realize", + "LLVA_record", + "LLVA_refuse", + "LLVA_regret", + "LLVA_regular", + "LLVA_relation", + "LLVA_relax", + "LLVA_religion", + "LLVA_remain", + "LLVA_remember", + "LLVA_remind", + "LLVA_remove", + "LLVA_repair", + "LLVA_repeat", + "LLVA_replace", + "LLVA_reply", + "LLVA_report", + "LLVA_republic", + "LLVA_research", + "LLVA_respect", + "LLVA_responsible", + "LLVA_restaurant", + "LLVA_result", + "LLVA_return", + "LLVA_review", + "LLVA_revolution", + "LLVA_reward", + "LLVA_right", + "LLVA_rough", + "LLVA_round", + "LLVA_rubber", + "LLVA_rubbish", + "LLVA_salary", + "LLVA_satisfy", + "LLVA_Saturday", + "LLVA_scare", + "LLVA_scene", + "LLVA_school", + "LLVA_science", + "LLVA_scientific", + "LLVA_scientist", + "LLVA_score", + "LLVA_scream", + "LLVA_search", + "LLVA_season", + "LLVA_second", + "LLVA_secret", + "LLVA_seize", + "LLVA_seldom", + "LLVA_sense", + "LLVA_sentence", + "LLVA_separate", + "LLVA_September", + "LLVA_serious", + "LLVA_serve", + "LLVA_service", + "LLVA_settle", + "LLVA_seven", + "LLVA_seventeen", + "LLVA_seventy", + "LLVA_several", + "LLVA_shadow", + "LLVA_shake", + "LLVA_shall", + "LLVA_shame", + "LLVA_shape", + "LLVA_share", + "LLVA_sharp", + "LLVA_sheet", + "LLVA_shelf", + "LLVA_shine", + "LLVA_shirt", + "LLVA_shock", + "LLVA_shoot", + "LLVA_shore", + "LLVA_short", + "LLVA_should", + "LLVA_shoulder", + "LLVA_shout", + "LLVA_shower", + "LLVA_sight", + "LLVA_signal", + "LLVA_silence", + "LLVA_silent", + "LLVA_silver", + "LLVA_simple", + "LLVA_since", + "LLVA_single", + "LLVA_sister", + "LLVA_situation", + "LLVA_sixteen", + "LLVA_sixty", + "LLVA_skill", + "LLVA_skirt", + "LLVA_slave", + "LLVA_sleep", + "LLVA_sleepy", + "LLVA_slight", + "LLVA_small", + "LLVA_smell", + "LLVA_smile", + "LLVA_smoke", + "LLVA_smooth", + "LLVA_social", + "LLVA_society", + "LLVA_soldier", + "LLVA_solid", + "LLVA_solve", + "LLVA_somebody", + "LLVA_someone", + "LLVA_somehow", + "LLVA_something", + "LLVA_sometime", + "LLVA_sometimes", + "LLVA_somewhere", + "LLVA_sorry", + "LLVA_sound", + "LLVA_south", + "LLVA_southern", + "LLVA_space", + "LLVA_spare", + "LLVA_speak", + "LLVA_special", + "LLVA_speech", + "LLVA_speed", + "LLVA_spell", + "LLVA_spend", + "LLVA_spirit", + "LLVA_sport", + "LLVA_spread", + "LLVA_spring", + "LLVA_square", + "LLVA_stage", + "LLVA_stain", + "LLVA_stair", + "LLVA_stamp", + "LLVA_stand", + "LLVA_standard", + "LLVA_stare", + "LLVA_start", + "LLVA_starve", + "LLVA_state", + "LLVA_station", + "LLVA_steal", + "LLVA_steam", + "LLVA_steel", + "LLVA_stick", + "LLVA_still", + "LLVA_stomach", + "LLVA_stone", + "LLVA_store", + "LLVA_storey", + "LLVA_storm", + "LLVA_story", + "LLVA_straight", + "LLVA_strange", + "LLVA_stranger", + "LLVA_stream", + "LLVA_street", + "LLVA_strength", + "LLVA_strike", + "LLVA_strong", + "LLVA_struggle", + "LLVA_student", + "LLVA_study", + "LLVA_subject", + "LLVA_succeed", + "LLVA_success", + "LLVA_sudden", + "LLVA_suddenly", + "LLVA_suffer", + "LLVA_sufficient", + "LLVA_sugar", + "LLVA_suggest", + "LLVA_summer", + "LLVA_Sunday", + "LLVA_supper", + "LLVA_supply", + "LLVA_support", + "LLVA_suppose", + "LLVA_surface", + "LLVA_surprise", + "LLVA_surround", + "LLVA_sweep", + "LLVA_sweet", + "LLVA_table", + "LLVA_taste", + "LLVA_teach", + "LLVA_teacher", + "LLVA_television", + "LLVA_temperature", + "LLVA_tennis", + "LLVA_terrible", + "LLVA_thank", + "LLVA_theatre", + "LLVA_their", + "LLVA_themselves", + "LLVA_theory", + "LLVA_there", + "LLVA_therefor", + "LLVA_these", + "LLVA_thick", + "LLVA_thing", + "LLVA_think", + "LLVA_third", + "LLVA_thirteen", + "LLVA_thirty", + "LLVA_thorough", + "LLVA_those", + "LLVA_though", + "LLVA_thought", + "LLVA_thousand", + "LLVA_three", + "LLVA_through", + "LLVA_throughout", + "LLVA_throw", + "LLVA_Thursday", + "LLVA_ticket", + "LLVA_tired", + "LLVA_today", + "LLVA_together", + "LLVA_tomato", + "LLVA_tomorrow", + "LLVA_tongue", + "LLVA_tonight", + "LLVA_tooth", + "LLVA_total", + "LLVA_touch", + "LLVA_tourist", + "LLVA_toward", + "LLVA_tower", + "LLVA_trade", + "LLVA_train", + "LLVA_translate", + "LLVA_travel", + "LLVA_treasure", + "LLVA_treat", + "LLVA_tremble", + "LLVA_trick", + "LLVA_trouble", + "LLVA_trousers", + "LLVA_truck", + "LLVA_trust", + "LLVA_Tuesday", + "LLVA_twelfth", + "LLVA_twelve", + "LLVA_twentieth", + "LLVA_twenty", + "LLVA_twice", + "LLVA_uncle", + "LLVA_under", + "LLVA_understand", + "LLVA_uniform", + "LLVA_union", + "LLVA_unite", + "LLVA_united", + "LLVA_university", + "LLVA_unless", + "LLVA_until", + "LLVA_usual", + "LLVA_usually", + "LLVA_valley", + "LLVA_valuable", + "LLVA_value", + "LLVA_various", + "LLVA_vegetable", + "LLVA_victory", + "LLVA_village", + "LLVA_visit", + "LLVA_visitor", + "LLVA_voice", + "LLVA_wander", + "LLVA_waste", + "LLVA_watch", + "LLVA_water", + "LLVA_wealth", + "LLVA_weather", + "LLVA_Wednesday", + "LLVA_weight", + "LLVA_welcome", + "LLVA_western", + "LLVA_whatever", + "LLVA_wheat", + "LLVA_wheel", + "LLVA_whenever", + "LLVA_where", + "LLVA_whether", + "LLVA_which", + "LLVA_while", + "LLVA_whisper", + "LLVA_white", + "LLVA_whole", + "LLVA_whose", + "LLVA_willing", + "LLVA_window", + "LLVA_winter", + "LLVA_within", + "LLVA_without", + "LLVA_woman", + "LLVA_wonder", + "LLVA_wonderful", + "LLVA_worker", + "LLVA_world", + "LLVA_worry", + "LLVA_worth", + "LLVA_worthy", + "LLVA_would", + "LLVA_wound", + "LLVA_write", + "LLVA_wrong", + "LLVA_yellow", + "LLVA_yesterday", + "LLVA_young", + "LLVA_yours", + "LLVA_yourself", + "LLVA_abandon", + "LLVA_abandonment", + "LLVA_abbreviation", + "LLVA_abeyance", + "LLVA_abide", + "LLVA_abnormal", + "LLVA_aboard", + "LLVA_abolish", + "LLVA_abolition", + "LLVA_abortion", + "LLVA_abortive", + "LLVA_abreast", + "LLVA_abridge", + "LLVA_abroad", + "LLVA_abrogate", + "LLVA_abrogation", + "LLVA_abrupt", + "LLVA_abruptly", + "LLVA_absence", + "LLVA_absent", + "LLVA_absolute", + "LLVA_absolutely", + "LLVA_absorb", + "LLVA_absorption", + "LLVA_abstract", + "LLVA_abstraction", + "LLVA_absurd", + "LLVA_absurdity", + "LLVA_abundance", + "LLVA_abundant", + "LLVA_abuse", + "LLVA_abasement", + "LLVA_academic", + "LLVA_academy", + "LLVA_accede", + "LLVA_accelerate", + "LLVA_acceleration", + "LLVA_accent", + "LLVA_accept", + "LLVA_acceptable", + "LLVA_acceptance", + "LLVA_access", + "LLVA_accessible", + "LLVA_accessory", + "LLVA_accidental", + "LLVA_accidentally", + "LLVA_accommodate", + "LLVA_accommodation", + "LLVA_accompaniment", + "LLVA_accompany", + "LLVA_accomplish", + "LLVA_accomplishment", + "LLVA_accord", + "LLVA_accordance", + "LLVA_according", + "LLVA_accordingly", + "LLVA_account", + "LLVA_accountant", + "LLVA_accounting", + "LLVA_accrue", + "LLVA_accrued", + "LLVA_accumulate", + "LLVA_accumulation", + "LLVA_accumulative", + "LLVA_accuracy", + "LLVA_accurate", + "LLVA_accurately", + "LLVA_accusation", + "LLVA_accuse", + "LLVA_accustom", + "LLVA_aching", + "LLVA_achievement", + "LLVA_acknowledge", + "LLVA_acknowledgment", + "LLVA_acquaint", + "LLVA_acquaintance", + "LLVA_acquainted", + "LLVA_acquire", + "LLVA_acquisition", + "LLVA_acrobat", + "LLVA_acrobatics", + "LLVA_activate", + "LLVA_actively", + "LLVA_activity", + "LLVA_actor", + "LLVA_actress", + "LLVA_actuality", + "LLVA_actually", + "LLVA_acute", + "LLVA_adaptation", + "LLVA_additional", + "LLVA_additive", + "LLVA_adequate", + "LLVA_adequately", + "LLVA_adhere", + "LLVA_adhesive", + "LLVA_adjacent", + "LLVA_adjective", + "LLVA_adjoin", + "LLVA_adjust", + "LLVA_adjustable", + "LLVA_adjustment", + "LLVA_administer", + "LLVA_administration", + "LLVA_administrative", + "LLVA_admirable", + "LLVA_admiration", + "LLVA_admission", + "LLVA_admittedly", + "LLVA_adolescence", + "LLVA_adolescent", + "LLVA_adopt", + "LLVA_adoption", + "LLVA_adore", + "LLVA_adorn", + "LLVA_adornment", + "LLVA_adult", + "LLVA_advantageous", + "LLVA_adventure", + "LLVA_adventurous", + "LLVA_adverb", + "LLVA_adverbial", + "LLVA_adversary", + "LLVA_adverse", + "LLVA_adversity", + "LLVA_advertise", + "LLVA_advertising", + "LLVA_advertisement", + "LLVA_advisable", + "LLVA_adviser", + "LLVA_advocate", + "LLVA_aerial", + "LLVA_aeroplane", + "LLVA_affect", + "LLVA_affection", + "LLVA_affectionate", + "LLVA_affiliate", + "LLVA_affirm", + "LLVA_affirmation", + "LLVA_affirmative", + "LLVA_afford", + "LLVA_affordable", + "LLVA_afloat", + "LLVA_aforesaid", + "LLVA_agency", + "LLVA_agent", + "LLVA_aggravate", + "LLVA_aggravation", + "LLVA_aggregate", + "LLVA_aggregation", + "LLVA_aggression", + "LLVA_aggressive", + "LLVA_aggressor", + "LLVA_agitate", + "LLVA_agitation", + "LLVA_agonize", + "LLVA_agony", + "LLVA_agreeable", + "LLVA_agreeably", + "LLVA_agreed", + "LLVA_agricultural", + "LLVA_agriculture", + "LLVA_ailment", + "LLVA_aimless", + "LLVA_aircraft", + "LLVA_airline", + "LLVA_airliner", + "LLVA_airmail", + "LLVA_airplane", + "LLVA_airport", + "LLVA_airway", + "LLVA_aisle", + "LLVA_alarm", + "LLVA_alarming", + "LLVA_album", + "LLVA_alcohol", + "LLVA_alcoholic", + "LLVA_alcoholism", + "LLVA_alert", + "LLVA_algebra", + "LLVA_alien", + "LLVA_alienate", + "LLVA_alienation", + "LLVA_alignment", + "LLVA_allergic", + "LLVA_allergy", + "LLVA_alliance", + "LLVA_allied", + "LLVA_allocate", + "LLVA_allocation", + "LLVA_allot", + "LLVA_allotment", + "LLVA_allowance", + "LLVA_alloy", + "LLVA_alongside", + "LLVA_alphabet", + "LLVA_alter", + "LLVA_alternate", + "LLVA_alternation", + "LLVA_alternative", + "LLVA_altitude", + "LLVA_aluminum", + "LLVA_amateur", + "LLVA_amaze", + "LLVA_amazement", + "LLVA_ambassador", + "LLVA_ambient", + "LLVA_ambiguity", + "LLVA_ambiguous", + "LLVA_ambition", + "LLVA_ambitious", + "LLVA_ambulance", + "LLVA_amend", + "LLVA_amendment", + "LLVA_amends", + "LLVA_amiable", + "LLVA_amicable", + "LLVA_ammunition", + "LLVA_ampere", + "LLVA_ample", + "LLVA_amplification", + "LLVA_amplifier", + "LLVA_amplify", + "LLVA_amuse", + "LLVA_amusement", + "LLVA_analogue", + "LLVA_analogy", + "LLVA_analysis", + "LLVA_analytical", + "LLVA_analyze", + "LLVA_ancestor", + "LLVA_anchor", + "LLVA_anecdote", + "LLVA_angel", + "LLVA_angle", + "LLVA_angular", + "LLVA_animate", + "LLVA_animation", + "LLVA_ankle", + "LLVA_annex", + "LLVA_anniversary", + "LLVA_announcement", + "LLVA_announcer", + "LLVA_annoy", + "LLVA_annoyance", + "LLVA_annual", + "LLVA_annually", + "LLVA_antagonism", + "LLVA_antagonist", + "LLVA_Antarctic", + "LLVA_antibiotic", + "LLVA_antecedent", + "LLVA_anticipate", + "LLVA_anticipation", + "LLVA_antique", + "LLVA_antonym", + "LLVA_antonymous", + "LLVA_anxiety", + "LLVA_anxiously", + "LLVA_anyway", + "LLVA_apart", + "LLVA_apartment", + "LLVA_apologize", + "LLVA_apology", + "LLVA_apparatus", + "LLVA_apparent", + "LLVA_apparently", + "LLVA_appeal", + "LLVA_appealing", + "LLVA_appearance", + "LLVA_appendix", + "LLVA_appetite", + "LLVA_applaud", + "LLVA_applause", + "LLVA_appliance", + "LLVA_applicable", + "LLVA_applicant", + "LLVA_application", + "LLVA_appoint", + "LLVA_appointment", + "LLVA_appreciable", + "LLVA_appreciably", + "LLVA_appreciate", + "LLVA_appreciation", + "LLVA_appreciative", + "LLVA_apprentice", + "LLVA_apprize", + "LLVA_approach", + "LLVA_appropriate", + "LLVA_approval", + "LLVA_approve", + "LLVA_approximate", + "LLVA_approximately", + "LLVA_approximation", + "LLVA_aptitude", + "LLVA_Arabian", + "LLVA_Arabic", + "LLVA_arbitrary", + "LLVA_arbitrate", + "LLVA_arbitration", + "LLVA_arbitrator", + "LLVA_archaeologist", + "LLVA_archaeology", + "LLVA_architect", + "LLVA_architecture", + "LLVA_arctic", + "LLVA_ardent", + "LLVA_arduous", + "LLVA_arena", + "LLVA_argue", + "LLVA_argument", + "LLVA_arise", + "LLVA_aristocracy", + "LLVA_aristocrat", + "LLVA_aristocratic", + "LLVA_arithmetic", + "LLVA_armchair", + "LLVA_armour", + "LLVA_arouse", + "LLVA_arrangement", + "LLVA_array", + "LLVA_arrear", + "LLVA_arrest", + "LLVA_arrival", + "LLVA_arrogance", + "LLVA_arrogant", + "LLVA_arrogantly", + "LLVA_arrow", + "LLVA_artificial", + "LLVA_artist", + "LLVA_artistic", + "LLVA_ascend", + "LLVA_ascertain", + "LLVA_ascribe", + "LLVA_ASEAN", + "LLVA_ashore", + "LLVA_ashtray", + "LLVA_aspect", + "LLVA_aspirin", + "LLVA_assassinate", + "LLVA_assassination", + "LLVA_assassinator", + "LLVA_assault", + "LLVA_assemble", + "LLVA_assembly", + "LLVA_assert", + "LLVA_assertion", + "LLVA_assess", + "LLVA_assessment", + "LLVA_assign", + "LLVA_assignment", + "LLVA_assist", + "LLVA_assistance", + "LLVA_assistant", + "LLVA_associate", + "LLVA_associated", + "LLVA_association", + "LLVA_associative", + "LLVA_assorted", + "LLVA_assortment", + "LLVA_assume", + "LLVA_assumption", + "LLVA_assurance", + "LLVA_assure", + "LLVA_assured", + "LLVA_astonish", + "LLVA_astonishment", + "LLVA_astound", + "LLVA_astray", + "LLVA_astronaut", + "LLVA_astronomer", + "LLVA_astronomical", + "LLVA_astronomy", + "LLVA_athlete", + "LLVA_athletic", + "LLVA_Atlantic", + "LLVA_atlas", + "LLVA_atmosphere", + "LLVA_atmospheric", + "LLVA_atomic", + "LLVA_attach", + "LLVA_attachment", + "LLVA_attain", + "LLVA_attendance", + "LLVA_attendant", + "LLVA_attentive", + "LLVA_attentively", + "LLVA_attic", + "LLVA_attitude", + "LLVA_attorney", + "LLVA_attract", + "LLVA_attraction", + "LLVA_attributable", + "LLVA_attribute", + "LLVA_attribution", + "LLVA_attributive", + "LLVA_auction", + "LLVA_auditorium", + "LLVA_august", + "LLVA_aural", + "LLVA_auspice", + "LLVA_Australia", + "LLVA_Australian", + "LLVA_author", + "LLVA_authority", + "LLVA_authorization", + "LLVA_authorize", + "LLVA_autobiography", + "LLVA_automate", + "LLVA_automatic", + "LLVA_automation", + "LLVA_automobile", + "LLVA_autonomous", + "LLVA_autonomy", + "LLVA_auxiliary", + "LLVA_avail", + "LLVA_availability", + "LLVA_available", + "LLVA_avenge", + "LLVA_avenue", + "LLVA_average", + "LLVA_averagely", + "LLVA_aviation", + "LLVA_await", + "LLVA_awaken", + "LLVA_aware", + "LLVA_awesome", + "LLVA_awful", + "LLVA_awfully", + "LLVA_awkward", + "LLVA_awkwardly", + "LLVA_awkwardness", + "LLVA_axial", + "LLVA_bachelor", + "LLVA_backbone", + "LLVA_backdate", + "LLVA_backing", + "LLVA_backlog", + "LLVA_backward", + "LLVA_backwardness", + "LLVA_bacon", + "LLVA_bacterium", + "LLVA_badge", + "LLVA_badminton", + "LLVA_baffle", + "LLVA_baggage", + "LLVA_baggy", + "LLVA_baker", + "LLVA_bakery", + "LLVA_balance", + "LLVA_balcony", + "LLVA_ballet", + "LLVA_balloon", + "LLVA_ballooning", + "LLVA_ballroom", + "LLVA_bamboo", + "LLVA_banana", + "LLVA_bandage", + "LLVA_bandit", + "LLVA_banker", + "LLVA_banking", + "LLVA_bankrupt", + "LLVA_banner", + "LLVA_banquet", + "LLVA_barber", + "LLVA_barely", + "LLVA_bargain", + "LLVA_barge", + "LLVA_barometer", + "LLVA_baron", + "LLVA_baroness", + "LLVA_barrel", + "LLVA_barren", + "LLVA_barrier", + "LLVA_barter", + "LLVA_baseball", + "LLVA_basement", + "LLVA_basically", + "LLVA_basin", + "LLVA_basis", + "LLVA_bathroom", + "LLVA_batter", + "LLVA_battery", + "LLVA_bazaar", + "LLVA_bearing", + "LLVA_bearish", + "LLVA_beast", + "LLVA_beetle", + "LLVA_beforehand", + "LLVA_beggar", + "LLVA_beginner", + "LLVA_beginning", + "LLVA_behalf", + "LLVA_behave", + "LLVA_behavior", + "LLVA_behindhand", + "LLVA_belief", + "LLVA_belly", + "LLVA_beloved", + "LLVA_bench", + "LLVA_beneath", + "LLVA_beneficial", + "LLVA_beneficiary", + "LLVA_benefit", + "LLVA_benevolence", + "LLVA_benevolent", + "LLVA_berry", + "LLVA_bestow", + "LLVA_betray", + "LLVA_betrayal", + "LLVA_better", + "LLVA_beverage", + "LLVA_beware", + "LLVA_bewilder", + "LLVA_bible", + "LLVA_bicycle", + "LLVA_bidding", + "LLVA_billion", + "LLVA_binding", + "LLVA_biographer", + "LLVA_biography", + "LLVA_biologist", + "LLVA_biology", + "LLVA_birthplace", + "LLVA_biscuit", + "LLVA_bishop", + "LLVA_bitterly", + "LLVA_bitterness", + "LLVA_blacksmith", + "LLVA_blade", + "LLVA_blank", + "LLVA_blanket", + "LLVA_blast", + "LLVA_blaze", + "LLVA_bleach", + "LLVA_bleed", + "LLVA_blend", + "LLVA_bless", + "LLVA_blessing", + "LLVA_blink", + "LLVA_blockage", + "LLVA_blond", + "LLVA_bloody", + "LLVA_bloom", + "LLVA_blossom", + "LLVA_blouse", + "LLVA_blunder", + "LLVA_blunt", + "LLVA_blush", + "LLVA_boarding", + "LLVA_boast", + "LLVA_bodyguard", + "LLVA_boiler", + "LLVA_boiling", + "LLVA_boldness", + "LLVA_bomber", + "LLVA_bonafide", + "LLVA_bonded", + "LLVA_bonus", + "LLVA_booking", + "LLVA_booklet", + "LLVA_bookcase", + "LLVA_bookshelf", + "LLVA_bookstore", + "LLVA_booming", + "LLVA_boost", + "LLVA_booth", + "LLVA_boring", + "LLVA_borrowings", + "LLVA_bosom", + "LLVA_bossy", + "LLVA_bough", + "LLVA_bounce", + "LLVA_bound", + "LLVA_boundary", + "LLVA_bourgeois", + "LLVA_bowling", + "LLVA_boxer", + "LLVA_boxing", + "LLVA_boycott", + "LLVA_brace", + "LLVA_bracket", + "LLVA_brake", + "LLVA_brand", + "LLVA_brandy", + "LLVA_brass", + "LLVA_bravely", + "LLVA_bravery", + "LLVA_brazil", + "LLVA_Brazilian", + "LLVA_breach", + "LLVA_breadth", + "LLVA_breakage", + "LLVA_breakdown", + "LLVA_breakthrough", + "LLVA_breast", + "LLVA_breed", + "LLVA_breeze", + "LLVA_bribe", + "LLVA_bribery", + "LLVA_bride", + "LLVA_bridegroom", + "LLVA_bridle", + "LLVA_briefing", + "LLVA_briefly", + "LLVA_brighten", + "LLVA_brightness", + "LLVA_brilliance", + "LLVA_brilliant", + "LLVA_brink", + "LLVA_brisk", + "LLVA_bristle", + "LLVA_Britain", + "LLVA_British", + "LLVA_brittle", + "LLVA_broad", + "LLVA_broadcast", + "LLVA_broadcasting", + "LLVA_broaden", + "LLVA_brochure", + "LLVA_broken", + "LLVA_broker", + "LLVA_bronze", + "LLVA_brood", + "LLVA_brook", + "LLVA_broom", + "LLVA_brotherhood", + "LLVA_bruise", + "LLVA_brutal", + "LLVA_brute", + "LLVA_bubble", + "LLVA_bucket", + "LLVA_Buddhism", + "LLVA_Buddhist", + "LLVA_budget", + "LLVA_buffalo", + "LLVA_buffet", + "LLVA_bugle", + "LLVA_builder", + "LLVA_bulky", + "LLVA_bullet", + "LLVA_bulletin", + "LLVA_bullion", + "LLVA_bullish", + "LLVA_bumpy", + "LLVA_bunch", + "LLVA_bundle", + "LLVA_burden", + "LLVA_burdensome", + "LLVA_bureau", + "LLVA_bureaucracy", + "LLVA_bureaucratic", + "LLVA_burglar", + "LLVA_burglary", + "LLVA_burial", + "LLVA_burner", + "LLVA_burnt", + "LLVA_burst", + "LLVA_bushel", + "LLVA_businesslike", + "LLVA_butcher", + "LLVA_butchery", + "LLVA_butterfly", + "LLVA_button", + "LLVA_buyer", + "LLVA_bygone", + "LLVA_bypass", + "LLVA_cabbage", + "LLVA_cabin", + "LLVA_cabinet", + "LLVA_cable", + "LLVA_cafeteria", + "LLVA_calculate", + "LLVA_calculation", + "LLVA_calculus", + "LLVA_calendar", + "LLVA_calmly", + "LLVA_calorie", + "LLVA_camel", + "LLVA_camera", + "LLVA_campaign", + "LLVA_camping", + "LLVA_campus", + "LLVA_Canada", + "LLVA_Canadian", + "LLVA_canal", + "LLVA_canary", + "LLVA_cancel", + "LLVA_cancellation", + "LLVA_cancer", + "LLVA_candid", + "LLVA_candidate", + "LLVA_candle", + "LLVA_candy", + "LLVA_canned", + "LLVA_cannon", + "LLVA_canoe", + "LLVA_canon", + "LLVA_canteen", + "LLVA_canvas", + "LLVA_canvass", + "LLVA_capability", + "LLVA_capacity", + "LLVA_capita", + "LLVA_capitalism", + "LLVA_capitalist", + "LLVA_capitalization", + "LLVA_capitalize", + "LLVA_captain", + "LLVA_caption", + "LLVA_captive", + "LLVA_capture", + "LLVA_caravan", + "LLVA_carbon", + "LLVA_cardboard", + "LLVA_cardinal", + "LLVA_career", + "LLVA_carelessness", + "LLVA_cargo", + "LLVA_carol", + "LLVA_carpenter", + "LLVA_carpet", + "LLVA_carriage", + "LLVA_carrier", + "LLVA_carrot", + "LLVA_carton", + "LLVA_cartoon", + "LLVA_cartridge", + "LLVA_carve", + "LLVA_carving", + "LLVA_cashier", + "LLVA_cassette", + "LLVA_castle", + "LLVA_casualty", + "LLVA_catalog", + "LLVA_catastrophe", + "LLVA_catalyst", + "LLVA_category", + "LLVA_cater", + "LLVA_cathedral", + "LLVA_catholic", + "LLVA_caution", + "LLVA_cautious", + "LLVA_cavalry", + "LLVA_cavern", + "LLVA_cavity", + "LLVA_cease", + "LLVA_celebration", + "LLVA_celery", + "LLVA_cellar", + "LLVA_cement", + "LLVA_cemetery", + "LLVA_censor", + "LLVA_censorship", + "LLVA_centigrade", + "LLVA_centimeter", + "LLVA_center", + "LLVA_cereal", + "LLVA_ceremonial", + "LLVA_ceremony", + "LLVA_certainty", + "LLVA_certificate", + "LLVA_certification", + "LLVA_certify", + "LLVA_chain", + "LLVA_chairperson", + "LLVA_chairwoman", + "LLVA_chalk", + "LLVA_challenge", + "LLVA_challenging", + "LLVA_chamber", + "LLVA_championship", + "LLVA_changeable", + "LLVA_channel", + "LLVA_chaos", + "LLVA_chapter", + "LLVA_characteristic", + "LLVA_characteristical", + "LLVA_characterize", + "LLVA_charcoal", + "LLVA_charge", + "LLVA_charity", + "LLVA_charm", + "LLVA_charming", + "LLVA_chart", + "LLVA_charter", + "LLVA_chase", + "LLVA_chatter", + "LLVA_cheat", + "LLVA_cheating", + "LLVA_cheek", + "LLVA_cheeky", + "LLVA_cheerful", + "LLVA_cheese", + "LLVA_chemist", + "LLVA_cheque", + "LLVA_cherish", + "LLVA_cherry", + "LLVA_chess", + "LLVA_chest", + "LLVA_chestnut", + "LLVA_chick", + "LLVA_chiefly", + "LLVA_childhood", + "LLVA_childish", + "LLVA_childlike", + "LLVA_chill", + "LLVA_chilly", + "LLVA_chimney", + "LLVA_chocolate", + "LLVA_choke", + "LLVA_chorus", + "LLVA_Christ", + "LLVA_Christian", + "LLVA_Christianity", + "LLVA_cigar", + "LLVA_cigarette", + "LLVA_circular", + "LLVA_circuit", + "LLVA_circulate", + "LLVA_circulation", + "LLVA_circumference", + "LLVA_circumstance", + "LLVA_circus", + "LLVA_citizen", + "LLVA_citizenship", + "LLVA_civil", + "LLVA_civilization", + "LLVA_civilize", + "LLVA_claim", + "LLVA_clamp", + "LLVA_clarify", + "LLVA_clarification", + "LLVA_clash", + "LLVA_clasp", + "LLVA_classic", + "LLVA_classical", + "LLVA_classification", + "LLVA_classify", + "LLVA_classmate", + "LLVA_clatter", + "LLVA_clause", + "LLVA_clearance", + "LLVA_clearly", + "LLVA_clench", + "LLVA_clerk", + "LLVA_cleverness", + "LLVA_client", + "LLVA_clientele", + "LLVA_cliff", + "LLVA_climate", + "LLVA_climax", + "LLVA_cling", + "LLVA_clinic", + "LLVA_cloak", + "LLVA_clockwise", + "LLVA_closed", + "LLVA_closedown", + "LLVA_closely", + "LLVA_closet", + "LLVA_clothe", + "LLVA_clothing", + "LLVA_cloudy", + "LLVA_clown", + "LLVA_clumsy", + "LLVA_cluster", + "LLVA_clutch", + "LLVA_coach", + "LLVA_coarse", + "LLVA_coast", + "LLVA_coastal", + "LLVA_cocktail", + "LLVA_codify", + "LLVA_coefficient", + "LLVA_coffin", + "LLVA_coherence", + "LLVA_coherent", + "LLVA_cohesion", + "LLVA_cohesive", + "LLVA_coinage", + "LLVA_coincide", + "LLVA_coincidence", + "LLVA_coincident", + "LLVA_coldness", + "LLVA_collaborate", + "LLVA_collaboration", + "LLVA_collapse", + "LLVA_collar", + "LLVA_colleague", + "LLVA_collection", + "LLVA_collective", + "LLVA_collide", + "LLVA_collision", + "LLVA_colonel", + "LLVA_colonial", + "LLVA_colonist", + "LLVA_colony", + "LLVA_colorful", + "LLVA_colorless", + "LLVA_column", + "LLVA_columnist", + "LLVA_combat", + "LLVA_combination", + "LLVA_comedian", + "LLVA_comedy", + "LLVA_comic", + "LLVA_commander", + "LLVA_commemorate", + "LLVA_commemoration", + "LLVA_commence", + "LLVA_commend", + "LLVA_commandment", + "LLVA_comment", + "LLVA_commerce", + "LLVA_commercial", + "LLVA_commission", + "LLVA_commit", + "LLVA_commitment", + "LLVA_commodity", + "LLVA_commonly", + "LLVA_commonplace", + "LLVA_commonsense", + "LLVA_commonwealth", + "LLVA_commune", + "LLVA_communicate", + "LLVA_communication", + "LLVA_communicative", + "LLVA_communism", + "LLVA_communist", + "LLVA_community", + "LLVA_compact", + "LLVA_comparable", + "LLVA_comparative", + "LLVA_comparatively", + "LLVA_comparison", + "LLVA_compass", + "LLVA_compatible", + "LLVA_compel", + "LLVA_compensate", + "LLVA_compensation", + "LLVA_competent", + "LLVA_competitive", + "LLVA_competitiveness", + "LLVA_competitor", + "LLVA_compile", + "LLVA_complaint", + "LLVA_complement", + "LLVA_completely", + "LLVA_completion", + "LLVA_complex", + "LLVA_complexity", + "LLVA_compliance", + "LLVA_complicate", + "LLVA_complicated", + "LLVA_compliment", + "LLVA_complimentary", + "LLVA_comply", + "LLVA_component", + "LLVA_componential", + "LLVA_compose", + "LLVA_composed", + "LLVA_composer", + "LLVA_composite", + "LLVA_composition", + "LLVA_compound", + "LLVA_comprehend", + "LLVA_comprehension", + "LLVA_comprehensive", + "LLVA_compress", + "LLVA_compression", + "LLVA_comprise", + "LLVA_compromise", + "LLVA_compels", + "LLVA_compulsory", + "LLVA_computation", + "LLVA_compute", + "LLVA_computerization", + "LLVA_computerize", + "LLVA_conceal", + "LLVA_concede", + "LLVA_conceit", + "LLVA_conceited", + "LLVA_conceive", + "LLVA_concentrate", + "LLVA_concentrated", + "LLVA_concentration", + "LLVA_concept", + "LLVA_conception", + "LLVA_conceptive", + "LLVA_concern", + "LLVA_concerned", + "LLVA_concerning", + "LLVA_concert", + "LLVA_concerted", + "LLVA_concession", + "LLVA_concise", + "LLVA_conclude", + "LLVA_conclusion", + "LLVA_conclusive", + "LLVA_concrete", + "LLVA_concur", + "LLVA_concurrence", + "LLVA_concurrent", + "LLVA_condemn", + "LLVA_condemnation", + "LLVA_condensation", + "LLVA_condense", + "LLVA_condenser", + "LLVA_conditional", + "LLVA_conduce", + "LLVA_conducive", + "LLVA_conduction", + "LLVA_confer", + "LLVA_conference", + "LLVA_confess", + "LLVA_confession", + "LLVA_confide", + "LLVA_confidence", + "LLVA_confidential", + "LLVA_confine", + "LLVA_confinement", + "LLVA_confirm", + "LLVA_confirmation", + "LLVA_conflict", + "LLVA_conform", + "LLVA_conformity", + "LLVA_confront", + "LLVA_confrontation", + "LLVA_confuse", + "LLVA_confusion", + "LLVA_congestion", + "LLVA_congratulate", + "LLVA_congratulation", + "LLVA_congress", + "LLVA_congressman", + "LLVA_conjunction", + "LLVA_connection", + "LLVA_conquer", + "LLVA_conqueror", + "LLVA_conquest", + "LLVA_conscience", + "LLVA_conscientious", + "LLVA_conscientiously", + "LLVA_conscious", + "LLVA_consciousness", + "LLVA_consecutive", + "LLVA_consent", + "LLVA_consequence", + "LLVA_consequently", + "LLVA_conservation", + "LLVA_conservative", + "LLVA_considerable", + "LLVA_considerably", + "LLVA_considerate", + "LLVA_consideration", + "LLVA_consign", + "LLVA_consignment", + "LLVA_consist", + "LLVA_consistency", + "LLVA_consistent", + "LLVA_console", + "LLVA_consolidate", + "LLVA_consolidated", + "LLVA_consolidation", + "LLVA_consonant", + "LLVA_conspicuous", + "LLVA_conspiracy", + "LLVA_constable", + "LLVA_constant", + "LLVA_constantly", + "LLVA_constituent", + "LLVA_constitute", + "LLVA_constitution", + "LLVA_constitutive", + "LLVA_constraint", + "LLVA_construct", + "LLVA_construction", + "LLVA_construe", + "LLVA_consul", + "LLVA_consulate", + "LLVA_consult", + "LLVA_consultant", + "LLVA_consultation", + "LLVA_consume", + "LLVA_consumer", + "LLVA_consumption", + "LLVA_contain", + "LLVA_container", + "LLVA_contemplate", + "LLVA_contemplation", + "LLVA_contemporary", + "LLVA_contempt", + "LLVA_contemptuous", + "LLVA_content", + "LLVA_contest", + "LLVA_contestant", + "LLVA_context", + "LLVA_contextual", + "LLVA_continent", + "LLVA_continental", + "LLVA_contingency", + "LLVA_continual", + "LLVA_continuance", + "LLVA_continuously", + "LLVA_contract", + "LLVA_contracted", + "LLVA_contractual", + "LLVA_contradict", + "LLVA_contradiction", + "LLVA_contrast", + "LLVA_contribute", + "LLVA_contribution", + "LLVA_controversy", + "LLVA_controversial", + "LLVA_convenience", + "LLVA_convention", + "LLVA_conventional", + "LLVA_conversant", + "LLVA_conversation", + "LLVA_converse", + "LLVA_conversely", + "LLVA_conversion", + "LLVA_convert", + "LLVA_convey", + "LLVA_conveyance", + "LLVA_convict", + "LLVA_conviction", + "LLVA_convince", + "LLVA_convinced", + "LLVA_cooker", + "LLVA_coolness", + "LLVA_cooperate", + "LLVA_cooperation", + "LLVA_cooperative", + "LLVA_coordinate", + "LLVA_coordination", + "LLVA_copper", + "LLVA_cordial", + "LLVA_cordially", + "LLVA_corporate", + "LLVA_corporation", + "LLVA_correction", + "LLVA_correctly", + "LLVA_correlate", + "LLVA_correlation", + "LLVA_correspond", + "LLVA_correspondence", + "LLVA_correspondent", + "LLVA_corresponding", + "LLVA_corridor", + "LLVA_corrode", + "LLVA_corrosion", + "LLVA_corrupt", + "LLVA_corruption", + "LLVA_cosmetics", + "LLVA_cosmic", + "LLVA_cosmos", + "LLVA_cosmopolitan", + "LLVA_costly", + "LLVA_cottage", + "LLVA_couch", + "LLVA_cough", + "LLVA_council", + "LLVA_counsel", + "LLVA_counsellor", + "LLVA_countable", + "LLVA_countenance", + "LLVA_counter", + "LLVA_countermand", + "LLVA_countermeasure", + "LLVA_counterpart", + "LLVA_countersign", + "LLVA_countersignature", + "LLVA_countless", + "LLVA_county", + "LLVA_courageous", + "LLVA_courteous", + "LLVA_courtesy", + "LLVA_courtyard", + "LLVA_coverage", + "LLVA_covering", + "LLVA_coward", + "LLVA_cowardly", + "LLVA_crack", + "LLVA_cracker", + "LLVA_cradle", + "LLVA_craft", + "LLVA_craftsman", + "LLVA_craftsmanship", + "LLVA_crane", + "LLVA_crash", + "LLVA_crate", + "LLVA_crave", + "LLVA_crawl", + "LLVA_craziness", + "LLVA_cream", + "LLVA_creamy", + "LLVA_creation", + "LLVA_creative", + "LLVA_creature", + "LLVA_credit", + "LLVA_creditworthy", + "LLVA_creditworthiness", + "LLVA_creek", + "LLVA_creep", + "LLVA_cricket", + "LLVA_crime", + "LLVA_criminal", + "LLVA_crimson", + "LLVA_cripple", + "LLVA_crisis", + "LLVA_crisp", + "LLVA_critic", + "LLVA_critical", + "LLVA_criticism", + "LLVA_criticize", + "LLVA_crook", + "LLVA_crooked", + "LLVA_crossing", + "LLVA_crossroads", + "LLVA_crouch", + "LLVA_crude", + "LLVA_cruelty", + "LLVA_cruise", + "LLVA_crumb", + "LLVA_crumble", + "LLVA_crush", + "LLVA_crust", + "LLVA_crutch", + "LLVA_crystal", + "LLVA_cubic", + "LLVA_cubism", + "LLVA_cuckoo", + "LLVA_cucumber", + "LLVA_cultivate", + "LLVA_cultivation", + "LLVA_cultural", + "LLVA_culture", + "LLVA_cunning", + "LLVA_cupboard", + "LLVA_curiosity", + "LLVA_curious", + "LLVA_curly", + "LLVA_currency", + "LLVA_current", + "LLVA_currently", + "LLVA_curse", + "LLVA_curtail", + "LLVA_curtain", + "LLVA_curve", + "LLVA_cushion", + "LLVA_custody", + "LLVA_customary", + "LLVA_customs", + "LLVA_cutlery", + "LLVA_cutter", + "LLVA_cutting", + "LLVA_cyclist", + "LLVA_dagger", + "LLVA_dainty", + "LLVA_dairy", + "LLVA_damage", + "LLVA_dancer", + "LLVA_dangerous", + "LLVA_Danish", + "LLVA_Denmark", + "LLVA_daring", + "LLVA_darken", + "LLVA_darkness", + "LLVA_darling", + "LLVA_dating", + "LLVA_daybreak", + "LLVA_daylight", + "LLVA_daytime", + "LLVA_dazzle", + "LLVA_dazzling", + "LLVA_deadline", + "LLVA_deadly", + "LLVA_deafen", + "LLVA_dealer", + "LLVA_dealing", + "LLVA_death", + "LLVA_deathly", + "LLVA_debate", + "LLVA_debit", + "LLVA_decade", + "LLVA_decay", + "LLVA_deceased", + "LLVA_deceit", + "LLVA_deceive", + "LLVA_deception", + "LLVA_deceitful", + "LLVA_decency", + "LLVA_decent", + "LLVA_decided", + "LLVA_decidedly", + "LLVA_decimal", + "LLVA_decisive", + "LLVA_declaration", + "LLVA_decline", + "LLVA_declining", + "LLVA_decompose", + "LLVA_decorate", + "LLVA_decoration", + "LLVA_decorative", + "LLVA_decree", + "LLVA_dedicate", + "LLVA_deduce", + "LLVA_deduct", + "LLVA_deduction", + "LLVA_deepen", + "LLVA_deeply", + "LLVA_default", + "LLVA_defect", + "LLVA_defective", + "LLVA_defence", + "LLVA_defer", + "LLVA_defiance", + "LLVA_defiant", + "LLVA_deficiency", + "LLVA_deficient", + "LLVA_deficit", + "LLVA_define", + "LLVA_definite", + "LLVA_definitely", + "LLVA_definition", + "LLVA_definitive", + "LLVA_deflate", + "LLVA_deflect", + "LLVA_deflection", + "LLVA_deform", + "LLVA_deformation", + "LLVA_defray", + "LLVA_degradation", + "LLVA_degrade", + "LLVA_delcredere", + "LLVA_delegate", + "LLVA_delegation", + "LLVA_delete", + "LLVA_deletion", + "LLVA_deliberate", + "LLVA_deliberately", + "LLVA_deliberation", + "LLVA_delicacy", + "LLVA_delicate", + "LLVA_delicious", + "LLVA_delightful", + "LLVA_delinquency", + "LLVA_delinquent", + "LLVA_deliver", + "LLVA_deliverance", + "LLVA_delivery", + "LLVA_delusion", + "LLVA_delusive", + "LLVA_demanding", + "LLVA_democracy", + "LLVA_democrat", + "LLVA_demolish", + "LLVA_demolition", + "LLVA_demonstrate", + "LLVA_demonstration", + "LLVA_demurrage", + "LLVA_denial", + "LLVA_denominate", + "LLVA_denomination", + "LLVA_denote", + "LLVA_denounce", + "LLVA_dense", + "LLVA_density", + "LLVA_dentist", + "LLVA_depart", + "LLVA_departure", + "LLVA_dependability", + "LLVA_dependable", + "LLVA_dependant", + "LLVA_dependence", + "LLVA_dependent", + "LLVA_depict", + "LLVA_depiction", + "LLVA_deplete", + "LLVA_deposit", + "LLVA_deposition", + "LLVA_depreciate", + "LLVA_depreciation", + "LLVA_depress", + "LLVA_depressed", + "LLVA_depression", + "LLVA_deprive", + "LLVA_deputy", + "LLVA_derivation", + "LLVA_derive", + "LLVA_derrick", + "LLVA_descend", + "LLVA_descendant", + "LLVA_descent", + "LLVA_description", + "LLVA_desert", + "LLVA_deserve", + "LLVA_design", + "LLVA_designate", + "LLVA_designation", + "LLVA_designer", + "LLVA_desirable", + "LLVA_desolate", + "LLVA_desolation", + "LLVA_despair", + "LLVA_desperate", + "LLVA_desperation", + "LLVA_despise", + "LLVA_dessert", + "LLVA_destination", + "LLVA_destine", + "LLVA_destiny", + "LLVA_destroy", + "LLVA_destruction", + "LLVA_destructive", + "LLVA_detach", + "LLVA_detail", + "LLVA_detailed", + "LLVA_detain", + "LLVA_detect", + "LLVA_detection", + "LLVA_detective", + "LLVA_deteriorate", + "LLVA_deterioration", + "LLVA_determination", + "LLVA_determine", + "LLVA_detour", + "LLVA_detract", + "LLVA_detriment", + "LLVA_detrimental", + "LLVA_devaluation", + "LLVA_devalue", + "LLVA_developing", + "LLVA_development", + "LLVA_deviate", + "LLVA_deviation", + "LLVA_device", + "LLVA_devil", + "LLVA_devise", + "LLVA_devoted", + "LLVA_devotion", + "LLVA_devour", + "LLVA_diagnose", + "LLVA_diagnosis", + "LLVA_diagram", + "LLVA_dialect", + "LLVA_dialog", + "LLVA_diameter", + "LLVA_dictate", + "LLVA_dictation", + "LLVA_dictator", + "LLVA_dictatorship", + "LLVA_diction", + "LLVA_diesel", + "LLVA_differ", + "LLVA_differential", + "LLVA_differently", + "LLVA_digest", + "LLVA_digestion", + "LLVA_digit", + "LLVA_digital", + "LLVA_dignity", + "LLVA_dilute", + "LLVA_diligent", + "LLVA_dimension", + "LLVA_dimensional", + "LLVA_diminish", + "LLVA_dingy", + "LLVA_diploma", + "LLVA_diplomacy", + "LLVA_diplomat", + "LLVA_diplomatic", + "LLVA_directive", + "LLVA_directly", + "LLVA_director", + "LLVA_directory", + "LLVA_disable", + "LLVA_disabled", + "LLVA_disadvantage", + "LLVA_disadvantageous", + "LLVA_disagree", + "LLVA_disagreement", + "LLVA_disallow", + "LLVA_disappearance", + "LLVA_disappoint", + "LLVA_disappointed", + "LLVA_disappointment", + "LLVA_disapproval", + "LLVA_disaster", + "LLVA_disastrous", + "LLVA_disburse", + "LLVA_disbursement", + "LLVA_discard", + "LLVA_discern", + "LLVA_discharge", + "LLVA_disciplinary", + "LLVA_discipline", + "LLVA_disclaim", + "LLVA_disclose", + "LLVA_discomfort", + "LLVA_discomfortable", + "LLVA_discontinue", + "LLVA_discount", + "LLVA_discourse", + "LLVA_discovery", + "LLVA_discreet", + "LLVA_discreetly", + "LLVA_discrepancy", + "LLVA_discretion", + "LLVA_discriminate", + "LLVA_discrimination", + "LLVA_discussion", + "LLVA_disdain", + "LLVA_disease", + "LLVA_disgrace", + "LLVA_disgraceful", + "LLVA_disguise", + "LLVA_disgust", + "LLVA_disgustful", + "LLVA_dishonorable", + "LLVA_dishonor", + "LLVA_disillusion", + "LLVA_disinclined", + "LLVA_disinfectant", + "LLVA_disintegration", + "LLVA_dislike", + "LLVA_disloyal", + "LLVA_disloyalty", + "LLVA_dismal", + "LLVA_dismay", + "LLVA_dismiss", + "LLVA_dismissal", + "LLVA_disobey", + "LLVA_disorder", + "LLVA_disparity", + "LLVA_dispatch", + "LLVA_dispel", + "LLVA_dispense", + "LLVA_disperse", + "LLVA_displace", + "LLVA_displacement", + "LLVA_display", + "LLVA_displease", + "LLVA_displeasure", + "LLVA_disposal", + "LLVA_dispose", + "LLVA_disposed", + "LLVA_disposition", + "LLVA_dispute", + "LLVA_disregard", + "LLVA_dissatisfaction", + "LLVA_dissatisfy", + "LLVA_dissimilar", + "LLVA_dissipate", + "LLVA_dissolve", + "LLVA_distance", + "LLVA_distant", + "LLVA_distillation", + "LLVA_distinct", + "LLVA_distinction", + "LLVA_distinctly", + "LLVA_distinguish", + "LLVA_distinguished", + "LLVA_distort", + "LLVA_distortion", + "LLVA_distract", + "LLVA_distraction", + "LLVA_distress", + "LLVA_distribute", + "LLVA_distribution", + "LLVA_distributor", + "LLVA_distributorship", + "LLVA_district", + "LLVA_disturb", + "LLVA_disturbance", + "LLVA_disunite", + "LLVA_disuse", + "LLVA_ditch", + "LLVA_ditto", + "LLVA_diver", + "LLVA_diverge", + "LLVA_divergence", + "LLVA_diverse", + "LLVA_diversion", + "LLVA_diversity", + "LLVA_divert", + "LLVA_divine", + "LLVA_division", + "LLVA_divorce", + "LLVA_dizzy", + "LLVA_doctrine", + "LLVA_document", + "LLVA_documentary", + "LLVA_documentation", + "LLVA_dodge", + "LLVA_doggedly", + "LLVA_domain", + "LLVA_domestic", + "LLVA_dominant", + "LLVA_dominate", + "LLVA_donate", + "LLVA_donation", + "LLVA_donkey", + "LLVA_doorway", + "LLVA_dormitory", + "LLVA_doubtful", + "LLVA_doubtless", + "LLVA_dough", + "LLVA_downstairs", + "LLVA_downtown", + "LLVA_downward", + "LLVA_downwards", + "LLVA_dozen", + "LLVA_draft", + "LLVA_dragon", + "LLVA_drain", + "LLVA_drainage", + "LLVA_drama", + "LLVA_dramatic", + "LLVA_dramatist", + "LLVA_dramatize", + "LLVA_drastic", + "LLVA_drawback", + "LLVA_drawer", + "LLVA_drawing", + "LLVA_dread", + "LLVA_dreadful", + "LLVA_dreary", + "LLVA_drench", + "LLVA_dressing", + "LLVA_drift", + "LLVA_drill", + "LLVA_driver", + "LLVA_droop", + "LLVA_dropout", + "LLVA_drought", + "LLVA_drown", + "LLVA_drugstore", + "LLVA_drunk", + "LLVA_drunkard", + "LLVA_dubious", + "LLVA_dummy", + "LLVA_dumping", + "LLVA_dungeon", + "LLVA_duplicate", + "LLVA_durable", + "LLVA_duration", + "LLVA_dustbin", + "LLVA_dusty", + "LLVA_dwarf", + "LLVA_dwell", + "LLVA_dweller", + "LLVA_dwelling", + "LLVA_dynamic", + "LLVA_dynasty", + "LLVA_eagle", + "LLVA_earmark", + "LLVA_earnest", + "LLVA_earnings", + "LLVA_earphone", + "LLVA_earthly", + "LLVA_earthquake", + "LLVA_easily", + "LLVA_Easter", + "LLVA_eastward", + "LLVA_eccentric", + "LLVA_eccentricity", + "LLVA_eclipse", + "LLVA_ecology", + "LLVA_economic", + "LLVA_economical", + "LLVA_economically", + "LLVA_economics", + "LLVA_economize", + "LLVA_economy", + "LLVA_ecstasy", + "LLVA_edition", + "LLVA_editor", + "LLVA_editorial", + "LLVA_educational", + "LLVA_effect", + "LLVA_effective", + "LLVA_effectively", + "LLVA_effectiveness", + "LLVA_efficiency", + "LLVA_efficient", + "LLVA_eggplant", + "LLVA_Egypt", + "LLVA_Egyptian", + "LLVA_eighteen", + "LLVA_eject", + "LLVA_ejection", + "LLVA_elaborate", + "LLVA_elaboration", + "LLVA_elapse", + "LLVA_elastic", + "LLVA_elasticity", + "LLVA_elbow", + "LLVA_election", + "LLVA_electrical", + "LLVA_electrician", + "LLVA_electrify", + "LLVA_electron", + "LLVA_electronic", + "LLVA_electronics", + "LLVA_elegance", + "LLVA_elegant", + "LLVA_element", + "LLVA_elemental", + "LLVA_elementary", + "LLVA_elephant", + "LLVA_elevate", + "LLVA_elevation", + "LLVA_elevator", + "LLVA_eleventh", + "LLVA_eliminate", + "LLVA_elimination", + "LLVA_elliptical", + "LLVA_ellipsis", + "LLVA_eloquence", + "LLVA_eloquent", + "LLVA_elusive", + "LLVA_email", + "LLVA_emancipate", + "LLVA_emancipation", + "LLVA_embargo", + "LLVA_embark", + "LLVA_embarrassing", + "LLVA_embarrassment", + "LLVA_embassy", + "LLVA_embody", + "LLVA_embrace", + "LLVA_embroider", + "LLVA_embroidery", + "LLVA_emerge", + "LLVA_emergency", + "LLVA_emigrant", + "LLVA_emigrate", + "LLVA_emigration", + "LLVA_eminent", + "LLVA_emission", + "LLVA_emotional", + "LLVA_emphasis", + "LLVA_emphasize", + "LLVA_emphatic", + "LLVA_empire", + "LLVA_empirical", + "LLVA_employee", + "LLVA_employer", + "LLVA_employment", + "LLVA_emptiness", + "LLVA_enable", + "LLVA_enchant", + "LLVA_encircle", + "LLVA_enclose", + "LLVA_enclosure", + "LLVA_encounter", + "LLVA_encouragement", + "LLVA_encyclopaedia", + "LLVA_endanger", + "LLVA_endeavor", + "LLVA_ending", + "LLVA_endless", + "LLVA_endorse", + "LLVA_endorsement", + "LLVA_endow", + "LLVA_endurance", + "LLVA_endure", + "LLVA_endures", + "LLVA_energetic", + "LLVA_energy", + "LLVA_enforce", + "LLVA_engaged", + "LLVA_engagement", + "LLVA_engineer", + "LLVA_engineering", + "LLVA_Englishman", + "LLVA_engrave", + "LLVA_engraving", + "LLVA_engulf", + "LLVA_enhance", + "LLVA_enhancement", + "LLVA_enjoyable", + "LLVA_enjoyment", + "LLVA_enlarge", + "LLVA_enlargement", + "LLVA_enlighten", + "LLVA_enlightening", + "LLVA_enormous", + "LLVA_enquire", + "LLVA_enquiry", + "LLVA_enrich", + "LLVA_enroll", + "LLVA_enrolment", + "LLVA_enroute", + "LLVA_ensure", + "LLVA_entail", + "LLVA_enterprise", + "LLVA_entertain", + "LLVA_entertainment", + "LLVA_enthusiasm", + "LLVA_enthusiastic", + "LLVA_entirely", + "LLVA_entirety", + "LLVA_entitle", + "LLVA_entrance", + "LLVA_entreat", + "LLVA_entrust", + "LLVA_entry", + "LLVA_enumerate", + "LLVA_envelop", + "LLVA_envelope", + "LLVA_envious", + "LLVA_environment", + "LLVA_environmental", + "LLVA_epidemic", + "LLVA_episode", + "LLVA_epoch", + "LLVA_equality", + "LLVA_equally", + "LLVA_equation", + "LLVA_equator", + "LLVA_equilibrium", + "LLVA_equip", + "LLVA_equipment", + "LLVA_equivalence", + "LLVA_equivalent", + "LLVA_eradicate", + "LLVA_eradication", + "LLVA_erase", + "LLVA_erasure", + "LLVA_erect", + "LLVA_erection", + "LLVA_erosion", + "LLVA_errand", + "LLVA_error", + "LLVA_erupt", + "LLVA_eruption", + "LLVA_escalator", + "LLVA_escort", + "LLVA_especial", + "LLVA_essay", + "LLVA_essayist", + "LLVA_essence", + "LLVA_essential", + "LLVA_essentially", + "LLVA_establish", + "LLVA_established", + "LLVA_establishment", + "LLVA_estate", + "LLVA_esteem", + "LLVA_estimate", + "LLVA_estimation", + "LLVA_eternal", + "LLVA_evaluate", + "LLVA_evaluation", + "LLVA_evaporate", + "LLVA_evaporation", + "LLVA_evenly", + "LLVA_eventful", + "LLVA_everlasting", + "LLVA_evidence", + "LLVA_evident", + "LLVA_evidently", + "LLVA_evolution", + "LLVA_evolve", + "LLVA_exactly", + "LLVA_exaggerate", + "LLVA_exaggerated", + "LLVA_exaggeration", + "LLVA_exalt", + "LLVA_exalted", + "LLVA_exasperate", + "LLVA_exasperation", + "LLVA_exceed", + "LLVA_exceedingly", + "LLVA_excel", + "LLVA_excellence", + "LLVA_exception", + "LLVA_exceptional", + "LLVA_excess", + "LLVA_excessive", + "LLVA_exchange", + "LLVA_excited", + "LLVA_excitement", + "LLVA_exclaim", + "LLVA_exclamation", + "LLVA_exclude", + "LLVA_exclusion", + "LLVA_exclusive", + "LLVA_exclusively", + "LLVA_exclusivity", + "LLVA_excursion", + "LLVA_execute", + "LLVA_execution", + "LLVA_executive", + "LLVA_exemplify", + "LLVA_exempt", + "LLVA_exert", + "LLVA_exertion", + "LLVA_exhaust", + "LLVA_exhausted", + "LLVA_exhaustion", + "LLVA_exhaustive", + "LLVA_exhibit", + "LLVA_exile", + "LLVA_existence", + "LLVA_existing", + "LLVA_exonerate", + "LLVA_exoneration", + "LLVA_expand", + "LLVA_expansion", + "LLVA_expectation", + "LLVA_expedience", + "LLVA_expedient", + "LLVA_expedite", + "LLVA_expedition", + "LLVA_expel", + "LLVA_expend", + "LLVA_expenditure", + "LLVA_expense", + "LLVA_experienced", + "LLVA_experimental", + "LLVA_experimentation", + "LLVA_expertise", + "LLVA_expiration", + "LLVA_expire", + "LLVA_expiry", + "LLVA_explanation", + "LLVA_explanatory", + "LLVA_explicit", + "LLVA_explicitly", + "LLVA_explode", + "LLVA_exploit", + "LLVA_exploitation", + "LLVA_exploration", + "LLVA_explore", + "LLVA_explorer", + "LLVA_explosion", + "LLVA_explosive", + "LLVA_export", + "LLVA_exportation", + "LLVA_exporter", + "LLVA_expose", + "LLVA_exposition", + "LLVA_exposure", + "LLVA_expression", + "LLVA_expressive", + "LLVA_expressly", + "LLVA_expressway", + "LLVA_exquisite", + "LLVA_extend", + "LLVA_extension", + "LLVA_extensive", + "LLVA_extensively", + "LLVA_extent", + "LLVA_exterior", + "LLVA_external", + "LLVA_extinct", + "LLVA_extinction", + "LLVA_extinguish", + "LLVA_extra", + "LLVA_extract", + "LLVA_extraction", + "LLVA_extraordinary", + "LLVA_extravagance", + "LLVA_extravagant", + "LLVA_extreme", + "LLVA_extremely", + "LLVA_eyeball", + "LLVA_eyebrow", + "LLVA_eyeglass", + "LLVA_eyelid", + "LLVA_eyesight", + "LLVA_fable", + "LLVA_fabric", + "LLVA_fabricate", + "LLVA_fabrication", + "LLVA_facilitate", + "LLVA_facility", + "LLVA_faction", + "LLVA_factor", + "LLVA_Fahrenheit", + "LLVA_fairly", + "LLVA_fairy", + "LLVA_faith", + "LLVA_faithful", + "LLVA_faithfully", + "LLVA_FALSE", + "LLVA_familiarity", + "LLVA_famine", + "LLVA_fanatic", + "LLVA_fancy", + "LLVA_fantastic", + "LLVA_farewell", + "LLVA_farmer", + "LLVA_farmhand", + "LLVA_farmhouse", + "LLVA_farming", + "LLVA_farther", + "LLVA_fascinate", + "LLVA_fascination", + "LLVA_fascism", + "LLVA_fascist", + "LLVA_fashion", + "LLVA_fashionable", + "LLVA_fasten", + "LLVA_fatal", + "LLVA_fathom", + "LLVA_fatigue", + "LLVA_faultless", + "LLVA_faulty", + "LLVA_favor", + "LLVA_favorable", + "LLVA_favorably", + "LLVA_favorite", + "LLVA_fearful", + "LLVA_fearless", + "LLVA_feasibility", + "LLVA_feasible", + "LLVA_feast", + "LLVA_feather", + "LLVA_feature", + "LLVA_federal", + "LLVA_federation", + "LLVA_feeble", + "LLVA_feedback", + "LLVA_fellowship", + "LLVA_female", + "LLVA_feminine", + "LLVA_fence", + "LLVA_ferocious", + "LLVA_ferrous", + "LLVA_ferry", + "LLVA_ferryboat", + "LLVA_fertile", + "LLVA_fertilizer", + "LLVA_fervent", + "LLVA_festival", + "LLVA_fetch", + "LLVA_feudal", + "LLVA_feudalism", + "LLVA_fiber", + "LLVA_fiction", + "LLVA_fictional", + "LLVA_fiddle", + "LLVA_fierce", + "LLVA_fiery", + "LLVA_fighter", + "LLVA_figurative", + "LLVA_figure", + "LLVA_filing", + "LLVA_filling", + "LLVA_filter", + "LLVA_filth", + "LLVA_filthy", + "LLVA_finalize", + "LLVA_finally", + "LLVA_finance", + "LLVA_financial", + "LLVA_financier", + "LLVA_financing", + "LLVA_finding", + "LLVA_finished", + "LLVA_finite", + "LLVA_fireman", + "LLVA_fireplace", + "LLVA_firework", + "LLVA_firmly", + "LLVA_firmness", + "LLVA_fisherman", + "LLVA_fishery", + "LLVA_fission", + "LLVA_fitness", + "LLVA_fitting", + "LLVA_fixed", + "LLVA_fixture", + "LLVA_flake", + "LLVA_flame", + "LLVA_flank", + "LLVA_flannel", + "LLVA_flare", + "LLVA_flash", + "LLVA_flask", + "LLVA_flatten", + "LLVA_flatter", + "LLVA_flavor", + "LLVA_fleece", + "LLVA_fleet", + "LLVA_flesh", + "LLVA_fleshy", + "LLVA_flexibility", + "LLVA_flexible", + "LLVA_flicker", + "LLVA_flight", + "LLVA_fling", + "LLVA_flock", + "LLVA_flour", + "LLVA_flourish", + "LLVA_fluctuate", + "LLVA_fluctuation", + "LLVA_fluency", + "LLVA_fluent", + "LLVA_fluid", + "LLVA_flush", + "LLVA_flute", + "LLVA_flutter", + "LLVA_focus", + "LLVA_fodder", + "LLVA_foggy", + "LLVA_foliage", + "LLVA_follower", + "LLVA_following", + "LLVA_foodstuff", + "LLVA_footing", + "LLVA_footstep", + "LLVA_forbid", + "LLVA_forbidden", + "LLVA_forecast", + "LLVA_forefather", + "LLVA_forefinger", + "LLVA_foregoing", + "LLVA_forehead", + "LLVA_foreigner", + "LLVA_foreman", + "LLVA_foremost", + "LLVA_foresee", + "LLVA_forestry", + "LLVA_foretell", + "LLVA_forge", + "LLVA_forgery", + "LLVA_forgive", + "LLVA_formality", + "LLVA_format", + "LLVA_formation", + "LLVA_formerly", + "LLVA_formidable", + "LLVA_formula", + "LLVA_formulate", + "LLVA_formulation", + "LLVA_forsake", + "LLVA_forth", + "LLVA_forthcoming", + "LLVA_fortitude", + "LLVA_fortnight", + "LLVA_fortress", + "LLVA_fortuity", + "LLVA_fortunately", + "LLVA_forum", + "LLVA_fossil", + "LLVA_foster", + "LLVA_found", + "LLVA_foundation", + "LLVA_founder", + "LLVA_fountain", + "LLVA_fourth", + "LLVA_fraction", + "LLVA_fractional", + "LLVA_fracture", + "LLVA_fragile", + "LLVA_fragment", + "LLVA_fragrance", + "LLVA_fragrant", + "LLVA_frail", + "LLVA_frame", + "LLVA_framework", + "LLVA_France", + "LLVA_franchise", + "LLVA_frank", + "LLVA_frankly", + "LLVA_freely", + "LLVA_freezer", + "LLVA_freight", + "LLVA_Frenchman", + "LLVA_frequency", + "LLVA_frequently", + "LLVA_freshen", + "LLVA_freshman", + "LLVA_friction", + "LLVA_fright", + "LLVA_frightening", + "LLVA_frightful", + "LLVA_fringe", + "LLVA_frock", + "LLVA_frontier", + "LLVA_frost", + "LLVA_frosty", + "LLVA_frown", + "LLVA_frugal", + "LLVA_fruitful", + "LLVA_frustrate", + "LLVA_frustration", + "LLVA_fulfil", + "LLVA_fulfillment", + "LLVA_fully", + "LLVA_fumble", + "LLVA_function", + "LLVA_functional", + "LLVA_fundamental", + "LLVA_funeral", + "LLVA_furious", + "LLVA_furnace", + "LLVA_furnish", + "LLVA_furrow", + "LLVA_fussy", + "LLVA_futures", + "LLVA_gallery", + "LLVA_gallon", + "LLVA_gallop", + "LLVA_gamble", + "LLVA_gambler", + "LLVA_gangster", + "LLVA_garage", + "LLVA_garbage", + "LLVA_gardener", + "LLVA_gardening", + "LLVA_garlic", + "LLVA_garment", + "LLVA_garrison", + "LLVA_gasoline", + "LLVA_gathering", + "LLVA_gauge", + "LLVA_generalization", + "LLVA_generalize", + "LLVA_generally", + "LLVA_generate", + "LLVA_generation", + "LLVA_generator", + "LLVA_generosity", + "LLVA_generous", + "LLVA_genius", + "LLVA_gently", + "LLVA_genuine", + "LLVA_geology", + "LLVA_geometry", + "LLVA_gesture", + "LLVA_ghost", + "LLVA_giant", + "LLVA_gigantic", + "LLVA_giggle", + "LLVA_ginger", + "LLVA_giver", + "LLVA_glare", + "LLVA_glassware", + "LLVA_gleam", + "LLVA_glide", + "LLVA_glimpse", + "LLVA_glisten", + "LLVA_glitter", + "LLVA_global", + "LLVA_globalization", + "LLVA_globalize", + "LLVA_globe", + "LLVA_gloom", + "LLVA_gloomy", + "LLVA_glorious", + "LLVA_glorify", + "LLVA_glossary", + "LLVA_glove", + "LLVA_goddess", + "LLVA_goodness", + "LLVA_goods", + "LLVA_goodwill", + "LLVA_goose", + "LLVA_gorge", + "LLVA_gorgeous", + "LLVA_gorilla", + "LLVA_gossip", + "LLVA_govern", + "LLVA_governess", + "LLVA_governor", + "LLVA_grace", + "LLVA_graceful", + "LLVA_gracious", + "LLVA_gradually", + "LLVA_graduation", + "LLVA_grammatical", + "LLVA_gramophone", + "LLVA_grand", + "LLVA_grandchild", + "LLVA_grandparent", + "LLVA_granite", + "LLVA_grant", + "LLVA_grape", + "LLVA_graph", + "LLVA_grasp", + "LLVA_grasshopper", + "LLVA_gratify", + "LLVA_gratifying", + "LLVA_gratis", + "LLVA_gratitude", + "LLVA_grave", + "LLVA_gravel", + "LLVA_gravity", + "LLVA_graze", + "LLVA_grease", + "LLVA_greatly", + "LLVA_greatness", + "LLVA_Greece", + "LLVA_greed", + "LLVA_greedy", + "LLVA_Greek", + "LLVA_greengrocer", + "LLVA_greenhouse", + "LLVA_greeting", + "LLVA_grief", + "LLVA_grieve", + "LLVA_grind", + "LLVA_groan", + "LLVA_grocer", + "LLVA_grocery", + "LLVA_groove", + "LLVA_grope", + "LLVA_gross", + "LLVA_groundless", + "LLVA_grove", + "LLVA_growl", + "LLVA_grown", + "LLVA_growth", + "LLVA_grudge", + "LLVA_grumble", + "LLVA_grunt", + "LLVA_guarantee", + "LLVA_guardian", + "LLVA_guesthouse", + "LLVA_guidance", + "LLVA_guilt", + "LLVA_guilty", + "LLVA_guitar", + "LLVA_gunpowder", + "LLVA_gutter", + "LLVA_gymnasium", + "LLVA_gymnastics", + "LLVA_gymnast", + "LLVA_habitual", + "LLVA_haggard", + "LLVA_haggle", + "LLVA_haircut", + "LLVA_hairdress", + "LLVA_hairpin", + "LLVA_hairy", + "LLVA_halfway", + "LLVA_hallmark", + "LLVA_halve", + "LLVA_hamburger", + "LLVA_hammer", + "LLVA_hamper", + "LLVA_handbag", + "LLVA_handbook", + "LLVA_handful", + "LLVA_handicap", + "LLVA_handicapped", + "LLVA_handkerchief", + "LLVA_handle", + "LLVA_handling", + "LLVA_handout", + "LLVA_handwriting", + "LLVA_handy", + "LLVA_hanger", + "LLVA_haphazard", + "LLVA_happening", + "LLVA_happily", + "LLVA_happiness", + "LLVA_harbor", + "LLVA_harden", + "LLVA_hardness", + "LLVA_hardship", + "LLVA_hardware", + "LLVA_hardy", + "LLVA_harmful", + "LLVA_harmless", + "LLVA_harmonious", + "LLVA_harmony", + "LLVA_harness", + "LLVA_harsh", + "LLVA_haste", + "LLVA_hasten", + "LLVA_hasty", + "LLVA_hatch", + "LLVA_hateful", + "LLVA_hatred", + "LLVA_haughty", + "LLVA_haunt", + "LLVA_hazard", + "LLVA_heading", + "LLVA_headline", + "LLVA_headlong", + "LLVA_headmaster", + "LLVA_healthy", + "LLVA_hearing", + "LLVA_heartfelt", + "LLVA_hearth", + "LLVA_heartily", + "LLVA_hearty", + "LLVA_heated", + "LLVA_heating", + "LLVA_heave", + "LLVA_heavily", + "LLVA_hedge", + "LLVA_hedgehog", + "LLVA_heighten", + "LLVA_heiress", + "LLVA_helicopter", + "LLVA_helmet", + "LLVA_helpful", + "LLVA_helpless", + "LLVA_hemisphere", + "LLVA_hence", + "LLVA_henceforth", + "LLVA_herald", + "LLVA_herbal", + "LLVA_hereafter", + "LLVA_hereby", + "LLVA_herein", + "LLVA_hereinafter", + "LLVA_hereof", + "LLVA_hereto", + "LLVA_herewith", + "LLVA_heroic", + "LLVA_heroine", + "LLVA_hesitant", + "LLVA_hesitate", + "LLVA_hesitation", + "LLVA_hideous", + "LLVA_highland", + "LLVA_highway", + "LLVA_hijack", + "LLVA_hijacker", + "LLVA_hillside", + "LLVA_hinder", + "LLVA_hinterland", + "LLVA_hindrance", + "LLVA_hinge", + "LLVA_historian", + "LLVA_historic", + "LLVA_historical", + "LLVA_hitchhike", + "LLVA_hitherto", + "LLVA_hoarse", + "LLVA_hobby", + "LLVA_hoist", + "LLVA_holder", + "LLVA_holding", + "LLVA_hollow", + "LLVA_homeless", + "LLVA_homely", + "LLVA_homesick", + "LLVA_homogenous", + "LLVA_honesty", + "LLVA_honey", + "LLVA_honeymoon", + "LLVA_honor", + "LLVA_honorable", + "LLVA_hopeful", + "LLVA_hopefully", + "LLVA_hopeless", + "LLVA_horizon", + "LLVA_horizontal", + "LLVA_horrible", + "LLVA_horrify", + "LLVA_horror", + "LLVA_horsepower", + "LLVA_hospitable", + "LLVA_hospitality", + "LLVA_hostage", + "LLVA_hostel", + "LLVA_hostess", + "LLVA_hostile", + "LLVA_hotdog", + "LLVA_hotelling", + "LLVA_hound", + "LLVA_household", + "LLVA_housekeeper", + "LLVA_housewife", + "LLVA_housework", + "LLVA_hover", + "LLVA_humane", + "LLVA_humanism", + "LLVA_humanitarian", + "LLVA_humanity", + "LLVA_humble", + "LLVA_humid", + "LLVA_humidity", + "LLVA_humiliate", + "LLVA_humiliation", + "LLVA_humor", + "LLVA_humorous", + "LLVA_hundredth", + "LLVA_hunger", + "LLVA_hunter", + "LLVA_hurrah", + "LLVA_hustle", + "LLVA_hydraulic", + "LLVA_hydroelectric", + "LLVA_hydrogen", + "LLVA_hygiene", + "LLVA_hypocrisy", + "LLVA_hypothesis", + "LLVA_hypothetical", + "LLVA_hysteria", + "LLVA_hysteric", + "LLVA_Iceland", + "LLVA_ideal", + "LLVA_idealism", + "LLVA_idealize", + "LLVA_identical", + "LLVA_identification", + "LLVA_identify", + "LLVA_identity", + "LLVA_idiom", + "LLVA_idiomatic", + "LLVA_idiot", + "LLVA_idleness", + "LLVA_ignite", + "LLVA_ignorance", + "LLVA_ignorant", + "LLVA_illegal", + "LLVA_illegible", + "LLVA_illiteracy", + "LLVA_illiterate", + "LLVA_illuminate", + "LLVA_illusion", + "LLVA_illusive", + "LLVA_illustrate", + "LLVA_illustration", + "LLVA_image", + "LLVA_imaginary", + "LLVA_imagination", + "LLVA_imitate", + "LLVA_imitation", + "LLVA_immaterial", + "LLVA_immature", + "LLVA_immediate", + "LLVA_immediately", + "LLVA_immense", + "LLVA_immerse", + "LLVA_immigrant", + "LLVA_immigrate", + "LLVA_immigration", + "LLVA_imminent", + "LLVA_immoral", + "LLVA_immortal", + "LLVA_impact", + "LLVA_impart", + "LLVA_impartial", + "LLVA_impatience", + "LLVA_impatient", + "LLVA_imperative", + "LLVA_imperfect", + "LLVA_imperialism", + "LLVA_imperialist", + "LLVA_implement", + "LLVA_implementation", + "LLVA_implication", + "LLVA_implied", + "LLVA_implore", + "LLVA_imply", + "LLVA_importance", + "LLVA_importation", + "LLVA_importer", + "LLVA_impose", + "LLVA_imposition", + "LLVA_impossibility", + "LLVA_impost", + "LLVA_impractical", + "LLVA_impress", + "LLVA_impression", + "LLVA_impressive", + "LLVA_imprison", + "LLVA_imprisonment", + "LLVA_improper", + "LLVA_improvement", + "LLVA_impulse", + "LLVA_impurity", + "LLVA_inability", + "LLVA_inaccessible", + "LLVA_inaccurate", + "LLVA_inadequate", + "LLVA_inasmuch", + "LLVA_inaugural", + "LLVA_inaugurate", + "LLVA_inauguration", + "LLVA_incapable", + "LLVA_incense", + "LLVA_incentive", + "LLVA_incidentally", + "LLVA_inclination", + "LLVA_incline", + "LLVA_inclined", + "LLVA_inclusion", + "LLVA_inclusive", + "LLVA_incompatibility", + "LLVA_incompatible", + "LLVA_incomplete", + "LLVA_inconsistency", + "LLVA_inconsistent", + "LLVA_inconvenience", + "LLVA_inconvenient", + "LLVA_incorporate", + "LLVA_incorporated", + "LLVA_incorrect", + "LLVA_incoterms", + "LLVA_increasing", + "LLVA_increasingly", + "LLVA_incredible", + "LLVA_incredulous", + "LLVA_increment", + "LLVA_incur", + "LLVA_indebted", + "LLVA_indebtedness", + "LLVA_indefinite", + "LLVA_indefinitely", + "LLVA_indemnify", + "LLVA_indent", + "LLVA_independence", + "LLVA_independent", + "LLVA_independently", + "LLVA_index", + "LLVA_indication", + "LLVA_indicative", + "LLVA_indifference", + "LLVA_indifferent", + "LLVA_indigestion", + "LLVA_indignant", + "LLVA_indignation", + "LLVA_indirect", + "LLVA_indirectly", + "LLVA_indispensable", + "LLVA_individual", + "LLVA_indoor", + "LLVA_indoors", + "LLVA_induce", + "LLVA_inducement", + "LLVA_induction", + "LLVA_indulge", + "LLVA_industrial", + "LLVA_industrialize", + "LLVA_industrialization", + "LLVA_industrialized", + "LLVA_industrious", + "LLVA_ineffective", + "LLVA_ineffectiveness", + "LLVA_inefficiency", + "LLVA_inefficient", + "LLVA_inertia", + "LLVA_inevitable", + "LLVA_inevitably", + "LLVA_inexpensive", + "LLVA_infant", + "LLVA_infantry", + "LLVA_infect", + "LLVA_infection", + "LLVA_infectious", + "LLVA_infer", + "LLVA_inference", + "LLVA_inferior", + "LLVA_inferiority", + "LLVA_infinite", + "LLVA_infinitely", + "LLVA_infinitive", + "LLVA_infinity", + "LLVA_inflammable", + "LLVA_inflation", + "LLVA_inflict", + "LLVA_influential", + "LLVA_influenza", + "LLVA_inform", + "LLVA_informal", + "LLVA_informative", + "LLVA_infrequent", + "LLVA_infringe", + "LLVA_infringement", + "LLVA_ingenious", + "LLVA_ingenuity", + "LLVA_inhabit", + "LLVA_inhabitant", + "LLVA_inherent", + "LLVA_inherit", + "LLVA_initial", + "LLVA_initially", + "LLVA_initiate", + "LLVA_initiative", + "LLVA_inject", + "LLVA_injection", + "LLVA_injure", + "LLVA_injury", + "LLVA_injustice", + "LLVA_inland", + "LLVA_inlet", + "LLVA_inner", + "LLVA_innocence", + "LLVA_innocent", + "LLVA_innovate", + "LLVA_innovation", + "LLVA_innumerable", + "LLVA_inorganic", + "LLVA_input", + "LLVA_inquire", + "LLVA_inquiry", + "LLVA_insane", + "LLVA_insect", + "LLVA_insert", + "LLVA_insertion", + "LLVA_insider", + "LLVA_insight", + "LLVA_insignificant", + "LLVA_insistent", + "LLVA_insofar", + "LLVA_insolvent", + "LLVA_inspect", + "LLVA_inspection", + "LLVA_inspector", + "LLVA_inspiration", + "LLVA_inspire", + "LLVA_instable", + "LLVA_install", + "LLVA_installation", + "LLVA_installment", + "LLVA_instant", + "LLVA_instantly", + "LLVA_instinct", + "LLVA_instinctive", + "LLVA_institute", + "LLVA_institution", + "LLVA_instruct", + "LLVA_instruction", + "LLVA_instructive", + "LLVA_instructor", + "LLVA_instrumental", + "LLVA_insufficient", + "LLVA_insulate", + "LLVA_insulation", + "LLVA_insult", + "LLVA_insurance", + "LLVA_insure", + "LLVA_intangible", + "LLVA_integral", + "LLVA_integrate", + "LLVA_integration", + "LLVA_integrity", + "LLVA_intellect", + "LLVA_intellectual", + "LLVA_intelligence", + "LLVA_intelligent", + "LLVA_intense", + "LLVA_intensity", + "LLVA_intensive", + "LLVA_intent", + "LLVA_intention", + "LLVA_intentional", + "LLVA_interact", + "LLVA_interaction", + "LLVA_intercourse", + "LLVA_interested", + "LLVA_interface", + "LLVA_interfere", + "LLVA_interference", + "LLVA_interior", + "LLVA_intermediate", + "LLVA_internal", + "LLVA_international", + "LLVA_internationalization", + "LLVA_internationalize", + "LLVA_interpret", + "LLVA_interpretation", + "LLVA_interpreter", + "LLVA_interrupt", + "LLVA_interruption", + "LLVA_interval", + "LLVA_intervene", + "LLVA_intimate", + "LLVA_intimation", + "LLVA_intonation", + "LLVA_introduction", + "LLVA_introductory", + "LLVA_intrude", + "LLVA_inundate", + "LLVA_invade", + "LLVA_invader", + "LLVA_invalid", + "LLVA_invalidate", + "LLVA_invaluable", + "LLVA_invariably", + "LLVA_invasion", + "LLVA_invent", + "LLVA_invention", + "LLVA_inventor", + "LLVA_inverse", + "LLVA_inversely", + "LLVA_invest", + "LLVA_investigate", + "LLVA_investigation", + "LLVA_investment", + "LLVA_invisible", + "LLVA_invitation", + "LLVA_invoice", + "LLVA_involved", + "LLVA_involvement", + "LLVA_inward", + "LLVA_inwards", + "LLVA_Ireland", + "LLVA_Irish", + "LLVA_ironical", + "LLVA_irony", + "LLVA_irregular", + "LLVA_irregularity", + "LLVA_irresistible", + "LLVA_irrespective", + "LLVA_irrevocable", + "LLVA_irrigate", + "LLVA_irrigation", + "LLVA_irritate", + "LLVA_irritation", + "LLVA_Islam", + "LLVA_isolate", + "LLVA_isolation", + "LLVA_Italian", + "LLVA_Italy", + "LLVA_itemize", + "LLVA_ivory", + "LLVA_jacket", + "LLVA_Japanese", + "LLVA_jealousy", + "LLVA_jealous", + "LLVA_jeans", + "LLVA_jelly", + "LLVA_jeopardize", + "LLVA_Jesus", + "LLVA_jettison", + "LLVA_jewel", + "LLVA_jewelry", + "LLVA_Jewish", + "LLVA_jingle", + "LLVA_jobless", + "LLVA_joint", + "LLVA_journal", + "LLVA_journalism", + "LLVA_journalist", + "LLVA_joyful", + "LLVA_judge", + "LLVA_judgement", + "LLVA_juice", + "LLVA_juicy", + "LLVA_jumble", + "LLVA_junction", + "LLVA_jungle", + "LLVA_junior", + "LLVA_Jupiter", + "LLVA_justice", + "LLVA_justifiable", + "LLVA_justification", + "LLVA_justify", + "LLVA_juvenile", + "LLVA_kangaroo", + "LLVA_keeper", + "LLVA_keeping", + "LLVA_kernel", + "LLVA_kerosene", + "LLVA_kettle", + "LLVA_keyboard", + "LLVA_keyhole", + "LLVA_kidnap", + "LLVA_kidnaper", + "LLVA_kidney", + "LLVA_killer", + "LLVA_kilogram", + "LLVA_kilometer", + "LLVA_kilowatt", + "LLVA_kindergarten", + "LLVA_kindle", + "LLVA_kindly", + "LLVA_kindness", + "LLVA_kingdom", + "LLVA_kneel", + "LLVA_knight", + "LLVA_knowledgeable", + "LLVA_label", + "LLVA_laboratory", + "LLVA_labor", + "LLVA_laborer", + "LLVA_landed", + "LLVA_landing", + "LLVA_landlady", + "LLVA_landlord", + "LLVA_landscape", + "LLVA_Langkap", + "LLVA_lantern", + "LLVA_lapse", + "LLVA_largely", + "LLVA_laser", + "LLVA_lasting", + "LLVA_lately", + "LLVA_latent", + "LLVA_later", + "LLVA_lateral", + "LLVA_lathe", + "LLVA_Latin", + "LLVA_latitude", + "LLVA_latter", + "LLVA_lattice", + "LLVA_launch", + "LLVA_laundry", + "LLVA_lavatory", + "LLVA_lawful", + "LLVA_layday", + "LLVA_layer", + "LLVA_layout", + "LLVA_laziness", + "LLVA_leader", + "LLVA_leadership", + "LLVA_leading", + "LLVA_leaflet", + "LLVA_league", + "LLVA_leakage", + "LLVA_learned", + "LLVA_learner", + "LLVA_learning", + "LLVA_lease", + "LLVA_least", + "LLVA_leather", + "LLVA_lecturer", + "LLVA_leeway", + "LLVA_leftover", + "LLVA_legal", + "LLVA_legend", + "LLVA_legendary", + "LLVA_legislation", + "LLVA_legitimate", + "LLVA_leisure", + "LLVA_lemon", + "LLVA_lemonade", + "LLVA_lending", + "LLVA_lengthen", + "LLVA_Leninism", + "LLVA_leopard", + "LLVA_lessen", + "LLVA_lever", + "LLVA_liability", + "LLVA_liable", + "LLVA_liberal", + "LLVA_liberate", + "LLVA_liberation", + "LLVA_liberty", + "LLVA_librarian", + "LLVA_library", + "LLVA_license", + "LLVA_lieutenant", + "LLVA_lifetime", + "LLVA_lighten", + "LLVA_lighter", + "LLVA_lighthouse", + "LLVA_lightly", + "LLVA_lightning", + "LLVA_likelihood", + "LLVA_likely", + "LLVA_likeness", + "LLVA_likewise", + "LLVA_liking", + "LLVA_limestone", + "LLVA_limit", + "LLVA_limitation", + "LLVA_limited", + "LLVA_limousine", + "LLVA_linear", + "LLVA_linen", + "LLVA_liner", + "LLVA_linger", + "LLVA_linguist", + "LLVA_linguistics", + "LLVA_lining", + "LLVA_lioness", + "LLVA_lipstick", + "LLVA_liquor", + "LLVA_listener", + "LLVA_literacy", + "LLVA_literal", + "LLVA_literally", + "LLVA_literary", + "LLVA_literate", + "LLVA_literature", + "LLVA_litre", + "LLVA_litter", + "LLVA_livelihood", + "LLVA_lively", + "LLVA_liver", + "LLVA_livestock", + "LLVA_living", + "LLVA_lobby", + "LLVA_lobster", + "LLVA_local", + "LLVA_locality", + "LLVA_locate", + "LLVA_location", + "LLVA_locomotive", + "LLVA_locust", + "LLVA_lodge", + "LLVA_lodging", + "LLVA_lofty", + "LLVA_logic", + "LLVA_logical", + "LLVA_loneliness", + "LLVA_lonesome", + "LLVA_longevity", + "LLVA_longing", + "LLVA_longitude", + "LLVA_loosen", + "LLVA_lorry", + "LLVA_lottery", + "LLVA_loudness", + "LLVA_loudspeaker", + "LLVA_lounge", + "LLVA_lovable", + "LLVA_lover", + "LLVA_loyal", + "LLVA_loyalty", + "LLVA_lubricate", + "LLVA_lubrication", + "LLVA_lucky", + "LLVA_luggage", + "LLVA_lumber", + "LLVA_luminous", + "LLVA_lumpsum", + "LLVA_lunar", + "LLVA_luncheon", + "LLVA_luxurious", + "LLVA_luxury", + "LLVA_machinery", + "LLVA_mackintosh", + "LLVA_macroeconomics", + "LLVA_madam", + "LLVA_madman", + "LLVA_madness", + "LLVA_magic", + "LLVA_magician", + "LLVA_magistrate", + "LLVA_magnet", + "LLVA_magnetic", + "LLVA_magnetism", + "LLVA_magnificent", + "LLVA_magnify", + "LLVA_magnitude", + "LLVA_maiden", + "LLVA_mailbox", + "LLVA_mainland", + "LLVA_mainly", + "LLVA_mainstream", + "LLVA_maintenance", + "LLVA_maize", + "LLVA_majesty", + "LLVA_maker", + "LLVA_malady", + "LLVA_malaria", + "LLVA_malaise", + "LLVA_Malaysia", + "LLVA_malice", + "LLVA_malicious", + "LLVA_management", + "LLVA_managerial", + "LLVA_manhood", + "LLVA_manifest", + "LLVA_manifestation", + "LLVA_manifesto", + "LLVA_manipulate", + "LLVA_manipulation", + "LLVA_manly", + "LLVA_mansion", + "LLVA_manual", + "LLVA_manufacture", + "LLVA_manufactured", + "LLVA_manufacturer", + "LLVA_manuscript", + "LLVA_maple", + "LLVA_marble", + "LLVA_margin", + "LLVA_marginal", + "LLVA_marine", + "LLVA_mariner", + "LLVA_marked", + "LLVA_marketable", + "LLVA_marketing", + "LLVA_marketplace", + "LLVA_marking", + "LLVA_married", + "LLVA_marsh", + "LLVA_marshal", + "LLVA_martyr", + "LLVA_marvel", + "LLVA_marvellous", + "LLVA_Marxism", + "LLVA_Marxist", + "LLVA_masculine", + "LLVA_massacre", + "LLVA_massage", + "LLVA_massive", + "LLVA_massmedia", + "LLVA_masterpiece", + "LLVA_materialism", + "LLVA_materialize", + "LLVA_mathematical", + "LLVA_mathematician", + "LLVA_maths", + "LLVA_matinee", + "LLVA_mattress", + "LLVA_mature", + "LLVA_maturity", + "LLVA_maximize", + "LLVA_maximum", + "LLVA_meadow", + "LLVA_meantime", + "LLVA_meanwhile", + "LLVA_measurement", + "LLVA_mechanic", + "LLVA_mechanical", + "LLVA_mechanically", + "LLVA_mechanics", + "LLVA_mechanism", + "LLVA_medal", + "LLVA_medical", + "LLVA_medieval", + "LLVA_meditate", + "LLVA_meditation", + "LLVA_Mediterranean", + "LLVA_melancholy", + "LLVA_melody", + "LLVA_melon", + "LLVA_membership", + "LLVA_memoir", + "LLVA_memorial", + "LLVA_memorize", + "LLVA_menace", + "LLVA_mental", + "LLVA_mentality", + "LLVA_mention", + "LLVA_merchandise", + "LLVA_mercantile", + "LLVA_merciful", + "LLVA_mercury", + "LLVA_mercy", + "LLVA_merely", + "LLVA_merge", + "LLVA_merit", + "LLVA_mermaid", + "LLVA_messenger", + "LLVA_metallic", + "LLVA_metallurgy", + "LLVA_method", + "LLVA_methodology", + "LLVA_meticulous", + "LLVA_meticulously", + "LLVA_metre", + "LLVA_metric", + "LLVA_metropolitan", + "LLVA_Mexican", + "LLVA_Mexico", + "LLVA_microeconomics", + "LLVA_microphone", + "LLVA_microprocessor", + "LLVA_microscope", + "LLVA_microwave", + "LLVA_midday", + "LLVA_middleman", + "LLVA_middling", + "LLVA_midnight", + "LLVA_midst", + "LLVA_mighty", + "LLVA_migrant", + "LLVA_migrate", + "LLVA_migration", + "LLVA_mileage", + "LLVA_milestone", + "LLVA_militia", + "LLVA_milkman", + "LLVA_milky", + "LLVA_miller", + "LLVA_millimetre", + "LLVA_millionaire", + "LLVA_mince", + "LLVA_mincer", + "LLVA_miner", + "LLVA_mineral", + "LLVA_mingle", + "LLVA_miniature", + "LLVA_minicomputer", + "LLVA_minimize", + "LLVA_minimum", + "LLVA_ministry", + "LLVA_minor", + "LLVA_minority", + "LLVA_minus", + "LLVA_miracle", + "LLVA_miraculous", + "LLVA_miscarriage", + "LLVA_miscarry", + "LLVA_mischief", + "LLVA_miser", + "LLVA_miserable", + "LLVA_misery", + "LLVA_misfortune", + "LLVA_misgiving", + "LLVA_mishandle", + "LLVA_mishap", + "LLVA_misinterpret", + "LLVA_mislead", + "LLVA_missile", + "LLVA_mission", + "LLVA_missionary", + "LLVA_mistaken", + "LLVA_mister", + "LLVA_mistress", + "LLVA_misty", + "LLVA_misunderstand", + "LLVA_misunderstanding", + "LLVA_mitten", + "LLVA_mixer", + "LLVA_mixture", + "LLVA_mobile", + "LLVA_mobilize", + "LLVA_moderate", + "LLVA_moderately", + "LLVA_modernization", + "LLVA_modernize", + "LLVA_modesty", + "LLVA_modification", + "LLVA_modified", + "LLVA_modify", + "LLVA_modulate", + "LLVA_module", + "LLVA_moist", + "LLVA_moisture", + "LLVA_molecular", + "LLVA_molecule", + "LLVA_momentary", + "LLVA_momentous", + "LLVA_monarch", + "LLVA_monastery", + "LLVA_monetary", + "LLVA_money", + "LLVA_monitor", + "LLVA_monopolize", + "LLVA_monopoly", + "LLVA_monotonous", + "LLVA_monotony", + "LLVA_monster", + "LLVA_monstrous", + "LLVA_monthly", + "LLVA_monument", + "LLVA_monumental", + "LLVA_moonlight", + "LLVA_moonlighting", + "LLVA_moral", + "LLVA_morale", + "LLVA_morality", + "LLVA_moreover", + "LLVA_mortal", + "LLVA_Moslem", + "LLVA_mosque", + "LLVA_mosquito", + "LLVA_mostly", + "LLVA_motel", + "LLVA_motion", + "LLVA_motionless", + "LLVA_motivate", + "LLVA_motivation", + "LLVA_motive", + "LLVA_motorcar", + "LLVA_motorcycle", + "LLVA_motorist", + "LLVA_motorway", + "LLVA_motto", + "LLVA_mould", + "LLVA_mount", + "LLVA_mountainous", + "LLVA_mourn", + "LLVA_mournful", + "LLVA_mourning", + "LLVA_mouse", + "LLVA_moustache", + "LLVA_mouthful", + "LLVA_movement", + "LLVA_movie", + "LLVA_muddy", + "LLVA_muffle", + "LLVA_muffler", + "LLVA_multiple", + "LLVA_multiplication", + "LLVA_multiply", + "LLVA_multifunction", + "LLVA_multitude", + "LLVA_municipal", + "LLVA_mumble", + "LLVA_mumps", + "LLVA_murderer", + "LLVA_murmur", + "LLVA_muscle", + "LLVA_muscular", + "LLVA_mushroom", + "LLVA_musical", + "LLVA_musician", + "LLVA_mustard", + "LLVA_mutter", + "LLVA_mutton", + "LLVA_mutual", + "LLVA_myriad", + "LLVA_mysterious", + "LLVA_mystery", + "LLVA_mystic", + "LLVA_mythology", + "LLVA_naive", + "LLVA_naked", + "LLVA_nameless", + "LLVA_namely", + "LLVA_namesake", + "LLVA_napkin", + "LLVA_narrate", + "LLVA_narration", + "LLVA_narrator", + "LLVA_nasty", + "LLVA_nationality", + "LLVA_natural", + "LLVA_naturally", + "LLVA_nature", + "LLVA_naughty", + "LLVA_nausea", + "LLVA_naval", + "LLVA_navel", + "LLVA_navigable", + "LLVA_navigation", + "LLVA_nearby", + "LLVA_necessarily", + "LLVA_necessitate", + "LLVA_necessity", + "LLVA_necklace", + "LLVA_needful", + "LLVA_needle", + "LLVA_needless", + "LLVA_needy", + "LLVA_negate", + "LLVA_negation", + "LLVA_neglect", + "LLVA_negligence", + "LLVA_negligent", + "LLVA_negligible", + "LLVA_negotiable", + "LLVA_negotiate", + "LLVA_negotiation", + "LLVA_negro", + "LLVA_neighbor", + "LLVA_neighborhood", + "LLVA_neighboring", + "LLVA_nephew", + "LLVA_nerve", + "LLVA_nervous", + "LLVA_nestle", + "LLVA_network", + "LLVA_neutral", + "LLVA_neutrality", + "LLVA_neutron", + "LLVA_nevertheless", + "LLVA_nickel", + "LLVA_nickname", + "LLVA_niece", + "LLVA_nightgown", + "LLVA_nightingale", + "LLVA_nightmare", + "LLVA_nitrogen", + "LLVA_nobility", + "LLVA_noble", + "LLVA_noisy", + "LLVA_nominal", + "LLVA_nominate", + "LLVA_nomination", + "LLVA_nonsense", + "LLVA_normal", + "LLVA_normalization", + "LLVA_normalize", + "LLVA_normally", + "LLVA_northeast", + "LLVA_northward", + "LLVA_northwest", + "LLVA_nostril", + "LLVA_notable", + "LLVA_notably", + "LLVA_notebook", + "LLVA_noted", + "LLVA_noticeable", + "LLVA_notification", + "LLVA_notify", + "LLVA_notion", + "LLVA_notorious", + "LLVA_notwithstanding", + "LLVA_nought", + "LLVA_nourish", + "LLVA_nourishment", + "LLVA_novel", + "LLVA_novelist", + "LLVA_novelette", + "LLVA_novelty", + "LLVA_nowadays", + "LLVA_nowhere", + "LLVA_nuclear", + "LLVA_nucleus", + "LLVA_nuisance", + "LLVA_nullify", + "LLVA_numerical", + "LLVA_numerous", + "LLVA_nursery", + "LLVA_nylon", + "LLVA_obedience", + "LLVA_obedient", + "LLVA_objection", + "LLVA_objective", + "LLVA_obligation", + "LLVA_oblige", + "LLVA_obliterate", + "LLVA_oblong", + "LLVA_obscure", + "LLVA_observance", + "LLVA_observation", + "LLVA_observe", + "LLVA_observer", + "LLVA_obstacle", + "LLVA_obstinate", + "LLVA_obstruction", + "LLVA_obtainable", + "LLVA_obviously", + "LLVA_occasion", + "LLVA_occasional", + "LLVA_occasionally", + "LLVA_occident", + "LLVA_occidental", + "LLVA_occupation", + "LLVA_occupy", + "LLVA_occur", + "LLVA_occurrence", + "LLVA_Oceania", + "LLVA_oceanography", + "LLVA_odour", + "LLVA_offence", + "LLVA_offend", + "LLVA_offensive", + "LLVA_offering", + "LLVA_officer", + "LLVA_offset", + "LLVA_offspring", + "LLVA_olive", + "LLVA_ominous", + "LLVA_omission", + "LLVA_onion", + "LLVA_onset", + "LLVA_onward", + "LLVA_opaque", + "LLVA_opener", + "LLVA_opening", + "LLVA_opera", + "LLVA_operate", + "LLVA_operational", + "LLVA_operative", + "LLVA_operator", + "LLVA_opium", + "LLVA_opponent", + "LLVA_opportune", + "LLVA_opportunity", + "LLVA_oppose", + "LLVA_opposite", + "LLVA_opposition", + "LLVA_oppress", + "LLVA_oppression", + "LLVA_optical", + "LLVA_optimal", + "LLVA_optimism", + "LLVA_optimistic", + "LLVA_optimize", + "LLVA_optimum", + "LLVA_option", + "LLVA_optional", + "LLVA_orbit", + "LLVA_orchard", + "LLVA_orchestra", + "LLVA_order", + "LLVA_orderly", + "LLVA_ordinarily", + "LLVA_organ", + "LLVA_organic", + "LLVA_organism", + "LLVA_organization", + "LLVA_organizational", + "LLVA_organize", + "LLVA_orient", + "LLVA_oriental", + "LLVA_orientation", + "LLVA_origin", + "LLVA_original", + "LLVA_originality", + "LLVA_originally", + "LLVA_originate", + "LLVA_ornament", + "LLVA_ornamental", + "LLVA_orphan", + "LLVA_oscillation", + "LLVA_otherwise", + "LLVA_ounce", + "LLVA_outbreak", + "LLVA_outcome", + "LLVA_outdoor", + "LLVA_outdoors", + "LLVA_outer", + "LLVA_outermost", + "LLVA_outland", + "LLVA_outlandish", + "LLVA_outlaw", + "LLVA_outlay", + "LLVA_outlet", + "LLVA_outlook", + "LLVA_output", + "LLVA_outrage", + "LLVA_outrageous", + "LLVA_outright", + "LLVA_outset", + "LLVA_outsider", + "LLVA_outskirts", + "LLVA_outstanding", + "LLVA_outturn", + "LLVA_outward", + "LLVA_overall", + "LLVA_overcast", + "LLVA_overcharge", + "LLVA_overcoat", + "LLVA_overcome", + "LLVA_overestimate", + "LLVA_overextend", + "LLVA_overflow", + "LLVA_overhead", + "LLVA_overhear", + "LLVA_overjoy", + "LLVA_overlap", + "LLVA_overlapping", + "LLVA_overload", + "LLVA_overlook", + "LLVA_overnight", + "LLVA_overpayment", + "LLVA_overseas", + "LLVA_oversight", + "LLVA_overtake", + "LLVA_overthrow", + "LLVA_overtime", + "LLVA_overwhelm", + "LLVA_overwhelming", + "LLVA_owing", + "LLVA_ownership", + "LLVA_oxide", + "LLVA_oxygen", + "LLVA_oyster", + "LLVA_pacific", + "LLVA_package", + "LLVA_packaging", + "LLVA_packet", + "LLVA_packing", + "LLVA_painful", + "LLVA_paint", + "LLVA_painter", + "LLVA_painting", + "LLVA_pamphlet", + "LLVA_panda", + "LLVA_panel", + "LLVA_panic", + "LLVA_panorama", + "LLVA_panoramic", + "LLVA_panther", + "LLVA_pantry", + "LLVA_pants", + "LLVA_papercut", + "LLVA_papercutting", + "LLVA_papers", + "LLVA_parachute", + "LLVA_parade", + "LLVA_paradise", + "LLVA_paragraph", + "LLVA_parallel", + "LLVA_paralyse", + "LLVA_parameter", + "LLVA_parasite", + "LLVA_parcel", + "LLVA_Paris", + "LLVA_parish", + "LLVA_parking", + "LLVA_parliament", + "LLVA_parlor", + "LLVA_parrot", + "LLVA_partial", + "LLVA_partially", + "LLVA_participant", + "LLVA_participate", + "LLVA_participation", + "LLVA_particle", + "LLVA_particularly", + "LLVA_partition", + "LLVA_partner", + "LLVA_partnership", + "LLVA_passable", + "LLVA_passion", + "LLVA_passionate", + "LLVA_passive", + "LLVA_paste", + "LLVA_pastime", + "LLVA_pasture", + "LLVA_patch", + "LLVA_patent", + "LLVA_pathetic", + "LLVA_patience", + "LLVA_patriot", + "LLVA_patriotic", + "LLVA_patriotism", + "LLVA_patrol", + "LLVA_patron", + "LLVA_patronage", + "LLVA_pause", + "LLVA_pavement", + "LLVA_payable", + "LLVA_payment", + "LLVA_peaceful", + "LLVA_peach", + "LLVA_peacock", + "LLVA_peanut", + "LLVA_pearl", + "LLVA_peasantry", + "LLVA_pebble", + "LLVA_peculiar", + "LLVA_peculiarity", + "LLVA_pedal", + "LLVA_pedestrian", + "LLVA_pedlar", + "LLVA_penalty", + "LLVA_pending", + "LLVA_penetrate", + "LLVA_penetration", + "LLVA_penicillin", + "LLVA_peninsular", + "LLVA_pension", + "LLVA_pepper", + "LLVA_perceive", + "LLVA_percentage", + "LLVA_perception", + "LLVA_perch", + "LLVA_perfection", + "LLVA_perfectly", + "LLVA_perform", + "LLVA_performance", + "LLVA_performer", + "LLVA_perfume", + "LLVA_peril", + "LLVA_perimeter", + "LLVA_peripheral", + "LLVA_perish", + "LLVA_permanence", + "LLVA_permanent", + "LLVA_permanently", + "LLVA_permission", + "LLVA_permissive", + "LLVA_perpendicular", + "LLVA_perpetual", + "LLVA_perplex", + "LLVA_persecute", + "LLVA_persecution", + "LLVA_persevere", + "LLVA_perseverance", + "LLVA_persist", + "LLVA_persistence", + "LLVA_personal", + "LLVA_personality", + "LLVA_personally", + "LLVA_perspective", + "LLVA_persuasion", + "LLVA_pertain", + "LLVA_pertinence", + "LLVA_pertinent", + "LLVA_perturb", + "LLVA_perturbed", + "LLVA_perusal", + "LLVA_peruse", + "LLVA_pessimist", + "LLVA_pessimistic", + "LLVA_petition", + "LLVA_petrol", + "LLVA_petroleum", + "LLVA_petty", + "LLVA_phase", + "LLVA_phenomenon", + "LLVA_philosopher", + "LLVA_philosophical", + "LLVA_philosophy", + "LLVA_phone", + "LLVA_phonetics", + "LLVA_photo", + "LLVA_photograph", + "LLVA_photographer", + "LLVA_photography", + "LLVA_photostatic", + "LLVA_phrase", + "LLVA_physical", + "LLVA_physically", + "LLVA_physician", + "LLVA_physicist", + "LLVA_pianist", + "LLVA_pickle", + "LLVA_pickpocket", + "LLVA_picnic", + "LLVA_pictorial", + "LLVA_picturesque", + "LLVA_pigeon", + "LLVA_pigment", + "LLVA_pilferage", + "LLVA_pilgrim", + "LLVA_pilgrimage", + "LLVA_pillar", + "LLVA_pillow", + "LLVA_pilot", + "LLVA_pinch", + "LLVA_pineapple", + "LLVA_pioneer", + "LLVA_pioneering", + "LLVA_pious", + "LLVA_pipeline", + "LLVA_pirate", + "LLVA_pistol", + "LLVA_piston", + "LLVA_pitch", + "LLVA_pitcher", + "LLVA_plague", + "LLVA_plantation", + "LLVA_plaster", + "LLVA_plastic", + "LLVA_plastics", + "LLVA_plateau", + "LLVA_platinum", + "LLVA_player", + "LLVA_playground", + "LLVA_playmate", + "LLVA_playwright", + "LLVA_plead", + "LLVA_pleased", + "LLVA_pledge", + "LLVA_plenary", + "LLVA_plentiful", + "LLVA_plight", + "LLVA_plough", + "LLVA_pluck", + "LLVA_plumb", + "LLVA_plumber", + "LLVA_plume", + "LLVA_plump", + "LLVA_plunder", + "LLVA_plunge", + "LLVA_plural", + "LLVA_pneumatic", + "LLVA_pneumonia", + "LLVA_poetry", + "LLVA_pointed", + "LLVA_poison", + "LLVA_poisonous", + "LLVA_poker", + "LLVA_polar", + "LLVA_polarity", + "LLVA_policy", + "LLVA_polish", + "LLVA_politeness", + "LLVA_politician", + "LLVA_pollute", + "LLVA_pollution", + "LLVA_polymer", + "LLVA_ponder", + "LLVA_popcorn", + "LLVA_popular", + "LLVA_popularity", + "LLVA_popularize", + "LLVA_porcelain", + "LLVA_porch", + "LLVA_porridge", + "LLVA_portable", + "LLVA_porter", + "LLVA_portion", + "LLVA_portrait", + "LLVA_portray", + "LLVA_Portugal", + "LLVA_Portuguese", + "LLVA_positive", + "LLVA_positively", + "LLVA_possess", + "LLVA_possession", + "LLVA_possessive", + "LLVA_possibility", + "LLVA_possibly", + "LLVA_postage", + "LLVA_postal", + "LLVA_postcard", + "LLVA_posterity", + "LLVA_postman", + "LLVA_postpone", + "LLVA_postponement", + "LLVA_postulate", + "LLVA_potent", + "LLVA_potential", + "LLVA_potentiality", + "LLVA_poultry", + "LLVA_pound", + "LLVA_powder", + "LLVA_power", + "LLVA_powerful", + "LLVA_practicable", + "LLVA_practically", + "LLVA_prairie", + "LLVA_praise", + "LLVA_prayer", + "LLVA_preach", + "LLVA_preacher", + "LLVA_precaution", + "LLVA_precede", + "LLVA_precedence", + "LLVA_precedent", + "LLVA_preceding", + "LLVA_precious", + "LLVA_precise", + "LLVA_precisely", + "LLVA_precision", + "LLVA_predecessor", + "LLVA_predict", + "LLVA_prediction", + "LLVA_predominance", + "LLVA_predominant", + "LLVA_preface", + "LLVA_prefer", + "LLVA_preferable", + "LLVA_preferably", + "LLVA_preference", + "LLVA_preferential", + "LLVA_prefix", + "LLVA_pregnancy", + "LLVA_pregnant", + "LLVA_prejudice", + "LLVA_preliminary", + "LLVA_prelude", + "LLVA_premature", + "LLVA_premier", + "LLVA_premises", + "LLVA_premium", + "LLVA_preoccupy", + "LLVA_preparation", + "LLVA_prepared", + "LLVA_preposition", + "LLVA_prescribe", + "LLVA_prescribed", + "LLVA_prescription", + "LLVA_presence", + "LLVA_presentation", + "LLVA_presently", + "LLVA_preservation", + "LLVA_preserve", + "LLVA_preset", + "LLVA_preside", + "LLVA_presidential", + "LLVA_pressing", + "LLVA_pressure", + "LLVA_prestige", + "LLVA_presumably", + "LLVA_presume", + "LLVA_pretense", + "LLVA_pretentious", + "LLVA_prevail", + "LLVA_prevailing", + "LLVA_prevalence", + "LLVA_prevalent", + "LLVA_prevention", + "LLVA_previous", + "LLVA_previously", + "LLVA_pricing", + "LLVA_prick", + "LLVA_priest", + "LLVA_primarily", + "LLVA_primary", + "LLVA_prime", + "LLVA_primitive", + "LLVA_prince", + "LLVA_princess", + "LLVA_principal", + "LLVA_principally", + "LLVA_principle", + "LLVA_printer", + "LLVA_prior", + "LLVA_priority", + "LLVA_prism", + "LLVA_prisoner", + "LLVA_privacy", + "LLVA_private", + "LLVA_privilege", + "LLVA_privileged", + "LLVA_probability", + "LLVA_probable", + "LLVA_probe", + "LLVA_problematic", + "LLVA_procedure", + "LLVA_proceed", + "LLVA_proceeding", + "LLVA_proceeds", + "LLVA_process", + "LLVA_processing", + "LLVA_procession", + "LLVA_proclaim", + "LLVA_procure", + "LLVA_procurement", + "LLVA_producer", + "LLVA_product", + "LLVA_productive", + "LLVA_productivity", + "LLVA_profess", + "LLVA_profession", + "LLVA_professional", + "LLVA_proficiency", + "LLVA_proficient", + "LLVA_profile", + "LLVA_profitable", + "LLVA_proforma", + "LLVA_profound", + "LLVA_program", + "LLVA_programer", + "LLVA_programing", + "LLVA_progressive", + "LLVA_prohibit", + "LLVA_prohibition", + "LLVA_prohibitive", + "LLVA_project", + "LLVA_projection", + "LLVA_projector", + "LLVA_proletarian", + "LLVA_prolong", + "LLVA_prominence", + "LLVA_prominent", + "LLVA_promising", + "LLVA_promissory", + "LLVA_promote", + "LLVA_promotion", + "LLVA_prompt", + "LLVA_promptly", + "LLVA_prone", + "LLVA_pronoun", + "LLVA_pronounce", + "LLVA_proof", + "LLVA_propaganda", + "LLVA_propagate", + "LLVA_propagation", + "LLVA_propel", + "LLVA_propellent", + "LLVA_propeller", + "LLVA_properly", + "LLVA_property", + "LLVA_prophesy", + "LLVA_prophet", + "LLVA_proportion", + "LLVA_proportional", + "LLVA_proposal", + "LLVA_propose", + "LLVA_proposition", + "LLVA_proprietor", + "LLVA_proprietorship", + "LLVA_prose", + "LLVA_prosecute", + "LLVA_prosecution", + "LLVA_prosecutor", + "LLVA_prospect", + "LLVA_prosperity", + "LLVA_prosperous", + "LLVA_protection", + "LLVA_protectionism", + "LLVA_protective", + "LLVA_protein", + "LLVA_protest", + "LLVA_protestant", + "LLVA_protocol", + "LLVA_prototype", + "LLVA_protracted", + "LLVA_proverb", + "LLVA_provided", + "LLVA_provincial", + "LLVA_provision", + "LLVA_provisional", + "LLVA_provocation", + "LLVA_provoke", + "LLVA_prudence", + "LLVA_prudent", + "LLVA_psychological", + "LLVA_psychologist", + "LLVA_psychology", + "LLVA_publication", + "LLVA_publicity", + "LLVA_publicly", + "LLVA_publish", + "LLVA_publisher", + "LLVA_pudding", + "LLVA_pulley", + "LLVA_pulse", + "LLVA_pumpkin", + "LLVA_punch", + "LLVA_punctual", + "LLVA_punctuality", + "LLVA_punctuation", + "LLVA_punishment", + "LLVA_puppet", + "LLVA_puppy", + "LLVA_purchase", + "LLVA_purchaser", + "LLVA_purely", + "LLVA_purify", + "LLVA_purity", + "LLVA_purple", + "LLVA_purse", + "LLVA_pursuance", + "LLVA_pursuant", + "LLVA_pursue", + "LLVA_pursuit", + "LLVA_puzzle", + "LLVA_pyjamas", + "LLVA_pyramid", + "LLVA_qualification", + "LLVA_qualified", + "LLVA_qualify", + "LLVA_qualitative", + "LLVA_quantitative", + "LLVA_quart", + "LLVA_quarterly", + "LLVA_quartz", + "LLVA_queer", + "LLVA_quench", + "LLVA_query", + "LLVA_quest", + "LLVA_questionnaire", + "LLVA_queue", + "LLVA_quicken", + "LLVA_quickly", + "LLVA_quietly", + "LLVA_quietness", + "LLVA_quilt", + "LLVA_quiver", + "LLVA_quota", + "LLVA_quotation", + "LLVA_quote", + "LLVA_rabbit", + "LLVA_racial", + "LLVA_racket", + "LLVA_radar", + "LLVA_radial", + "LLVA_radiant", + "LLVA_radiate", + "LLVA_radiation", + "LLVA_radical", + "LLVA_radioactive", + "LLVA_radioactivity", + "LLVA_radish", + "LLVA_radium", + "LLVA_radius", + "LLVA_railway", + "LLVA_rainbow", + "LLVA_raincoat", + "LLVA_rainfall", + "LLVA_rainy", + "LLVA_rally", + "LLVA_ramble", + "LLVA_ranch", + "LLVA_random", + "LLVA_rapidly", + "LLVA_rapture", + "LLVA_rarely", + "LLVA_rascal", + "LLVA_ratification", + "LLVA_ratify", + "LLVA_ratio", + "LLVA_ration", + "LLVA_rational", + "LLVA_rattle", + "LLVA_ravage", + "LLVA_razor", + "LLVA_react", + "LLVA_reaction", + "LLVA_reactionary", + "LLVA_reactor", + "LLVA_reader", + "LLVA_readily", + "LLVA_reading", + "LLVA_realism", + "LLVA_realist", + "LLVA_realistic", + "LLVA_reality", + "LLVA_realization", + "LLVA_really", + "LLVA_realm", + "LLVA_reason", + "LLVA_reasonable", + "LLVA_reasonably", + "LLVA_reassure", + "LLVA_rebate", + "LLVA_rebel", + "LLVA_rebellion", + "LLVA_rebuke", + "LLVA_recall", + "LLVA_recede", + "LLVA_receipt", + "LLVA_receive", + "LLVA_receiver", + "LLVA_recent", + "LLVA_recently", + "LLVA_reception", + "LLVA_receptionist", + "LLVA_recession", + "LLVA_recipe", + "LLVA_recipient", + "LLVA_reciprocal", + "LLVA_recitation", + "LLVA_recite", + "LLVA_reckless", + "LLVA_reckon", + "LLVA_reclaim", + "LLVA_recognition", + "LLVA_recognize", + "LLVA_recollect", + "LLVA_recollection", + "LLVA_recommend", + "LLVA_recommendation", + "LLVA_recompense", + "LLVA_reconcile", + "LLVA_reconnaissance", + "LLVA_recorder", + "LLVA_recourse", + "LLVA_recover", + "LLVA_recovery", + "LLVA_recreation", + "LLVA_recruit", + "LLVA_recruitment", + "LLVA_rectangle", + "LLVA_rectification", + "LLVA_rectify", + "LLVA_recur", + "LLVA_recurrence", + "LLVA_redeem", + "LLVA_redound", + "LLVA_reduce", + "LLVA_reduction", + "LLVA_reexport", + "LLVA_refer", + "LLVA_referee", + "LLVA_reference", + "LLVA_referent", + "LLVA_refine", + "LLVA_refined", + "LLVA_refinement", + "LLVA_refinery", + "LLVA_reflect", + "LLVA_reflection", + "LLVA_reform", + "LLVA_refrain", + "LLVA_refresh", + "LLVA_refreshment", + "LLVA_refrigerator", + "LLVA_refuge", + "LLVA_refugee", + "LLVA_refund", + "LLVA_refusal", + "LLVA_refute", + "LLVA_regard", + "LLVA_regarding", + "LLVA_regardless", + "LLVA_regime", + "LLVA_regiment", + "LLVA_region", + "LLVA_regional", + "LLVA_regionalization", + "LLVA_regionalize", + "LLVA_register", + "LLVA_registered", + "LLVA_registration", + "LLVA_regretful", + "LLVA_regretfully", + "LLVA_regrettable", + "LLVA_regularity", + "LLVA_regularly", + "LLVA_regulate", + "LLVA_regulation", + "LLVA_rehearsal", + "LLVA_rehearse", + "LLVA_reign", + "LLVA_reimburse", + "LLVA_reimbursement", + "LLVA_reinforce", + "LLVA_reinforcement", + "LLVA_reiterate", + "LLVA_reject", + "LLVA_rejection", + "LLVA_rejoice", + "LLVA_relate", + "LLVA_related", + "LLVA_relationship", + "LLVA_relative", + "LLVA_relatively", + "LLVA_relativity", + "LLVA_relaxation", + "LLVA_relay", + "LLVA_release", + "LLVA_relevant", + "LLVA_reliability", + "LLVA_reliable", + "LLVA_reliance", + "LLVA_relief", + "LLVA_relieve", + "LLVA_religious", + "LLVA_relinquish", + "LLVA_relish", + "LLVA_reluctance", + "LLVA_reluctant", + "LLVA_remainder", + "LLVA_remains", + "LLVA_remark", + "LLVA_remarkable", + "LLVA_remedy", + "LLVA_remembrance", + "LLVA_reminiscence", + "LLVA_reminiscent", + "LLVA_remit", + "LLVA_remittance", + "LLVA_remnant", + "LLVA_remote", + "LLVA_remoteness", + "LLVA_removal", + "LLVA_remuneration", + "LLVA_renaissance", + "LLVA_render", + "LLVA_renew", + "LLVA_renewable", + "LLVA_renewal", + "LLVA_rental", + "LLVA_repairmen", + "LLVA_repay", + "LLVA_repeal", + "LLVA_repeatedly", + "LLVA_repel", + "LLVA_repent", + "LLVA_repetition", + "LLVA_repetitive", + "LLVA_replacement", + "LLVA_replenish", + "LLVA_reportage", + "LLVA_reporter", + "LLVA_represent", + "LLVA_representation", + "LLVA_representative", + "LLVA_reproach", + "LLVA_reproduce", + "LLVA_reproduction", + "LLVA_reptile", + "LLVA_republican", + "LLVA_repudiate", + "LLVA_reputable", + "LLVA_reputation", + "LLVA_repute", + "LLVA_request", + "LLVA_require", + "LLVA_requirement", + "LLVA_requisite", + "LLVA_rescind", + "LLVA_rescue", + "LLVA_researcher", + "LLVA_resemblance", + "LLVA_resemble", + "LLVA_resent", + "LLVA_resentful", + "LLVA_resentment", + "LLVA_reservation", + "LLVA_reserve", + "LLVA_reservoir", + "LLVA_reside", + "LLVA_residence", + "LLVA_resident", + "LLVA_residual", + "LLVA_resign", + "LLVA_resignation", + "LLVA_resist", + "LLVA_resistance", + "LLVA_resistant", + "LLVA_resolute", + "LLVA_resolution", + "LLVA_resolutely", + "LLVA_resolve", + "LLVA_resort", + "LLVA_resource", + "LLVA_respectable", + "LLVA_respectful", + "LLVA_respectfully", + "LLVA_respective", + "LLVA_respectively", + "LLVA_respond", + "LLVA_response", + "LLVA_responsibility", + "LLVA_restless", + "LLVA_restock", + "LLVA_restore", + "LLVA_restrain", + "LLVA_restraint", + "LLVA_restrict", + "LLVA_restriction", + "LLVA_restrictive", + "LLVA_resultant", + "LLVA_resume", + "LLVA_retail", + "LLVA_retailer", + "LLVA_retain", + "LLVA_retell", + "LLVA_retire", + "LLVA_retirement", + "LLVA_retort", + "LLVA_retreat", + "LLVA_retroactive", + "LLVA_reveal", + "LLVA_revenge", + "LLVA_revenue", + "LLVA_reverence", + "LLVA_reverse", + "LLVA_revert", + "LLVA_revise", + "LLVA_revision", + "LLVA_revival", + "LLVA_revive", + "LLVA_revoke", + "LLVA_revolt", + "LLVA_revolutionary", + "LLVA_revolve", + "LLVA_rewarding", + "LLVA_rheumatism", + "LLVA_rhyme", + "LLVA_rhythm", + "LLVA_ribbon", + "LLVA_richness", + "LLVA_riddle", + "LLVA_ridge", + "LLVA_ridicule", + "LLVA_ridiculous", + "LLVA_rifle", + "LLVA_righteous", + "LLVA_rigid", + "LLVA_rigidity", + "LLVA_rigor", + "LLVA_rigorous", + "LLVA_rinse", + "LLVA_riotous", + "LLVA_ripen", + "LLVA_ripple", + "LLVA_risky", + "LLVA_rival", + "LLVA_rivalry", + "LLVA_river", + "LLVA_roast", + "LLVA_robber", + "LLVA_robbery", + "LLVA_robot", + "LLVA_robust", + "LLVA_rocket", + "LLVA_roller", + "LLVA_roman", + "LLVA_romance", + "LLVA_romantic", + "LLVA_romanticism", + "LLVA_rooster", + "LLVA_rotary", + "LLVA_rotate", + "LLVA_rotation", + "LLVA_rotten", + "LLVA_roughly", + "LLVA_roundabout", + "LLVA_rouse", + "LLVA_route", + "LLVA_routine", + "LLVA_royal", + "LLVA_royalty", + "LLVA_ruinous", + "LLVA_ruler", + "LLVA_ruling", + "LLVA_rumor", + "LLVA_runner", + "LLVA_running", + "LLVA_rural", + "LLVA_Russia", + "LLVA_Russian", + "LLVA_rusty", + "LLVA_ruthless", + "LLVA_sacred", + "LLVA_sacrifice", + "LLVA_saddle", + "LLVA_sadly", + "LLVA_sadness", + "LLVA_safely", + "LLVA_safety", + "LLVA_sailing", + "LLVA_sailor", + "LLVA_saint", + "LLVA_salad", + "LLVA_salability", + "LLVA_salable", + "LLVA_sales", + "LLVA_salesman", + "LLVA_salmon", + "LLVA_salty", + "LLVA_salute", + "LLVA_salution", + "LLVA_sample", + "LLVA_sampling", + "LLVA_sandwich", + "LLVA_sandy", + "LLVA_sanitary", + "LLVA_SantaClaus", + "LLVA_sarcasm", + "LLVA_sarcastic", + "LLVA_sardine", + "LLVA_satellite", + "LLVA_satire", + "LLVA_satisfaction", + "LLVA_satisfactorily", + "LLVA_satisfactory", + "LLVA_saturation", + "LLVA_Saturn", + "LLVA_sauce", + "LLVA_saucer", + "LLVA_sausage", + "LLVA_savage", + "LLVA_savings", + "LLVA_scale", + "LLVA_scaly", + "LLVA_scandal", + "LLVA_scarce", + "LLVA_scarcely", + "LLVA_scarcity", + "LLVA_scarf", + "LLVA_scarlet", + "LLVA_scatter", + "LLVA_scenery", + "LLVA_scenic", + "LLVA_scent", + "LLVA_schedule", + "LLVA_scheme", + "LLVA_scholar", + "LLVA_scholarship", + "LLVA_schooling", + "LLVA_scissors", + "LLVA_scoff", + "LLVA_scold", + "LLVA_scope", + "LLVA_scorch", + "LLVA_scorching", + "LLVA_scorn", + "LLVA_scornful", + "LLVA_scotch", + "LLVA_Scotsman", + "LLVA_Scottish", + "LLVA_Scotland", + "LLVA_scout", + "LLVA_scramble", + "LLVA_scrap", + "LLVA_scrape", + "LLVA_scratch", + "LLVA_screech", + "LLVA_screen", + "LLVA_screw", + "LLVA_screwdriver", + "LLVA_script", + "LLVA_scrub", + "LLVA_scrutiny", + "LLVA_sculptor", + "LLVA_sculpture", + "LLVA_seaman", + "LLVA_seaport", + "LLVA_seashore", + "LLVA_seaside", + "LLVA_seasonal", + "LLVA_secondary", + "LLVA_secondhand", + "LLVA_secondly", + "LLVA_secrecy", + "LLVA_secretariat", + "LLVA_secretary", + "LLVA_section", + "LLVA_sector", + "LLVA_secure", + "LLVA_security", + "LLVA_seemingly", + "LLVA_segment", + "LLVA_seizure", + "LLVA_select", + "LLVA_selection", + "LLVA_selfish", + "LLVA_seller", + "LLVA_seminar", + "LLVA_semiconductor", + "LLVA_senate", + "LLVA_senator", + "LLVA_sender", + "LLVA_senior", + "LLVA_sensation", + "LLVA_sensational", + "LLVA_senseless", + "LLVA_sensible", + "LLVA_sensitive", + "LLVA_sensitivity", + "LLVA_sentiment", + "LLVA_sentimental", + "LLVA_separately", + "LLVA_separation", + "LLVA_sequence", + "LLVA_serene", + "LLVA_serenity", + "LLVA_series", + "LLVA_seriously", + "LLVA_sermon", + "LLVA_serpent", + "LLVA_servant", + "LLVA_serviceable", + "LLVA_session", + "LLVA_setting", + "LLVA_settlement", + "LLVA_seventh", + "LLVA_severe", + "LLVA_severely", + "LLVA_sexual", + "LLVA_sexuality", + "LLVA_shabby", + "LLVA_shade", + "LLVA_shadowy", + "LLVA_shady", + "LLVA_shaft", + "LLVA_shallow", + "LLVA_shameful", + "LLVA_shampoo", + "LLVA_shapeless", + "LLVA_shark", + "LLVA_sharpen", + "LLVA_sharpener", + "LLVA_sharply", + "LLVA_shatter", + "LLVA_shave", + "LLVA_shear", + "LLVA_sheep", + "LLVA_sheepish", + "LLVA_sheer", + "LLVA_shell", + "LLVA_shelter", + "LLVA_shepherd", + "LLVA_sheriff", + "LLVA_shield", + "LLVA_shift", + "LLVA_shilling", + "LLVA_shiny", + "LLVA_shipbuilding", + "LLVA_shipment", + "LLVA_shipowner", + "LLVA_shipping", + "LLVA_shipwreck", + "LLVA_shipyard", + "LLVA_shiver", + "LLVA_shoemaker", + "LLVA_shopkeeper", + "LLVA_shopping", + "LLVA_shortage", + "LLVA_shortcoming", + "LLVA_shortcut", + "LLVA_shorten", + "LLVA_shorthand", + "LLVA_shortly", + "LLVA_shorts", + "LLVA_shove", + "LLVA_shovel", + "LLVA_showroom", + "LLVA_shrewd", + "LLVA_shriek", + "LLVA_shrill", + "LLVA_shrine", + "LLVA_shrimp", + "LLVA_shrink", + "LLVA_shroud", + "LLVA_shrub", + "LLVA_shrug", + "LLVA_shuffle", + "LLVA_shutter", + "LLVA_shuttle", + "LLVA_sickness", + "LLVA_sickle", + "LLVA_sidewalk", + "LLVA_sideways", + "LLVA_siege", + "LLVA_sieve", + "LLVA_sightseeing", + "LLVA_signature", + "LLVA_significance", + "LLVA_significant", + "LLVA_signify", + "LLVA_signpost", + "LLVA_silicon", + "LLVA_silky", + "LLVA_silly", + "LLVA_similar", + "LLVA_similarity", + "LLVA_simplicity", + "LLVA_simplify", + "LLVA_simply", + "LLVA_simulate", + "LLVA_simultaneous", + "LLVA_simultaneously", + "LLVA_sincere", + "LLVA_sincerely", + "LLVA_sincerity", + "LLVA_sinful", + "LLVA_singer", + "LLVA_singular", + "LLVA_siren", + "LLVA_situate", + "LLVA_sixth", + "LLVA_sizable", + "LLVA_skate", + "LLVA_skating", + "LLVA_skeleton", + "LLVA_sketch", + "LLVA_skiing", + "LLVA_skillful", + "LLVA_skirmish", + "LLVA_skull", + "LLVA_skyrocket", + "LLVA_skyscraper", + "LLVA_slack", + "LLVA_slander", + "LLVA_slang", + "LLVA_slaughter", + "LLVA_slavery", + "LLVA_sleet", + "LLVA_sleeve", + "LLVA_slender", + "LLVA_slice", + "LLVA_slide", + "LLVA_slightly", + "LLVA_slipper", + "LLVA_slippery", + "LLVA_slogan", + "LLVA_slope", + "LLVA_slowdown", + "LLVA_slowly", + "LLVA_slumber", + "LLVA_slump", + "LLVA_smack", + "LLVA_smart", + "LLVA_smash", + "LLVA_smoker", + "LLVA_smoking", + "LLVA_smoothly", + "LLVA_smuggle", + "LLVA_smuggler", + "LLVA_smuggling", + "LLVA_snack", + "LLVA_snail", + "LLVA_snake", + "LLVA_snatch", + "LLVA_sneak", + "LLVA_sneakers", + "LLVA_sneer", + "LLVA_sneeze", + "LLVA_sniff", + "LLVA_snobbery", + "LLVA_snobbish", + "LLVA_snore", + "LLVA_snowman", + "LLVA_snowstorm", + "LLVA_snowy", + "LLVA_sober", + "LLVA_soccer", + "LLVA_sociable", + "LLVA_socialism", + "LLVA_socialist", + "LLVA_sociologist", + "LLVA_sociology", + "LLVA_sodium", + "LLVA_soften", + "LLVA_softly", + "LLVA_softness", + "LLVA_software", + "LLVA_solar", + "LLVA_solely", + "LLVA_solemn", + "LLVA_solicitor", + "LLVA_solidarity", + "LLVA_solitary", + "LLVA_solitude", + "LLVA_solution", + "LLVA_solvency", + "LLVA_solvent", + "LLVA_somewhat", + "LLVA_sonnet", + "LLVA_soothe", + "LLVA_sophisticated", + "LLVA_sophistication", + "LLVA_sorrow", + "LLVA_sorrowful", + "LLVA_source", + "LLVA_southeast", + "LLVA_southward", + "LLVA_southwest", + "LLVA_souvenir", + "LLVA_sovereign", + "LLVA_sovereignty", + "LLVA_spacecraft", + "LLVA_spaceship", + "LLVA_spaceshuttle", + "LLVA_spacious", + "LLVA_spade", + "LLVA_Spain", + "LLVA_Spanish", + "LLVA_spark", + "LLVA_sparkle", + "LLVA_sparrow", + "LLVA_spatial", + "LLVA_speaker", + "LLVA_spear", + "LLVA_specialist", + "LLVA_specialize", + "LLVA_specialized", + "LLVA_specially", + "LLVA_specialty", + "LLVA_species", + "LLVA_specific", + "LLVA_specification", + "LLVA_specify", + "LLVA_specimen", + "LLVA_spectacle", + "LLVA_spectacular", + "LLVA_spectator", + "LLVA_spectrum", + "LLVA_speculate", + "LLVA_speculation", + "LLVA_speculator", + "LLVA_speedy", + "LLVA_spelling", + "LLVA_sphere", + "LLVA_spice", + "LLVA_spicy", + "LLVA_spider", + "LLVA_spill", + "LLVA_spiral", + "LLVA_spiritual", + "LLVA_spite", + "LLVA_splash", + "LLVA_splendid", + "LLVA_split", + "LLVA_spoil", + "LLVA_spokesman", + "LLVA_sponge", + "LLVA_sponsor", + "LLVA_sponsorship", + "LLVA_spontaneous", + "LLVA_spoon", + "LLVA_spoonful", + "LLVA_sportsman", + "LLVA_sportsmanship", + "LLVA_sprain", + "LLVA_spray", + "LLVA_sprinkle", + "LLVA_sprout", + "LLVA_squash", + "LLVA_squat", + "LLVA_squeeze", + "LLVA_squirrel", + "LLVA_stability", + "LLVA_stable", + "LLVA_stack", + "LLVA_stadium", + "LLVA_staff", + "LLVA_stagger", + "LLVA_stagnation", + "LLVA_stainless", + "LLVA_staircase", + "LLVA_stake", + "LLVA_stale", + "LLVA_stalk", + "LLVA_stall", + "LLVA_stammer", + "LLVA_standardize", + "LLVA_standing", + "LLVA_standpoint", + "LLVA_standstill", + "LLVA_staple", + "LLVA_stapler", + "LLVA_starting", + "LLVA_startle", + "LLVA_starvation", + "LLVA_statement", + "LLVA_statesman", + "LLVA_static", + "LLVA_stationary", + "LLVA_stationery", + "LLVA_statistical", + "LLVA_statistics", + "LLVA_statue", + "LLVA_status", + "LLVA_statute", + "LLVA_steadily", + "LLVA_steady", + "LLVA_steak", + "LLVA_steamer", + "LLVA_steep", + "LLVA_steer", + "LLVA_stencil", + "LLVA_stereo", + "LLVA_sterling", + "LLVA_stern", + "LLVA_stevedore", + "LLVA_steward", + "LLVA_stewardess", + "LLVA_sticky", + "LLVA_stiff", + "LLVA_stillness", + "LLVA_stimulate", + "LLVA_stimulation", + "LLVA_sting", + "LLVA_stink", + "LLVA_stipulate", + "LLVA_stipulation", + "LLVA_stirring", + "LLVA_stitch", + "LLVA_stock", + "LLVA_stocking", + "LLVA_stony", + "LLVA_stool", + "LLVA_stoop", + "LLVA_storage", + "LLVA_stormy", + "LLVA_stout", + "LLVA_stove", + "LLVA_stowage", + "LLVA_straightforward", + "LLVA_straighten", + "LLVA_strain", + "LLVA_strait", + "LLVA_strand", + "LLVA_strap", + "LLVA_strategic", + "LLVA_strategy", + "LLVA_straw", + "LLVA_strawberry", + "LLVA_stray", + "LLVA_streak", + "LLVA_streamline", + "LLVA_streetcar", + "LLVA_strengthen", + "LLVA_stress", + "LLVA_stretch", + "LLVA_strict", + "LLVA_strictly", + "LLVA_stride", + "LLVA_strife", + "LLVA_striking", + "LLVA_strip", + "LLVA_stripe", + "LLVA_strive", + "LLVA_stroke", + "LLVA_stroll", + "LLVA_stroller", + "LLVA_strongly", + "LLVA_stronghold", + "LLVA_structural", + "LLVA_structure", + "LLVA_stubborn", + "LLVA_studio", + "LLVA_stuff", + "LLVA_stuffy", + "LLVA_stumble", + "LLVA_stump", + "LLVA_stupid", + "LLVA_stupidity", + "LLVA_sturdy", + "LLVA_style", + "LLVA_stylist", + "LLVA_subdivide", + "LLVA_subdue", + "LLVA_subjective", + "LLVA_subjunctive", + "LLVA_submarine", + "LLVA_submerge", + "LLVA_submit", + "LLVA_subordinate", + "LLVA_subordination", + "LLVA_subscribe", + "LLVA_subscription", + "LLVA_subsequence", + "LLVA_subsequent", + "LLVA_subsequently", + "LLVA_subsidiary", + "LLVA_substance", + "LLVA_substantial", + "LLVA_substantiate", + "LLVA_substitute", + "LLVA_substitution", + "LLVA_subtle", + "LLVA_subtract", + "LLVA_subtraction", + "LLVA_suburb", + "LLVA_suburban", + "LLVA_subway", + "LLVA_successful", + "LLVA_successfully", + "LLVA_succession", + "LLVA_successive", + "LLVA_successor", + "LLVA_suffering", + "LLVA_suffice", + "LLVA_sufficiently", + "LLVA_suffix", + "LLVA_suggestion", + "LLVA_suicide", + "LLVA_suitable", + "LLVA_suitcase", + "LLVA_suite", + "LLVA_sullen", + "LLVA_sultry", + "LLVA_summarize", + "LLVA_summary", + "LLVA_summit", + "LLVA_summon", + "LLVA_sunburn", + "LLVA_sunflower", + "LLVA_sunlight", + "LLVA_sunny", + "LLVA_sunrise", + "LLVA_sunset", + "LLVA_sunshine", + "LLVA_super", + "LLVA_superb", + "LLVA_superficial", + "LLVA_superintendent", + "LLVA_superior", + "LLVA_superiority", + "LLVA_supermarket", + "LLVA_supersede", + "LLVA_supersonic", + "LLVA_superstition", + "LLVA_superstitious", + "LLVA_supervise", + "LLVA_supervision", + "LLVA_supervisor", + "LLVA_supplement", + "LLVA_supplementary", + "LLVA_supplier", + "LLVA_supporter", + "LLVA_supposing", + "LLVA_suppress", + "LLVA_suppression", + "LLVA_supreme", + "LLVA_surcharge", + "LLVA_surely", + "LLVA_surge", + "LLVA_surgeon", + "LLVA_surgery", + "LLVA_surmise", + "LLVA_surname", + "LLVA_surpass", + "LLVA_surplus", + "LLVA_surprising", + "LLVA_surrender", + "LLVA_surroundings", + "LLVA_survey", + "LLVA_surveyor", + "LLVA_survival", + "LLVA_survive", + "LLVA_survivor", + "LLVA_suspect", + "LLVA_suspend", + "LLVA_suspense", + "LLVA_suspicion", + "LLVA_suspicious", + "LLVA_sustain", + "LLVA_swallow", + "LLVA_swamp", + "LLVA_swarm", + "LLVA_swear", + "LLVA_sweat", + "LLVA_sweater", + "LLVA_Swede", + "LLVA_Sweden", + "LLVA_Swedish", + "LLVA_sweeten", + "LLVA_sweetheart", + "LLVA_sweetness", + "LLVA_swell", + "LLVA_swift", + "LLVA_swing", + "LLVA_Swiss", + "LLVA_switch", + "LLVA_Switzerland", + "LLVA_sword", + "LLVA_syllable", + "LLVA_symbol", + "LLVA_symbolize", + "LLVA_symmetric", + "LLVA_symmetry", + "LLVA_sympathetic", + "LLVA_sympathize", + "LLVA_sympathy", + "LLVA_symphony", + "LLVA_symposium", + "LLVA_symptom", + "LLVA_synonym", + "LLVA_synthesis", + "LLVA_synthetic", + "LLVA_system", + "LLVA_systematic", + "LLVA_systematically", + "LLVA_tablet", + "LLVA_tabulate", + "LLVA_tackle", + "LLVA_tactful", + "LLVA_tactics", + "LLVA_tailor", + "LLVA_talent", + "LLVA_talkative", + "LLVA_tally", + "LLVA_tangle", + "LLVA_tanker", + "LLVA_target", + "LLVA_tariff", + "LLVA_tasteful", + "LLVA_taxation", + "LLVA_teaching", + "LLVA_teacup", + "LLVA_teapot", + "LLVA_tease", + "LLVA_technical", + "LLVA_technician", + "LLVA_technique", + "LLVA_technological", + "LLVA_technology", + "LLVA_tedious", + "LLVA_teenager", + "LLVA_teens", + "LLVA_telefax", + "LLVA_telegram", + "LLVA_telegraph", + "LLVA_telephone", + "LLVA_telescope", + "LLVA_telex", + "LLVA_teller", + "LLVA_temper", + "LLVA_temple", + "LLVA_temporary", + "LLVA_tempt", + "LLVA_temptation", + "LLVA_tenant", + "LLVA_tendency", + "LLVA_tender", + "LLVA_tenor", + "LLVA_tense", + "LLVA_tension", + "LLVA_tentative", + "LLVA_tenth", + "LLVA_terminable", + "LLVA_terminal", + "LLVA_terminate", + "LLVA_termination", + "LLVA_terminology", + "LLVA_terrace", + "LLVA_terribly", + "LLVA_terrific", + "LLVA_terrify", + "LLVA_territory", + "LLVA_terror", + "LLVA_terrorism", + "LLVA_terrorist", + "LLVA_testify", + "LLVA_testimony", + "LLVA_textbook", + "LLVA_textile", + "LLVA_textual", + "LLVA_thankful", + "LLVA_thanks", + "LLVA_ThanksgivingDay", + "LLVA_theatrical", + "LLVA_theft", + "LLVA_theme", + "LLVA_theoretical", + "LLVA_thereafter", + "LLVA_thereby", + "LLVA_therefore", + "LLVA_therefrom", + "LLVA_therein", + "LLVA_thereof", + "LLVA_thereon", + "LLVA_therewith", + "LLVA_thermometer", + "LLVA_thesis", + "LLVA_thicken", + "LLVA_thickness", + "LLVA_thief", + "LLVA_thigh", + "LLVA_thinking", + "LLVA_thinker", + "LLVA_thirst", + "LLVA_thirsty", + "LLVA_thorn", + "LLVA_thoroughly", + "LLVA_thoughtful", + "LLVA_thoughtless", + "LLVA_thrash", + "LLVA_thread", + "LLVA_threat", + "LLVA_threaten", + "LLVA_threshold", + "LLVA_thrift", + "LLVA_thrifty", + "LLVA_thrill", + "LLVA_thriller", + "LLVA_thrive", + "LLVA_throat", + "LLVA_throne", + "LLVA_throng", + "LLVA_thrust", + "LLVA_thumb", + "LLVA_thumbtack", + "LLVA_thunder", + "LLVA_thunderstorm", + "LLVA_tickle", + "LLVA_tiger", + "LLVA_tight", + "LLVA_tighten", + "LLVA_tightly", + "LLVA_tigress", + "LLVA_timber", + "LLVA_timely", + "LLVA_timetable", + "LLVA_timid", + "LLVA_tiptoe", + "LLVA_tiresome", + "LLVA_tissue", + "LLVA_title", + "LLVA_toast", + "LLVA_tobacco", + "LLVA_toilet", + "LLVA_token", + "LLVA_tolerable", + "LLVA_tolerance", + "LLVA_tolerant", + "LLVA_tolerate", + "LLVA_tombstone", + "LLVA_tonnage", + "LLVA_tonne", + "LLVA_toothache", + "LLVA_toothbrush", + "LLVA_toothpaste", + "LLVA_topic", + "LLVA_torch", + "LLVA_torment", + "LLVA_torpedo", + "LLVA_torrent", + "LLVA_tortoise", + "LLVA_torture", + "LLVA_totally", + "LLVA_tough", + "LLVA_tourism", + "LLVA_towel", + "LLVA_trace", + "LLVA_track", + "LLVA_tractor", + "LLVA_trader", + "LLVA_trademark", + "LLVA_tradesman", + "LLVA_tradition", + "LLVA_traditional", + "LLVA_traffic", + "LLVA_tragedy", + "LLVA_tragic", + "LLVA_trail", + "LLVA_trainee", + "LLVA_trainer", + "LLVA_training", + "LLVA_traitor", + "LLVA_tramp", + "LLVA_trample", + "LLVA_tranquil", + "LLVA_transact", + "LLVA_transaction", + "LLVA_transfer", + "LLVA_transferable", + "LLVA_transform", + "LLVA_transformation", + "LLVA_transformer", + "LLVA_transistor", + "LLVA_transit", + "LLVA_transition", + "LLVA_translation", + "LLVA_translator", + "LLVA_transmission", + "LLVA_transmit", + "LLVA_transparent", + "LLVA_transplant", + "LLVA_transport", + "LLVA_transportation", + "LLVA_transship", + "LLVA_transshipment", + "LLVA_transverse", + "LLVA_traverse", + "LLVA_traveler", + "LLVA_tread", + "LLVA_treason", + "LLVA_treasurer", + "LLVA_treatment", + "LLVA_treaty", + "LLVA_tremendous", + "LLVA_trench", + "LLVA_trend", + "LLVA_trial", + "LLVA_triangle", + "LLVA_triangular", + "LLVA_tribe", + "LLVA_tribute", + "LLVA_trickle", + "LLVA_tricky", + "LLVA_trifle", + "LLVA_trigger", + "LLVA_triple", + "LLVA_triplicate", + "LLVA_triumph", + "LLVA_triumphant", + "LLVA_trivial", + "LLVA_trolley", + "LLVA_troop", + "LLVA_tropic", + "LLVA_tropical", + "LLVA_troublesome", + "LLVA_truly", + "LLVA_trumpet", + "LLVA_trunk", + "LLVA_truth", + "LLVA_truthful", + "LLVA_tuberculosis", + "LLVA_tuition", + "LLVA_tulip", + "LLVA_tumble", + "LLVA_tumult", + "LLVA_tunnel", + "LLVA_turbine", + "LLVA_turbulent", + "LLVA_turkey", + "LLVA_turning", + "LLVA_turnip", + "LLVA_turnover", + "LLVA_turtle", + "LLVA_tutor", + "LLVA_twilight", + "LLVA_twinkle", + "LLVA_twist", + "LLVA_typewriter", + "LLVA_typhoon", + "LLVA_typical", + "LLVA_typist", + "LLVA_tyranny", + "LLVA_tyrant", + "LLVA_ulcer", + "LLVA_ultimate", + "LLVA_ultimately", + "LLVA_ultimo", + "LLVA_ultrasonic", + "LLVA_ultraviolet", + "LLVA_umbrella", + "LLVA_unable", + "LLVA_unacceptable", + "LLVA_unaccommodating", + "LLVA_unaffordable", + "LLVA_unanimous", + "LLVA_unavoidable", + "LLVA_unbearable", + "LLVA_uncertain", + "LLVA_uncertainty", + "LLVA_uncomfortable", + "LLVA_uncommon", + "LLVA_unconditionally", + "LLVA_unconscious", + "LLVA_uncover", + "LLVA_underestimate", + "LLVA_undergo", + "LLVA_undergraduate", + "LLVA_underground", + "LLVA_underline", + "LLVA_underlying", + "LLVA_undermentioned", + "LLVA_undermine", + "LLVA_underneath", + "LLVA_undersigned", + "LLVA_understanding", + "LLVA_undertake", + "LLVA_undertaking", + "LLVA_underwear", + "LLVA_underwriter", + "LLVA_undoubtedly", + "LLVA_undue", + "LLVA_unduly", + "LLVA_uneasy", + "LLVA_unemloyment", + "LLVA_unexpected", + "LLVA_unfair", + "LLVA_unfit", + "LLVA_unfold", + "LLVA_unfortunate", + "LLVA_unfortunately", + "LLVA_unhappy", + "LLVA_uniformly", + "LLVA_uninterested", + "LLVA_unique", + "LLVA_unitedkingdom", + "LLVA_unitednations", + "LLVA_unitedstates", + "LLVA_unity", + "LLVA_universal", + "LLVA_universally", + "LLVA_universe", + "LLVA_unjust", + "LLVA_unkind", + "LLVA_unknown", + "LLVA_unlawful", + "LLVA_unlike", + "LLVA_unlikely", + "LLVA_unlimited", + "LLVA_unload", + "LLVA_unlock", + "LLVA_unlucky", + "LLVA_unnecessary", + "LLVA_unobtainable", + "LLVA_unpaid", + "LLVA_unpleasant", + "LLVA_unprecedented", + "LLVA_unreasonable", + "LLVA_unsalable", + "LLVA_unsatisfactory", + "LLVA_unstable", + "LLVA_unsuitable", + "LLVA_untie", + "LLVA_unusable", + "LLVA_unusual", + "LLVA_unwarranted", + "LLVA_unwelcome", + "LLVA_unwilling", + "LLVA_unworkable", + "LLVA_upcreep", + "LLVA_uphold", + "LLVA_upper", + "LLVA_upright", + "LLVA_uproar", + "LLVA_upset", + "LLVA_upside", + "LLVA_upstairs", + "LLVA_upward", + "LLVA_uranium", + "LLVA_urban", + "LLVA_urgent", + "LLVA_urgently", + "LLVA_usage", + "LLVA_useful", + "LLVA_usefulness", + "LLVA_useless", + "LLVA_utensil", + "LLVA_utility", + "LLVA_utilization", + "LLVA_utilize", + "LLVA_utmost", + "LLVA_utter", + "LLVA_utterance", + "LLVA_vacancy", + "LLVA_vacant", + "LLVA_vacation", + "LLVA_vaccinate", + "LLVA_vaccination", + "LLVA_vacuum", + "LLVA_vague", + "LLVA_vainly", + "LLVA_valid", + "LLVA_validity", + "LLVA_valued", + "LLVA_valve", + "LLVA_vanish", + "LLVA_vanity", + "LLVA_vapor", + "LLVA_variable", + "LLVA_variance", + "LLVA_variant", + "LLVA_variation", + "LLVA_varied", + "LLVA_variety", + "LLVA_varnish", + "LLVA_vault", + "LLVA_vehicle", + "LLVA_velocity", + "LLVA_velvet", + "LLVA_vender", + "LLVA_vengeance", + "LLVA_ventilate", + "LLVA_ventilation", + "LLVA_venture", + "LLVA_Venus", + "LLVA_verbal", + "LLVA_verge", + "LLVA_verification", + "LLVA_verify", + "LLVA_versatile", + "LLVA_verse", + "LLVA_version", + "LLVA_versus", + "LLVA_vertical", + "LLVA_vessel", + "LLVA_veteran", + "LLVA_vibrate", + "LLVA_vibration", + "LLVA_vicinity", + "LLVA_vicious", + "LLVA_victim", + "LLVA_victorious", + "LLVA_video", + "LLVA_viewer", + "LLVA_viewpoint", + "LLVA_vigor", + "LLVA_vigorous", + "LLVA_villa", + "LLVA_villain", + "LLVA_vinegar", + "LLVA_violate", + "LLVA_violation", + "LLVA_violence", + "LLVA_violent", + "LLVA_violet", + "LLVA_violin", + "LLVA_virgin", + "LLVA_virtual", + "LLVA_virtually", + "LLVA_virtue", + "LLVA_virus", + "LLVA_viscous", + "LLVA_visible", + "LLVA_vision", + "LLVA_visual", + "LLVA_vital", + "LLVA_vitamin", + "LLVA_vivid", + "LLVA_vividly", + "LLVA_vividness", + "LLVA_vocabulary", + "LLVA_vocation", + "LLVA_vogue", + "LLVA_voiceless", + "LLVA_volcano", + "LLVA_volley", + "LLVA_volleyball", + "LLVA_voltage", + "LLVA_volume", + "LLVA_voluntary", + "LLVA_volunteer", + "LLVA_voter", + "LLVA_voting", + "LLVA_vouch", + "LLVA_voucher", + "LLVA_vowel", + "LLVA_voyage", + "LLVA_vulgar", + "LLVA_vulnerability", + "LLVA_vulnerable", + "LLVA_wagon", + "LLVA_waist", + "LLVA_waiter", + "LLVA_waitress", + "LLVA_waive", + "LLVA_waken", + "LLVA_walker", + "LLVA_wallet", + "LLVA_walnut", + "LLVA_wardrobe", + "LLVA_warehouse", + "LLVA_warehousing", + "LLVA_warfare", + "LLVA_warmly", + "LLVA_warmth", + "LLVA_warning", + "LLVA_warrant", + "LLVA_warranted", + "LLVA_warranty", + "LLVA_warrior", + "LLVA_warship", + "LLVA_wasteful", + "LLVA_watchful", + "LLVA_waterfall", + "LLVA_waterfront", + "LLVA_waterproof", + "LLVA_watertight", + "LLVA_watery", + "LLVA_wavelength", + "LLVA_waver", + "LLVA_waving", + "LLVA_weakness", + "LLVA_wealthy", + "LLVA_weapon", + "LLVA_weary", + "LLVA_weave", + "LLVA_weaver", + "LLVA_wedding", + "LLVA_wedge", + "LLVA_weekday", + "LLVA_weekend", + "LLVA_weekly", + "LLVA_weigh", + "LLVA_welfare", + "LLVA_westerner", + "LLVA_westward", + "LLVA_whale", + "LLVA_whaling", + "LLVA_wharf", + "LLVA_whereabouts", + "LLVA_whereas", + "LLVA_whereby", + "LLVA_wherein", + "LLVA_wherever", + "LLVA_whichever", + "LLVA_whilst", + "LLVA_whirl", + "LLVA_whisker", + "LLVA_whisky", + "LLVA_whistle", + "LLVA_whitewash", + "LLVA_whoever", + "LLVA_wholesale", + "LLVA_wholesaler", + "LLVA_wholesome", + "LLVA_wholly", + "LLVA_wicked", + "LLVA_widely", + "LLVA_widen", + "LLVA_widespread", + "LLVA_widow", + "LLVA_widower", + "LLVA_width", + "LLVA_wield", + "LLVA_wilderness", + "LLVA_willingly", + "LLVA_willingness", + "LLVA_willow", + "LLVA_winding", + "LLVA_windmill", + "LLVA_windowsill", + "LLVA_windy", + "LLVA_winery", + "LLVA_winner", + "LLVA_wireless", + "LLVA_wisdom", + "LLVA_withdraw", + "LLVA_withdrawal", + "LLVA_wither", + "LLVA_withhold", + "LLVA_withstand", + "LLVA_witness", + "LLVA_witty", + "LLVA_wooden", + "LLVA_woodpecker", + "LLVA_woods", + "LLVA_woollen", + "LLVA_wording", + "LLVA_wordy", + "LLVA_workable", + "LLVA_workman", + "LLVA_workmanship", + "LLVA_works", + "LLVA_workshop", + "LLVA_worldwide", + "LLVA_worse", + "LLVA_worship", + "LLVA_worst", + "LLVA_worthless", + "LLVA_worthwhile", + "LLVA_wounded", + "LLVA_wrapper", + "LLVA_wrath", + "LLVA_wreath", + "LLVA_wreck", + "LLVA_wrench", + "LLVA_wrestle", + "LLVA_wretched", + "LLVA_wring", + "LLVA_wrinkle", + "LLVA_wrist", + "LLVA_writer", + "LLVA_writing", + "LLVA_written", + "LLVA_wrongly", + "LLVA_xerox", + "LLVA_yacht", + "LLVA_yearly", + "LLVA_yearn", + "LLVA_yeast", + "LLVA_yield", + "LLVA_youngster", + "LLVA_youth", + "LLVA_youthful", + "LLVA_zealous", + "LLVA_zebra", + "LLVA_zipcode", + "LLVA_zipper", + "LLVA_zoology", + "LLVA_Byzantine", + "LLVA_abacus", + "LLVA_abase", + "LLVA_abash", + "LLVA_abate", + "LLVA_abbreviate", + "LLVA_abdicate", + "LLVA_abdomen", + "LLVA_abduct", + "LLVA_aberrant", + "LLVA_aberration", + "LLVA_abhor", + "LLVA_abhorrent", + "LLVA_abiding", + "LLVA_abject", + "LLVA_abjure", + "LLVA_ablution", + "LLVA_abnegate", + "LLVA_abode", + "LLVA_abominable", + "LLVA_abominate", + "LLVA_aboriginal", + "LLVA_abound", + "LLVA_aboveboard", + "LLVA_abrade", + "LLVA_abrasion", + "LLVA_abrasive", + "LLVA_abridgment", + "LLVA_abscission", + "LLVA_abscond", + "LLVA_absenteeism", + "LLVA_absentmindedness", + "LLVA_absolve", + "LLVA_abstain", + "LLVA_abstemious", + "LLVA_abstention", + "LLVA_abstentious", + "LLVA_abstinence", + "LLVA_abstracted", + "LLVA_abstruse", + "LLVA_abusive", + "LLVA_abysmal", + "LLVA_abyss", + "LLVA_academician", + "LLVA_accentuate", + "LLVA_acclaim", + "LLVA_acclimate", + "LLVA_acclivity", + "LLVA_accolade", + "LLVA_accommodating", + "LLVA_accomplice", + "LLVA_accomplished", + "LLVA_accost", + "LLVA_accountability", + "LLVA_accrete", + "LLVA_accretion", + "LLVA_acerbic", + "LLVA_acidity", + "LLVA_acidulous", + "LLVA_acolyte", + "LLVA_acorn", + "LLVA_acoustic", + "LLVA_acquiesce", + "LLVA_acquired", + "LLVA_acquisitive", + "LLVA_acquit", + "LLVA_acquittal", + "LLVA_acrid", + "LLVA_acrimonious", + "LLVA_acrimony", + "LLVA_acronym", + "LLVA_acrophobia", + "LLVA_actuarial", + "LLVA_actuate", + "LLVA_acuity", + "LLVA_acumen", + "LLVA_adage", + "LLVA_adamant", + "LLVA_adaptable", + "LLVA_addendum", + "LLVA_addict", + "LLVA_addle", + "LLVA_adduce", + "LLVA_adept", + "LLVA_adherent", + "LLVA_adjourn", + "LLVA_adjudicate", + "LLVA_adjunct", + "LLVA_adjure", + "LLVA_adjutant", + "LLVA_admissible", + "LLVA_admonish", + "LLVA_adobe", + "LLVA_adorable", + "LLVA_adroit", + "LLVA_adulate", + "LLVA_adulterate", + "LLVA_adumbrate", + "LLVA_advent", + "LLVA_adventitious", + "LLVA_advert", + "LLVA_advocacy", + "LLVA_aegis", + "LLVA_aerate", + "LLVA_aeronautics", + "LLVA_aesthete", + "LLVA_aesthetic", + "LLVA_affable", + "LLVA_affectation", + "LLVA_affected", + "LLVA_affidavit", + "LLVA_affiliation", + "LLVA_affinity", + "LLVA_affix", + "LLVA_afflict", + "LLVA_affliction", + "LLVA_affluence", + "LLVA_affluent", + "LLVA_affront", + "LLVA_aftermath", + "LLVA_agape", + "LLVA_agenda", + "LLVA_agglomerate", + "LLVA_aggrandize", + "LLVA_aggrieve", + "LLVA_aggrieved", + "LLVA_aghast", + "LLVA_agile", + "LLVA_agility", + "LLVA_agitated", + "LLVA_agnostic", + "LLVA_agrarian", + "LLVA_agronomy", + "LLVA_airborne", + "LLVA_airtight", + "LLVA_alabaster", + "LLVA_alacrity", + "LLVA_albeit", + "LLVA_alchemy", + "LLVA_alcove", + "LLVA_alias", + "LLVA_alibi", + "LLVA_alight", + "LLVA_align", + "LLVA_alimentary", + "LLVA_alkali", + "LLVA_allay", + "LLVA_allege", + "LLVA_allegiance", + "LLVA_allegory", + "LLVA_alleviate", + "LLVA_alley", + "LLVA_alliteration", + "LLVA_allopathy", + "LLVA_allude", + "LLVA_allure", + "LLVA_alluring", + "LLVA_allusion", + "LLVA_alluvial", + "LLVA_almond", + "LLVA_aloft", + "LLVA_aloof", + "LLVA_alphabetical", + "LLVA_altercation", + "LLVA_altruism", + "LLVA_altruistic", + "LLVA_aluminium", + "LLVA_amalgam", + "LLVA_amalgamate", + "LLVA_amass", + "LLVA_amateurish", + "LLVA_ambidextrous", + "LLVA_ambience", + "LLVA_ambivalence", + "LLVA_ambivalent", + "LLVA_amble", + "LLVA_ambrosia", + "LLVA_ambulatory", + "LLVA_ambush", + "LLVA_ameliorate", + "LLVA_amenable", + "LLVA_amenity", + "LLVA_amethyst", + "LLVA_amity", + "LLVA_amnesia", + "LLVA_amnesty", + "LLVA_amoral", + "LLVA_amorous", + "LLVA_amorphous", + "LLVA_amortize", + "LLVA_amphibian", + "LLVA_amplitude", + "LLVA_amputate", + "LLVA_amulet", + "LLVA_anachronism", + "LLVA_anachronistic", + "LLVA_anaerobic", + "LLVA_anagram", + "LLVA_analgesia", + "LLVA_analgesic", + "LLVA_analogous", + "LLVA_anarchist", + "LLVA_anarchy", + "LLVA_anathema", + "LLVA_anatomical", + "LLVA_ancestry", + "LLVA_anchorite", + "LLVA_ancillary", + "LLVA_anemia", + "LLVA_anesthetic", + "LLVA_anguish", + "LLVA_anhydrous", + "LLVA_animated", + "LLVA_animosity", + "LLVA_animus", + "LLVA_annals", + "LLVA_annexation", + "LLVA_annihilate", + "LLVA_annotate", + "LLVA_annoying", + "LLVA_annul", + "LLVA_anodyne", + "LLVA_anomalous", + "LLVA_anomaly", + "LLVA_anonymity", + "LLVA_anonymous", + "LLVA_anorexia", + "LLVA_antagonize", + "LLVA_antarctic", + "LLVA_antecedence", + "LLVA_antedate", + "LLVA_antediluvian", + "LLVA_antenna", + "LLVA_anterior", + "LLVA_anthem", + "LLVA_anthology", + "LLVA_anthropoid", + "LLVA_anthropologist", + "LLVA_anthropology", + "LLVA_antibody", + "LLVA_antic", + "LLVA_anticipatory", + "LLVA_anticlimax", + "LLVA_antidote", + "LLVA_antigen", + "LLVA_antihistamine", + "LLVA_antipathy", + "LLVA_antiquated", + "LLVA_antiquity", + "LLVA_antiseptic", + "LLVA_antithesis", + "LLVA_antitoxic", + "LLVA_anvil", + "LLVA_aorta", + "LLVA_apathy", + "LLVA_aperture", + "LLVA_aphasia", + "LLVA_aphorism", + "LLVA_apiary", + "LLVA_aplomb", + "LLVA_apocalyptic", + "LLVA_apocrypha", + "LLVA_apocryphal", + "LLVA_apogee", + "LLVA_apolitical", + "LLVA_apologist", + "LLVA_apophasis", + "LLVA_apoplectic", + "LLVA_apostasy", + "LLVA_apostate", + "LLVA_apostrophe", + "LLVA_apothecary", + "LLVA_apothegm", + "LLVA_apotheosis", + "LLVA_appall", + "LLVA_appalling", + "LLVA_apparel", + "LLVA_apparition", + "LLVA_appease", + "LLVA_appellation", + "LLVA_appendage", + "LLVA_appetizer", + "LLVA_appetizing", + "LLVA_apposite", + "LLVA_apposition", + "LLVA_appraise", + "LLVA_apprehend", + "LLVA_apprehensive", + "LLVA_apprise", + "LLVA_approbation", + "LLVA_approbatory", + "LLVA_apron", + "LLVA_apropos", + "LLVA_aquatic", + "LLVA_aqueduct", + "LLVA_aquifer", + "LLVA_aquiline", + "LLVA_arabesque", + "LLVA_arable", + "LLVA_arachnid", + "LLVA_arbiter", + "LLVA_arbor", + "LLVA_arboreal", + "LLVA_arboretum", + "LLVA_arcade", + "LLVA_arcane", + "LLVA_archaic", + "LLVA_archaism", + "LLVA_archer", + "LLVA_archetype", + "LLVA_archipelago", + "LLVA_archive", + "LLVA_ardor", + "LLVA_argot", + "LLVA_argumentation", + "LLVA_armada", + "LLVA_armistice", + "LLVA_armory", + "LLVA_aroma", + "LLVA_aromatic", + "LLVA_arraign", + "LLVA_arresting", + "LLVA_arrhythmic", + "LLVA_arrogate", + "LLVA_arroyo", + "LLVA_arsenal", + "LLVA_arson", + "LLVA_artery", + "LLVA_artful", + "LLVA_arthritis", + "LLVA_articulate", + "LLVA_artifact", + "LLVA_artifacts", + "LLVA_artifice", + "LLVA_artillery", + "LLVA_artisan", + "LLVA_artistry", + "LLVA_artless", + "LLVA_ascendancy", + "LLVA_ascendant", + "LLVA_ascent", + "LLVA_ascetic", + "LLVA_aseptic", + "LLVA_asinine", + "LLVA_askance", + "LLVA_askew", + "LLVA_asparagus", + "LLVA_aspen", + "LLVA_asperity", + "LLVA_aspersion", + "LLVA_asphyxia", + "LLVA_asphyxiate", + "LLVA_aspirant", + "LLVA_aspiration", + "LLVA_aspire", + "LLVA_assail", + "LLVA_assay", + "LLVA_assent", + "LLVA_assertive", + "LLVA_assertiveness", + "LLVA_asset", + "LLVA_assiduous", + "LLVA_assimilate", + "LLVA_assuage", + "LLVA_assumed", + "LLVA_asterisk", + "LLVA_asteroid", + "LLVA_asthma", + "LLVA_astigmatic", + "LLVA_astounding", + "LLVA_astral", + "LLVA_astringent", + "LLVA_astrolabe", + "LLVA_astrology", + "LLVA_astute", + "LLVA_asunder", + "LLVA_asylum", + "LLVA_asymmetric", + "LLVA_asymptomatic", + "LLVA_asynchronous", + "LLVA_atheism", + "LLVA_athletics", + "LLVA_atonal", + "LLVA_atone", + "LLVA_atrocious", + "LLVA_atrocity", + "LLVA_atrophy", + "LLVA_attainment", + "LLVA_attenuate", + "LLVA_attest", + "LLVA_attire", + "LLVA_attrition", + "LLVA_attune", + "LLVA_attuneto", + "LLVA_atypical", + "LLVA_audacious", + "LLVA_audacity", + "LLVA_audible", + "LLVA_audit", + "LLVA_audition", + "LLVA_auger", + "LLVA_augment", + "LLVA_augur", + "LLVA_augury", + "LLVA_aureole", + "LLVA_auricular", + "LLVA_aurora", + "LLVA_auspices", + "LLVA_auspicious", + "LLVA_austere", + "LLVA_austerity", + "LLVA_authentic", + "LLVA_authenticate", + "LLVA_authenticity", + "LLVA_authoritarian", + "LLVA_authoritative", + "LLVA_autocracy", + "LLVA_autocrat", + "LLVA_autopsy", + "LLVA_avalanche", + "LLVA_avarice", + "LLVA_avaricious", + "LLVA_averse", + "LLVA_aversion", + "LLVA_avert", + "LLVA_aviary", + "LLVA_avocation", + "LLVA_avulse", + "LLVA_avuncular", + "LLVA_awash", + "LLVA_awning", + "LLVA_axiom", + "LLVA_axiomatic", + "LLVA_azure", + "LLVA_babble", + "LLVA_bacchanal", + "LLVA_backdrop", + "LLVA_backhanded", + "LLVA_backset", + "LLVA_backslide", + "LLVA_backwater", + "LLVA_bacteria", + "LLVA_badger", + "LLVA_badinage", + "LLVA_baleful", + "LLVA_ballad", + "LLVA_ballast", + "LLVA_ballerina", + "LLVA_ballot", + "LLVA_balmy", + "LLVA_banal", + "LLVA_banality", + "LLVA_bandy", + "LLVA_baneful", + "LLVA_banish", + "LLVA_banister", + "LLVA_banter", + "LLVA_barbarous", + "LLVA_barbecue", + "LLVA_barefaced", + "LLVA_baroque", + "LLVA_barrage", + "LLVA_barricade", + "LLVA_barrister", + "LLVA_baseboard", + "LLVA_bashful", + "LLVA_bassoon", + "LLVA_baste", + "LLVA_batch", + "LLVA_bathetic", + "LLVA_baton", + "LLVA_battalion", + "LLVA_bauble", + "LLVA_bauxite", + "LLVA_bawdy", + "LLVA_beacon", + "LLVA_beatific", + "LLVA_beatitude", + "LLVA_beaver", + "LLVA_bedeck", + "LLVA_bedizen", + "LLVA_bedlam", + "LLVA_bedraggled", + "LLVA_befuddlement", + "LLVA_beget", + "LLVA_begrudge", + "LLVA_beguile", + "LLVA_behold", + "LLVA_beholden", + "LLVA_beholder", + "LLVA_behoove", + "LLVA_belabor", + "LLVA_belated", + "LLVA_belch", + "LLVA_beleaguer", + "LLVA_belie", + "LLVA_belittle", + "LLVA_bellicose", + "LLVA_belligerence", + "LLVA_belligerent", + "LLVA_bellwether", + "LLVA_belongings", + "LLVA_bemoan", + "LLVA_bemused", + "LLVA_benediction", + "LLVA_benefactor", + "LLVA_beneficent", + "LLVA_benign", + "LLVA_benison", + "LLVA_bequeath", + "LLVA_bequest", + "LLVA_berate", + "LLVA_bereave", + "LLVA_bereft", + "LLVA_berserk", + "LLVA_beseech", + "LLVA_beset", + "LLVA_besiege", + "LLVA_besmirch", + "LLVA_bespeak", + "LLVA_bestial", + "LLVA_betoken", + "LLVA_betroth", + "LLVA_bewail", + "LLVA_bewildering", + "LLVA_bewitch", + "LLVA_bibliography", + "LLVA_bibliophile", + "LLVA_bibulous", + "LLVA_bicker", + "LLVA_biennial", + "LLVA_bifurcate", + "LLVA_bigot", + "LLVA_bigotry", + "LLVA_bilingual", + "LLVA_bilious", + "LLVA_billow", + "LLVA_billowing", + "LLVA_billowy", + "LLVA_biosphere", + "LLVA_biped", + "LLVA_birch", + "LLVA_bivouac", + "LLVA_bizarre", + "LLVA_blackball", + "LLVA_blackmail", + "LLVA_blanch", + "LLVA_bland", + "LLVA_blandishment", + "LLVA_blandishments", + "LLVA_blare", + "LLVA_blase", + "LLVA_blasphemy", + "LLVA_blatant", + "LLVA_blazon", + "LLVA_bleachers", + "LLVA_bleak", + "LLVA_blemish", + "LLVA_blight", + "LLVA_blighted", + "LLVA_blinds", + "LLVA_bliss", + "LLVA_blissful", + "LLVA_blithe", + "LLVA_blizzard", + "LLVA_bloated", + "LLVA_blockade", + "LLVA_blooming", + "LLVA_blotch", + "LLVA_blowhard", + "LLVA_bludgeon", + "LLVA_blueprint", + "LLVA_bluff", + "LLVA_blurb", + "LLVA_blurt", + "LLVA_bluster", + "LLVA_blustering", + "LLVA_boastful", + "LLVA_boggle", + "LLVA_bogus", + "LLVA_bohemian", + "LLVA_boisterous", + "LLVA_bolster", + "LLVA_bolted", + "LLVA_bombardment", + "LLVA_bombast", + "LLVA_bombastic", + "LLVA_bondage", + "LLVA_bonnet", + "LLVA_boorish", + "LLVA_bootless", + "LLVA_boredom", + "LLVA_botany", + "LLVA_botch", + "LLVA_boudoir", + "LLVA_boulder", + "LLVA_bounteous", + "LLVA_bouquet", + "LLVA_bovine", + "LLVA_bowdlerize", + "LLVA_bower", + "LLVA_bracelet", + "LLVA_bracing", + "LLVA_brackish", + "LLVA_braggadocio", + "LLVA_braggart", + "LLVA_braid", + "LLVA_brandish", + "LLVA_brash", + "LLVA_brassy", + "LLVA_bravado", + "LLVA_bravura", + "LLVA_brawl", + "LLVA_brawny", + "LLVA_brazen", + "LLVA_breeder", + "LLVA_brevity", + "LLVA_bricklayer", + "LLVA_brindled", + "LLVA_broach", + "LLVA_brocade", + "LLVA_broil", + "LLVA_bromide", + "LLVA_brooch", + "LLVA_browbeat", + "LLVA_browse", + "LLVA_bruit", + "LLVA_brunt", + "LLVA_brushwork", + "LLVA_brusque", + "LLVA_buckle", + "LLVA_bucolic", + "LLVA_budge", + "LLVA_buffoon", + "LLVA_bugaboo", + "LLVA_buggy", + "LLVA_bulge", + "LLVA_bully", + "LLVA_bulwark", + "LLVA_bumble", + "LLVA_bumper", + "LLVA_bumptious", + "LLVA_bungle", + "LLVA_buoyant", + "LLVA_burgeon", + "LLVA_burlesque", + "LLVA_burnish", + "LLVA_burrow", + "LLVA_busybody", + "LLVA_buttress", + "LLVA_buxom", + "LLVA_byline", + "LLVA_byproduct", + "LLVA_bystander", + "LLVA_byzantine", + "LLVA_cabal", + "LLVA_cache", + "LLVA_cacophonous", + "LLVA_cacophony", + "LLVA_cactus", + "LLVA_cadaver", + "LLVA_cadaverous", + "LLVA_cadence", + "LLVA_cadet", + "LLVA_cadge", + "LLVA_caisson", + "LLVA_cajole", + "LLVA_calamity", + "LLVA_calcification", + "LLVA_calcify", + "LLVA_calcium", + "LLVA_calculated", + "LLVA_calculating", + "LLVA_caldron", + "LLVA_calibrate", + "LLVA_calibre", + "LLVA_calipers", + "LLVA_calligraphy", + "LLVA_callous", + "LLVA_callow", + "LLVA_calorimeter", + "LLVA_calumniate", + "LLVA_calumny", + "LLVA_camaraderie", + "LLVA_cameo", + "LLVA_camouflage", + "LLVA_canard", + "LLVA_candidacy", + "LLVA_candor", + "LLVA_canine", + "LLVA_canker", + "LLVA_cannibal", + "LLVA_canny", + "LLVA_canonical", + "LLVA_canopy", + "LLVA_cantankerous", + "LLVA_cantata", + "LLVA_canter", + "LLVA_canto", + "LLVA_canyon", + "LLVA_capacious", + "LLVA_caper", + "LLVA_capillary", + "LLVA_capitation", + "LLVA_capitulate", + "LLVA_caprice", + "LLVA_capricious", + "LLVA_capsize", + "LLVA_capsule", + "LLVA_captious", + "LLVA_captivate", + "LLVA_carafe", + "LLVA_carapace", + "LLVA_carat", + "LLVA_carbohydrate", + "LLVA_carbonated", + "LLVA_carcinogen", + "LLVA_cardiologist", + "LLVA_careen", + "LLVA_caress", + "LLVA_caret", + "LLVA_careworn", + "LLVA_caricature", + "LLVA_carillon", + "LLVA_carnage", + "LLVA_carnal", + "LLVA_carnation", + "LLVA_carnival", + "LLVA_carnivore", + "LLVA_carnivorous", + "LLVA_carouse", + "LLVA_carrion", + "LLVA_cartographer", + "LLVA_cascade", + "LLVA_caste", + "LLVA_castigate", + "LLVA_castigation", + "LLVA_cataclysm", + "LLVA_catalysis", + "LLVA_catalyze", + "LLVA_catapult", + "LLVA_cataract", + "LLVA_catastrophic", + "LLVA_categorical", + "LLVA_caterpillar", + "LLVA_catharsis", + "LLVA_cathartic", + "LLVA_caucus", + "LLVA_caulk", + "LLVA_causal", + "LLVA_caustic", + "LLVA_cauterize", + "LLVA_cavalcade", + "LLVA_cavalier", + "LLVA_caveat", + "LLVA_cavil", + "LLVA_cavort", + "LLVA_celebrated", + "LLVA_celebrity", + "LLVA_celerity", + "LLVA_celestial", + "LLVA_celibate", + "LLVA_cello", + "LLVA_censorious", + "LLVA_censure", + "LLVA_census", + "LLVA_centaur", + "LLVA_centralization", + "LLVA_centrifugal", + "LLVA_centrifuge", + "LLVA_centripetal", + "LLVA_centurion", + "LLVA_cephalic", + "LLVA_ceramic", + "LLVA_ceramics", + "LLVA_cerebral", + "LLVA_cerebration", + "LLVA_cerebrum", + "LLVA_ceremonious", + "LLVA_certitude", + "LLVA_cessation", + "LLVA_cession", + "LLVA_chafe", + "LLVA_chaff", + "LLVA_chagrin", + "LLVA_chalice", + "LLVA_chameleon", + "LLVA_chancellor", + "LLVA_chandelier", + "LLVA_chant", + "LLVA_chantey", + "LLVA_chaotic", + "LLVA_chapel", + "LLVA_characterization", + "LLVA_charade", + "LLVA_charisma", + "LLVA_charismatic", + "LLVA_charitable", + "LLVA_charlatan", + "LLVA_chary", + "LLVA_chasm", + "LLVA_chassis", + "LLVA_chaste", + "LLVA_chasten", + "LLVA_chastise", + "LLVA_chauvinism", + "LLVA_chauvinist", + "LLVA_chauvinistic", + "LLVA_checkered", + "LLVA_cheetah", + "LLVA_cherubic", + "LLVA_chevron", + "LLVA_chiaroscuro", + "LLVA_chicanery", + "LLVA_chide", + "LLVA_chimera", + "LLVA_chimerical", + "LLVA_chipmunk", + "LLVA_chiromancy", + "LLVA_chirp", + "LLVA_chisel", + "LLVA_chivalrous", + "LLVA_chivalry", + "LLVA_choir", + "LLVA_choleric", + "LLVA_chord", + "LLVA_chore", + "LLVA_choreography", + "LLVA_chortle", + "LLVA_chromatic", + "LLVA_chromosome", + "LLVA_chronic", + "LLVA_chronicle", + "LLVA_chronological", + "LLVA_chronometer", + "LLVA_chrysanthemum", + "LLVA_chuckle", + "LLVA_chunk", + "LLVA_churl", + "LLVA_ciliate", + "LLVA_cinder", + "LLVA_cipher", + "LLVA_circlet", + "LLVA_circuitous", + "LLVA_circumlocution", + "LLVA_circumscribe", + "LLVA_circumspect", + "LLVA_circumstantial", + "LLVA_circumvent", + "LLVA_cistern", + "LLVA_civilian", + "LLVA_civility", + "LLVA_clairvoyance", + "LLVA_clamor", + "LLVA_clamorous", + "LLVA_clandestine", + "LLVA_clannish", + "LLVA_clapper", + "LLVA_clarion", + "LLVA_clarity", + "LLVA_claustrophobia", + "LLVA_cleanse", + "LLVA_cleavage", + "LLVA_cleave", + "LLVA_cleaver", + "LLVA_cleft", + "LLVA_clemency", + "LLVA_clement", + "LLVA_clinch", + "LLVA_clinical", + "LLVA_clipper", + "LLVA_clique", + "LLVA_cloister", + "LLVA_closure", + "LLVA_cloture", + "LLVA_cloudburst", + "LLVA_clout", + "LLVA_cloying", + "LLVA_coagulant", + "LLVA_coagulate", + "LLVA_coagulation", + "LLVA_coalesce", + "LLVA_coalition", + "LLVA_coarsen", + "LLVA_cobbler", + "LLVA_cocoon", + "LLVA_coddle", + "LLVA_codicil", + "LLVA_coerce", + "LLVA_coercion", + "LLVA_coeval", + "LLVA_coexistence", + "LLVA_coffer", + "LLVA_cogent", + "LLVA_cogitate", + "LLVA_cognate", + "LLVA_cognitive", + "LLVA_cognizance", + "LLVA_cognizant", + "LLVA_cognomen", + "LLVA_cohabit", + "LLVA_colander", + "LLVA_collage", + "LLVA_collate", + "LLVA_collateral", + "LLVA_collected", + "LLVA_colloquial", + "LLVA_colloquialism", + "LLVA_colloquium", + "LLVA_colloquy", + "LLVA_collude", + "LLVA_collusion", + "LLVA_colon", + "LLVA_colonize", + "LLVA_colonnade", + "LLVA_coloration", + "LLVA_colossal", + "LLVA_colossus", + "LLVA_coltish", + "LLVA_comatose", + "LLVA_combustible", + "LLVA_combustion", + "LLVA_comedienne", + "LLVA_comely", + "LLVA_comestible", + "LLVA_comet", + "LLVA_comity", + "LLVA_comma", + "LLVA_commandeer", + "LLVA_commencement", + "LLVA_commendable", + "LLVA_commensurate", + "LLVA_commentary", + "LLVA_commentator", + "LLVA_commingle", + "LLVA_commiserate", + "LLVA_committed", + "LLVA_commodious", + "LLVA_commonsensical", + "LLVA_commotion", + "LLVA_communal", + "LLVA_communicable", + "LLVA_commute", + "LLVA_commuter", + "LLVA_compartment", + "LLVA_compassion", + "LLVA_compassionate", + "LLVA_compatriot", + "LLVA_compelling", + "LLVA_compendious", + "LLVA_compendium", + "LLVA_compensatory", + "LLVA_competence", + "LLVA_complacency", + "LLVA_complacent", + "LLVA_complaisance", + "LLVA_complaisant", + "LLVA_complementary", + "LLVA_complexion", + "LLVA_compliant", + "LLVA_complicity", + "LLVA_comport", + "LLVA_compost", + "LLVA_composure", + "LLVA_comprehensible", + "LLVA_compulsion", + "LLVA_compulsive", + "LLVA_compunction", + "LLVA_concatenate", + "LLVA_concave", + "LLVA_concentric", + "LLVA_conceptual", + "LLVA_concerto", + "LLVA_conciliate", + "LLVA_conciliatory", + "LLVA_conclave", + "LLVA_concoct", + "LLVA_concomitant", + "LLVA_concord", + "LLVA_concordant", + "LLVA_concussion", + "LLVA_condescend", + "LLVA_condescending", + "LLVA_condign", + "LLVA_condiment", + "LLVA_condole", + "LLVA_condone", + "LLVA_condor", + "LLVA_conduit", + "LLVA_confection", + "LLVA_confederacy", + "LLVA_configuration", + "LLVA_confiscate", + "LLVA_conflagration", + "LLVA_conflate", + "LLVA_confluence", + "LLVA_conformist", + "LLVA_confound", + "LLVA_congeal", + "LLVA_congenial", + "LLVA_congenital", + "LLVA_congest", + "LLVA_conglomerate", + "LLVA_congregate", + "LLVA_congruent", + "LLVA_congruous", + "LLVA_conifer", + "LLVA_conjecture", + "LLVA_conjoin", + "LLVA_conjugal", + "LLVA_conjure", + "LLVA_connive", + "LLVA_connoisseur", + "LLVA_connotation", + "LLVA_connubial", + "LLVA_consanguinity", + "LLVA_conscript", + "LLVA_consecrate", + "LLVA_consensus", + "LLVA_consequent", + "LLVA_consequential", + "LLVA_conservatism", + "LLVA_conservatory", + "LLVA_conserve", + "LLVA_consort", + "LLVA_conspectus", + "LLVA_conspire", + "LLVA_constellation", + "LLVA_consternation", + "LLVA_constitutional", + "LLVA_constrain", + "LLVA_constrained", + "LLVA_constrict", + "LLVA_consumerism", + "LLVA_consummate", + "LLVA_contagion", + "LLVA_contagious", + "LLVA_containment", + "LLVA_contaminate", + "LLVA_contaminated", + "LLVA_contemptible", + "LLVA_contend", + "LLVA_contented", + "LLVA_contention", + "LLVA_contentious", + "LLVA_contiguous", + "LLVA_contingent", + "LLVA_continuation", + "LLVA_continuity", + "LLVA_contort", + "LLVA_contraband", + "LLVA_contradictory", + "LLVA_contravene", + "LLVA_contravention", + "LLVA_contrite", + "LLVA_contrition", + "LLVA_contrive", + "LLVA_contrived", + "LLVA_controvert", + "LLVA_contumacious", + "LLVA_contumacy", + "LLVA_contumely", + "LLVA_conundrum", + "LLVA_convalesce", + "LLVA_convalescence", + "LLVA_convalescent", + "LLVA_convene", + "LLVA_conventionality", + "LLVA_converge", + "LLVA_convergent", + "LLVA_convertible", + "LLVA_convex", + "LLVA_convivial", + "LLVA_conviviality", + "LLVA_convocation", + "LLVA_convoke", + "LLVA_convoluted", + "LLVA_convoy", + "LLVA_convulse", + "LLVA_convulsion", + "LLVA_copious", + "LLVA_coquette", + "LLVA_cordon", + "LLVA_cornet", + "LLVA_cornice", + "LLVA_cornucopia", + "LLVA_corny", + "LLVA_corona", + "LLVA_coronation", + "LLVA_corporal", + "LLVA_corporeal", + "LLVA_corpulent", + "LLVA_corpus", + "LLVA_corpuscle", + "LLVA_corral", + "LLVA_correspondingly", + "LLVA_corroborate", + "LLVA_corroboration", + "LLVA_corroborative", + "LLVA_corrosive", + "LLVA_corrugate", + "LLVA_corrugated", + "LLVA_coruscate", + "LLVA_cosmopolitanism", + "LLVA_cosset", + "LLVA_costume", + "LLVA_coterie", + "LLVA_coterminous", + "LLVA_cougar", + "LLVA_counteract", + "LLVA_counterbalance", + "LLVA_counterfeit", + "LLVA_counterproductive", + "LLVA_courtroom", + "LLVA_covenant", + "LLVA_covert", + "LLVA_covet", + "LLVA_covetous", + "LLVA_cowardice", + "LLVA_cower", + "LLVA_cozen", + "LLVA_crabbed", + "LLVA_crafty", + "LLVA_craggy", + "LLVA_cramp", + "LLVA_cramped", + "LLVA_cranky", + "LLVA_crass", + "LLVA_crater", + "LLVA_cravat", + "LLVA_craven", + "LLVA_craving", + "LLVA_crayon", + "LLVA_crease", + "LLVA_credence", + "LLVA_credential", + "LLVA_credible", + "LLVA_creditable", + "LLVA_credo", + "LLVA_credulity", + "LLVA_credulous", + "LLVA_creed", + "LLVA_crepuscular", + "LLVA_crescendo", + "LLVA_crest", + "LLVA_crestfallen", + "LLVA_crevice", + "LLVA_criminality", + "LLVA_cringe", + "LLVA_cringing", + "LLVA_crinkle", + "LLVA_criteria", + "LLVA_criterion", + "LLVA_critique", + "LLVA_croak", + "LLVA_crochet", + "LLVA_crockery", + "LLVA_cronyism", + "LLVA_croon", + "LLVA_crossfire", + "LLVA_crotchety", + "LLVA_crucial", + "LLVA_crudity", + "LLVA_crumple", + "LLVA_crusade", + "LLVA_crustacean", + "LLVA_cryogenic", + "LLVA_crypt", + "LLVA_cryptic", + "LLVA_cubicle", + "LLVA_cuddle", + "LLVA_cuisine", + "LLVA_culinary", + "LLVA_culminate", + "LLVA_culmination", + "LLVA_culpable", + "LLVA_culprit", + "LLVA_cultivated", + "LLVA_cumber", + "LLVA_cumbersome", + "LLVA_cumulative", + "LLVA_cumulus", + "LLVA_cupidity", + "LLVA_curator", + "LLVA_curdle", + "LLVA_curfew", + "LLVA_curmudgeon", + "LLVA_curriculum", + "LLVA_currish", + "LLVA_cursive", + "LLVA_cursory", + "LLVA_curvaceous", + "LLVA_custodian", + "LLVA_cuticle", + "LLVA_cyclical", + "LLVA_cyclone", + "LLVA_cygnet", + "LLVA_cylinder", + "LLVA_cynic", + "LLVA_cynical", + "LLVA_cynicism", + "LLVA_cynosure", + "LLVA_cypress", + "LLVA_cytology", + "LLVA_dabble", + "LLVA_daguerreotype", + "LLVA_dalliance", + "LLVA_dally", + "LLVA_damped", + "LLVA_dampen", + "LLVA_dandy", + "LLVA_dangle", + "LLVA_dapper", + "LLVA_dappled", + "LLVA_daredevil", + "LLVA_daubster", + "LLVA_daunt", + "LLVA_dauntless", + "LLVA_dawdle", + "LLVA_deactivate", + "LLVA_deaden", + "LLVA_deadlock", + "LLVA_deadpan", + "LLVA_dearth", + "LLVA_debacle", + "LLVA_debar", + "LLVA_debark", + "LLVA_debase", + "LLVA_debatable", + "LLVA_debauch", + "LLVA_debilitate", + "LLVA_debility", + "LLVA_debonair", + "LLVA_debouch", + "LLVA_debrief", + "LLVA_debris", + "LLVA_debunk", + "LLVA_debut", + "LLVA_debutante", + "LLVA_decadence", + "LLVA_decadent", + "LLVA_decamp", + "LLVA_decant", + "LLVA_decapitate", + "LLVA_decelerate", + "LLVA_decibel", + "LLVA_deciduous", + "LLVA_decimate", + "LLVA_decipher", + "LLVA_declaim", + "LLVA_declamation", + "LLVA_declassify", + "LLVA_declination", + "LLVA_declivity", + "LLVA_decode", + "LLVA_decomposition", + "LLVA_decontaminate", + "LLVA_decorous", + "LLVA_decorum", + "LLVA_decoy", + "LLVA_decrepit", + "LLVA_decry", + "LLVA_dedicated", + "LLVA_dedication", + "LLVA_deductive", + "LLVA_deface", + "LLVA_defalcate", + "LLVA_defamation", + "LLVA_defamatory", + "LLVA_defame", + "LLVA_defeatist", + "LLVA_defection", + "LLVA_defendant", + "LLVA_defense", + "LLVA_deference", + "LLVA_deferential", + "LLVA_deferrable", + "LLVA_defile", + "LLVA_defined", + "LLVA_deflated", + "LLVA_defoliator", + "LLVA_deforestation", + "LLVA_defraud", + "LLVA_defunct", + "LLVA_defuse", + "LLVA_degenerate", + "LLVA_dehumanize", + "LLVA_dehydrate", + "LLVA_deification", + "LLVA_deify", + "LLVA_deign", + "LLVA_deity", + "LLVA_dejected", + "LLVA_dejection", + "LLVA_delectable", + "LLVA_delectation", + "LLVA_deleterious", + "LLVA_delimit", + "LLVA_delineate", + "LLVA_delirious", + "LLVA_delirium", + "LLVA_delta", + "LLVA_delude", + "LLVA_deluge", + "LLVA_delve", + "LLVA_demagogue", + "LLVA_demarcate", + "LLVA_demean", + "LLVA_demeanour", + "LLVA_demented", + "LLVA_demise", + "LLVA_demobilize", + "LLVA_demographic", + "LLVA_demography", + "LLVA_demonstrable", + "LLVA_demonstrative", + "LLVA_demoralize", + "LLVA_demote", + "LLVA_demotic", + "LLVA_demur", + "LLVA_demure", + "LLVA_demystify", + "LLVA_denigrate", + "LLVA_denim", + "LLVA_denizen", + "LLVA_denouement", + "LLVA_denture", + "LLVA_denude", + "LLVA_denunciation", + "LLVA_dependency", + "LLVA_deplore", + "LLVA_deploy", + "LLVA_deport", + "LLVA_deportation", + "LLVA_deportment", + "LLVA_depose", + "LLVA_depraved", + "LLVA_depravity", + "LLVA_deprecate", + "LLVA_depredation", + "LLVA_deprivation", + "LLVA_depute", + "LLVA_deputize", + "LLVA_deracinate", + "LLVA_deranged", + "LLVA_derangement", + "LLVA_derelict", + "LLVA_dereliction", + "LLVA_deride", + "LLVA_derision", + "LLVA_derisive", + "LLVA_derivative", + "LLVA_dermatologist", + "LLVA_dermatology", + "LLVA_derogate", + "LLVA_derogatory", + "LLVA_desalinize", + "LLVA_descry", + "LLVA_desecrate", + "LLVA_deserted", + "LLVA_deserter", + "LLVA_desertification", + "LLVA_desertion", + "LLVA_deserts", + "LLVA_desiccant", + "LLVA_desiccate", + "LLVA_desiccated", + "LLVA_desideratum", + "LLVA_desirous", + "LLVA_desperado", + "LLVA_despicable", + "LLVA_despoil", + "LLVA_despondent", + "LLVA_despot", + "LLVA_despotic", + "LLVA_despotism", + "LLVA_destabilize", + "LLVA_destitute", + "LLVA_destitution", + "LLVA_destructible", + "LLVA_desuetude", + "LLVA_desultory", + "LLVA_detached", + "LLVA_detachment", + "LLVA_deter", + "LLVA_detergent", + "LLVA_determinant", + "LLVA_deterrent", + "LLVA_detest", + "LLVA_detonate", + "LLVA_detonation", + "LLVA_detoxicate", + "LLVA_detoxification", + "LLVA_detoxify", + "LLVA_detraction", + "LLVA_detractor", + "LLVA_detritus", + "LLVA_devastate", + "LLVA_deviant", + "LLVA_devious", + "LLVA_deviousness", + "LLVA_devoid", + "LLVA_devolve", + "LLVA_devotee", + "LLVA_devotional", + "LLVA_devout", + "LLVA_dexterity", + "LLVA_dexterous", + "LLVA_diabetes", + "LLVA_diabolical", + "LLVA_diagonal", + "LLVA_diaphanous", + "LLVA_diatribe", + "LLVA_dichotomy", + "LLVA_dictum", + "LLVA_didactic", + "LLVA_didactics", + "LLVA_diehard", + "LLVA_dietetics", + "LLVA_dietitian", + "LLVA_differentiate", + "LLVA_diffidence", + "LLVA_diffident", + "LLVA_diffuse", + "LLVA_diffusion", + "LLVA_dignitary", + "LLVA_digress", + "LLVA_digression", + "LLVA_digressive", + "LLVA_dilapidate", + "LLVA_dilapidated", + "LLVA_dilapidation", + "LLVA_dilate", + "LLVA_dilatory", + "LLVA_dilemma", + "LLVA_dilettante", + "LLVA_diligence", + "LLVA_diminuendo", + "LLVA_diminution", + "LLVA_diminutive", + "LLVA_dimple", + "LLVA_dinghy", + "LLVA_dipsomania", + "LLVA_dirge", + "LLVA_disabuse", + "LLVA_disaffect", + "LLVA_disaffected", + "LLVA_disaffection", + "LLVA_disaggregate", + "LLVA_disagreeable", + "LLVA_disapprobation", + "LLVA_disarm", + "LLVA_disarray", + "LLVA_disavowal", + "LLVA_disband", + "LLVA_disbar", + "LLVA_disbarment", + "LLVA_disbelief", + "LLVA_discernible", + "LLVA_discerning", + "LLVA_discernment", + "LLVA_disciple", + "LLVA_disciplinarian", + "LLVA_disclosure", + "LLVA_discography", + "LLVA_discombobulate", + "LLVA_discombobulated", + "LLVA_discomfit", + "LLVA_discomfited", + "LLVA_discomfiture", + "LLVA_discommode", + "LLVA_discompose", + "LLVA_disconcert", + "LLVA_disconnected", + "LLVA_discontent", + "LLVA_discontented", + "LLVA_discontentment", + "LLVA_discontinuous", + "LLVA_discord", + "LLVA_discordant", + "LLVA_discountenance", + "LLVA_discourteous", + "LLVA_discredit", + "LLVA_discrete", + "LLVA_discretionary", + "LLVA_discriminating", + "LLVA_discriminatory", + "LLVA_discursive", + "LLVA_disdainful", + "LLVA_disembark", + "LLVA_disembodied", + "LLVA_disenchant", + "LLVA_disencumber", + "LLVA_disengage", + "LLVA_disengaged", + "LLVA_disentangle", + "LLVA_disfavor", + "LLVA_disfigure", + "LLVA_disfranchise", + "LLVA_disfunctional", + "LLVA_disgorge", + "LLVA_disgruntle", + "LLVA_dishearten", + "LLVA_disheveled", + "LLVA_disinclination", + "LLVA_disinfect", + "LLVA_disingenuous", + "LLVA_disintegrate", + "LLVA_disinter", + "LLVA_disinterest", + "LLVA_disinterested", + "LLVA_disjointed", + "LLVA_disjunction", + "LLVA_disjunctive", + "LLVA_dislocate", + "LLVA_dislodge", + "LLVA_dismantle", + "LLVA_dismember", + "LLVA_disobedient", + "LLVA_disorientation", + "LLVA_disoriented", + "LLVA_disparage", + "LLVA_disparate", + "LLVA_dispassionate", + "LLVA_dispensable", + "LLVA_dispirit", + "LLVA_dispirited", + "LLVA_disport", + "LLVA_disposable", + "LLVA_dispossessed", + "LLVA_disproof", + "LLVA_disproportion", + "LLVA_disprove", + "LLVA_disputable", + "LLVA_disputant", + "LLVA_disputatious", + "LLVA_disquiet", + "LLVA_disquisition", + "LLVA_disreputable", + "LLVA_disrepute", + "LLVA_disrespect", + "LLVA_disrupt", + "LLVA_disruptive", + "LLVA_dissect", + "LLVA_dissection", + "LLVA_dissemble", + "LLVA_disseminate", + "LLVA_dissension", + "LLVA_dissent", + "LLVA_dissenter", + "LLVA_dissertation", + "LLVA_dissident", + "LLVA_dissimulate", + "LLVA_dissipated", + "LLVA_dissipation", + "LLVA_dissociation", + "LLVA_dissolute", + "LLVA_dissolution", + "LLVA_dissonance", + "LLVA_dissonant", + "LLVA_dissuade", + "LLVA_distend", + "LLVA_distension", + "LLVA_distill", + "LLVA_distinctive", + "LLVA_distorted", + "LLVA_distracted", + "LLVA_distrait", + "LLVA_distraught", + "LLVA_disturbing", + "LLVA_ditty", + "LLVA_diurnal", + "LLVA_divagate", + "LLVA_divergent", + "LLVA_diversification", + "LLVA_divest", + "LLVA_divestiture", + "LLVA_divinity", + "LLVA_divulge", + "LLVA_docile", + "LLVA_doctrinaire", + "LLVA_dodder", + "LLVA_dogged", + "LLVA_doggerel", + "LLVA_dogma", + "LLVA_dogmatic", + "LLVA_dogmatism", + "LLVA_doldrums", + "LLVA_doleful", + "LLVA_dolorous", + "LLVA_doltish", + "LLVA_domesticate", + "LLVA_domesticity", + "LLVA_domicile", + "LLVA_domination", + "LLVA_donor", + "LLVA_doodle", + "LLVA_dormancy", + "LLVA_dormant", + "LLVA_dorsal", + "LLVA_dossier", + "LLVA_dotage", + "LLVA_doting", + "LLVA_douse", + "LLVA_dowdy", + "LLVA_downcast", + "LLVA_downgrade", + "LLVA_downplay", + "LLVA_downpour", + "LLVA_dowry", + "LLVA_doyen", + "LLVA_drabness", + "LLVA_draconian", + "LLVA_draftsmanship", + "LLVA_drawbridge", + "LLVA_drawl", + "LLVA_dredge", + "LLVA_dregs", + "LLVA_drenched", + "LLVA_dribble", + "LLVA_drivel", + "LLVA_drizzle", + "LLVA_drizzly", + "LLVA_droll", + "LLVA_drollery", + "LLVA_drone", + "LLVA_droplet", + "LLVA_dross", + "LLVA_drove", + "LLVA_drudge", + "LLVA_drudgery", + "LLVA_duckling", + "LLVA_ductile", + "LLVA_ductility", + "LLVA_dulcet", + "LLVA_dumbfound", + "LLVA_dunce", + "LLVA_duplication", + "LLVA_duplicitous", + "LLVA_duplicity", + "LLVA_durability", + "LLVA_duress", + "LLVA_dutiful", + "LLVA_dwindle", + "LLVA_dynamite", + "LLVA_dynamo", + "LLVA_dysfunctional", + "LLVA_dyslexia", + "LLVA_dyspepsia", + "LLVA_dyspeptic", + "LLVA_earplug", + "LLVA_earring", + "LLVA_earshot", + "LLVA_earsplitting", + "LLVA_earthy", + "LLVA_easel", + "LLVA_eavesdrop", + "LLVA_eavesdropper", + "LLVA_ebullience", + "LLVA_ebullient", + "LLVA_ecdysis", + "LLVA_echelon", + "LLVA_eclat", + "LLVA_eclectic", + "LLVA_eclecticism", + "LLVA_eclogue", + "LLVA_ecologist", + "LLVA_ecosystem", + "LLVA_ecstatic", + "LLVA_ecumenical", + "LLVA_edict", + "LLVA_edifice", + "LLVA_edify", + "LLVA_eerie", + "LLVA_efface", + "LLVA_effeminate", + "LLVA_effervesce", + "LLVA_effete", + "LLVA_efficacious", + "LLVA_efficacy", + "LLVA_effigy", + "LLVA_effluvia", + "LLVA_effluvium", + "LLVA_effortless", + "LLVA_effrontery", + "LLVA_effulgence", + "LLVA_effulgent", + "LLVA_effusion", + "LLVA_effusive", + "LLVA_egalitarian", + "LLVA_egocentric", + "LLVA_egotist", + "LLVA_egregious", + "LLVA_egress", + "LLVA_ejaculate", + "LLVA_ejaculation", + "LLVA_elate", + "LLVA_elated", + "LLVA_elation", + "LLVA_electorate", + "LLVA_elegiac", + "LLVA_elegy", + "LLVA_elephantine", + "LLVA_elicit", + "LLVA_eligible", + "LLVA_elite", + "LLVA_elitism", + "LLVA_elixir", + "LLVA_ellipse", + "LLVA_elocution", + "LLVA_elongate", + "LLVA_elongation", + "LLVA_elope", + "LLVA_elucidate", + "LLVA_elude", + "LLVA_elysium", + "LLVA_emaciate", + "LLVA_emaciation", + "LLVA_emanate", + "LLVA_emasculate", + "LLVA_embankment", + "LLVA_embed", + "LLVA_embellish", + "LLVA_embellishment", + "LLVA_embezzle", + "LLVA_embezzlement", + "LLVA_embitter", + "LLVA_emblazon", + "LLVA_emblem", + "LLVA_emblematic", + "LLVA_embodiment", + "LLVA_embolden", + "LLVA_emboss", + "LLVA_embroil", + "LLVA_embryo", + "LLVA_embryonic", + "LLVA_emend", + "LLVA_emerald", + "LLVA_emergence", + "LLVA_eminence", + "LLVA_emissary", + "LLVA_emollient", + "LLVA_emolument", + "LLVA_emote", + "LLVA_empathy", + "LLVA_empiricism", + "LLVA_empower", + "LLVA_empyreal", + "LLVA_empyrean", + "LLVA_emulate", + "LLVA_emulsify", + "LLVA_enact", + "LLVA_enactment", + "LLVA_enamel", + "LLVA_enamored", + "LLVA_encapsulate", + "LLVA_encephalitis", + "LLVA_enchanting", + "LLVA_encipher", + "LLVA_enclave", + "LLVA_encomiast", + "LLVA_encomium", + "LLVA_encompass", + "LLVA_encroach", + "LLVA_encumber", + "LLVA_encumbrance", + "LLVA_encyclopedia", + "LLVA_encyclopedic", + "LLVA_endearing", + "LLVA_endearment", + "LLVA_endemic", + "LLVA_endue", + "LLVA_enduring", + "LLVA_enervate", + "LLVA_enfeeble", + "LLVA_enfetter", + "LLVA_enflame", + "LLVA_enfranchise", + "LLVA_engaging", + "LLVA_engender", + "LLVA_engross", + "LLVA_engrossing", + "LLVA_enigma", + "LLVA_enigmatic", + "LLVA_enjoin", + "LLVA_enkindle", + "LLVA_enlist", + "LLVA_enliven", + "LLVA_enmesh", + "LLVA_enmity", + "LLVA_ennui", + "LLVA_enormity", + "LLVA_enrage", + "LLVA_enrapture", + "LLVA_ensconce", + "LLVA_ensemble", + "LLVA_enshrine", + "LLVA_ensign", + "LLVA_ensnare", + "LLVA_ensue", + "LLVA_entangle", + "LLVA_entertaining", + "LLVA_enthrall", + "LLVA_enthralling", + "LLVA_entice", + "LLVA_enticement", + "LLVA_enticing", + "LLVA_entity", + "LLVA_entomology", + "LLVA_entourage", + "LLVA_entrancing", + "LLVA_entrapment", + "LLVA_entreaty", + "LLVA_entrench", + "LLVA_entrenched", + "LLVA_entrepreneur", + "LLVA_entwine", + "LLVA_enunciate", + "LLVA_enunciation", + "LLVA_environ", + "LLVA_environs", + "LLVA_envisage", + "LLVA_envision", + "LLVA_enzyme", + "LLVA_epaulet", + "LLVA_ephemeral", + "LLVA_epicure", + "LLVA_epicurean", + "LLVA_epidermis", + "LLVA_epigram", + "LLVA_epilogue", + "LLVA_episodic", + "LLVA_epistemology", + "LLVA_epistle", + "LLVA_epitaph", + "LLVA_epithet", + "LLVA_epitome", + "LLVA_epitomize", + "LLVA_equable", + "LLVA_equanimity", + "LLVA_equate", + "LLVA_equestrian", + "LLVA_equine", + "LLVA_equipoise", + "LLVA_equitable", + "LLVA_equitation", + "LLVA_equity", + "LLVA_equivocal", + "LLVA_equivocate", + "LLVA_equivocation", + "LLVA_erasability", + "LLVA_erode", + "LLVA_erotic", + "LLVA_errant", + "LLVA_erratic", + "LLVA_erroneous", + "LLVA_ersatz", + "LLVA_erstwhile", + "LLVA_erudite", + "LLVA_erudition", + "LLVA_escalate", + "LLVA_escalation", + "LLVA_escapism", + "LLVA_eschew", + "LLVA_esophagus", + "LLVA_esoteric", + "LLVA_espionage", + "LLVA_espousal", + "LLVA_espouse", + "LLVA_estimable", + "LLVA_estrange", + "LLVA_estranged", + "LLVA_estrangement", + "LLVA_estuary", + "LLVA_etching", + "LLVA_ethereal", + "LLVA_ethics", + "LLVA_ethnic", + "LLVA_ethnography", + "LLVA_ethnology", + "LLVA_ethos", + "LLVA_etiquette", + "LLVA_etymology", + "LLVA_eucalyptus", + "LLVA_eugenic", + "LLVA_eulogistic", + "LLVA_eulogize", + "LLVA_eulogy", + "LLVA_euphemism", + "LLVA_euphonious", + "LLVA_euphony", + "LLVA_euphoria", + "LLVA_eurhythmic", + "LLVA_evacuate", + "LLVA_evade", + "LLVA_evanescent", + "LLVA_evasion", + "LLVA_evasive", + "LLVA_evenhanded", + "LLVA_evict", + "LLVA_eviction", + "LLVA_evince", + "LLVA_eviscerate", + "LLVA_evocative", + "LLVA_evoke", + "LLVA_exacerbate", + "LLVA_exacting", + "LLVA_exaction", + "LLVA_exactitude", + "LLVA_exaltation", + "LLVA_excavate", + "LLVA_excavation", + "LLVA_exceptionable", + "LLVA_excerpt", + "LLVA_exchangeable", + "LLVA_exchequer", + "LLVA_excise", + "LLVA_excitability", + "LLVA_excitable", + "LLVA_excogitate", + "LLVA_excoriate", + "LLVA_excrete", + "LLVA_exculpate", + "LLVA_exculpatory", + "LLVA_excursive", + "LLVA_execrable", + "LLVA_execrate", + "LLVA_executioner", + "LLVA_executor", + "LLVA_exemplar", + "LLVA_exemplary", + "LLVA_exemption", + "LLVA_exhale", + "LLVA_exhibitionism", + "LLVA_exhibitionist", + "LLVA_exhilarate", + "LLVA_exhilaration", + "LLVA_exhort", + "LLVA_exhortation", + "LLVA_exhume", + "LLVA_exigence", + "LLVA_exigency", + "LLVA_exigent", + "LLVA_exiguous", + "LLVA_existential", + "LLVA_exodus", + "LLVA_exogamy", + "LLVA_exorbitance", + "LLVA_exorbitant", + "LLVA_exorcise", + "LLVA_exotic", + "LLVA_expansive", + "LLVA_expatiate", + "LLVA_expatriate", + "LLVA_expectant", + "LLVA_expediency", + "LLVA_expeditious", + "LLVA_expendable", + "LLVA_expiate", + "LLVA_explicable", + "LLVA_explicate", + "LLVA_exponent", + "LLVA_exponentially", + "LLVA_expository", + "LLVA_expostulate", + "LLVA_expound", + "LLVA_expropriate", + "LLVA_expulsion", + "LLVA_expunge", + "LLVA_expurgate", + "LLVA_extant", + "LLVA_extemporaneous", + "LLVA_extemporize", + "LLVA_extenuate", + "LLVA_exterminate", + "LLVA_externalize", + "LLVA_extirpate", + "LLVA_extirpation", + "LLVA_extol", + "LLVA_extort", + "LLVA_extortionist", + "LLVA_extracurricular", + "LLVA_extradite", + "LLVA_extradition", + "LLVA_extraneous", + "LLVA_extrapolate", + "LLVA_extremist", + "LLVA_extremity", + "LLVA_extricable", + "LLVA_extricate", + "LLVA_extrinsic", + "LLVA_extroversion", + "LLVA_extrovert", + "LLVA_extrude", + "LLVA_exuberance", + "LLVA_exuberant", + "LLVA_exude", + "LLVA_exult", + "LLVA_fabulous", + "LLVA_facade", + "LLVA_facet", + "LLVA_facetious", + "LLVA_facile", + "LLVA_facilities", + "LLVA_facsimile", + "LLVA_factional", + "LLVA_factionalism", + "LLVA_factious", + "LLVA_factitious", + "LLVA_factorable", + "LLVA_factotum", + "LLVA_factual", + "LLVA_faculty", + "LLVA_faddish", + "LLVA_faithfulness", + "LLVA_falcon", + "LLVA_fallacious", + "LLVA_fallacy", + "LLVA_fallibility", + "LLVA_fallible", + "LLVA_fallow", + "LLVA_falsehood", + "LLVA_falsification", + "LLVA_falsify", + "LLVA_falter", + "LLVA_famish", + "LLVA_fanatical", + "LLVA_fancier", + "LLVA_fanfare", + "LLVA_fantasia", + "LLVA_fantasy", + "LLVA_farce", + "LLVA_farrow", + "LLVA_fascia", + "LLVA_fastidious", + "LLVA_fastidiousness", + "LLVA_fastness", + "LLVA_fatality", + "LLVA_fathomable", + "LLVA_fathomless", + "LLVA_fatten", + "LLVA_fatuity", + "LLVA_fatuous", + "LLVA_fatuousness", + "LLVA_faucet", + "LLVA_faultfinder", + "LLVA_fauna", + "LLVA_fawning", + "LLVA_fealty", + "LLVA_febrile", + "LLVA_feckless", + "LLVA_fecund", + "LLVA_fecundity", + "LLVA_feign", + "LLVA_feigned", + "LLVA_feint", + "LLVA_felicitate", + "LLVA_felicitous", + "LLVA_felicity", + "LLVA_feline", + "LLVA_felon", + "LLVA_felony", + "LLVA_feminist", + "LLVA_fencing", + "LLVA_fender", + "LLVA_feral", + "LLVA_ferment", + "LLVA_fermentation", + "LLVA_ferocity", + "LLVA_ferret", + "LLVA_fertility", + "LLVA_fertilize", + "LLVA_fervid", + "LLVA_fervor", + "LLVA_festal", + "LLVA_fester", + "LLVA_festive", + "LLVA_fetid", + "LLVA_fetish", + "LLVA_fetter", + "LLVA_fetus", + "LLVA_fiasco", + "LLVA_fickle", + "LLVA_fictitious", + "LLVA_fidelity", + "LLVA_fidget", + "LLVA_fidgety", + "LLVA_fiend", + "LLVA_fiendish", + "LLVA_figment", + "LLVA_figurehead", + "LLVA_figurine", + "LLVA_filament", + "LLVA_filch", + "LLVA_filial", + "LLVA_filibuster", + "LLVA_filigree", + "LLVA_filings", + "LLVA_fillet", + "LLVA_filly", + "LLVA_finable", + "LLVA_finale", + "LLVA_finch", + "LLVA_finery", + "LLVA_finesse", + "LLVA_finicky", + "LLVA_firearm", + "LLVA_firebrand", + "LLVA_firefly", + "LLVA_fiscal", + "LLVA_fissile", + "LLVA_fissure", + "LLVA_fitful", + "LLVA_fixate", + "LLVA_flabby", + "LLVA_flaccid", + "LLVA_flagellate", + "LLVA_flagging", + "LLVA_flaggy", + "LLVA_flagrant", + "LLVA_flail", + "LLVA_flair", + "LLVA_flamboyant", + "LLVA_flammable", + "LLVA_flange", + "LLVA_flaring", + "LLVA_flatcar", + "LLVA_flatterer", + "LLVA_flattering", + "LLVA_flattery", + "LLVA_flatulence", + "LLVA_flaunt", + "LLVA_flaunty", + "LLVA_flavoring", + "LLVA_flawless", + "LLVA_fleck", + "LLVA_fledge", + "LLVA_fledgling", + "LLVA_fleeting", + "LLVA_flick", + "LLVA_flighty", + "LLVA_flimsy", + "LLVA_flinch", + "LLVA_flint", + "LLVA_flinty", + "LLVA_flippancy", + "LLVA_flippant", + "LLVA_flirt", + "LLVA_flirtatious", + "LLVA_floodgate", + "LLVA_floppy", + "LLVA_flora", + "LLVA_florescence", + "LLVA_florid", + "LLVA_floridness", + "LLVA_flotsam", + "LLVA_flounder", + "LLVA_flout", + "LLVA_fluffy", + "LLVA_fluidity", + "LLVA_fluke", + "LLVA_flunk", + "LLVA_fluorescent", + "LLVA_fluster", + "LLVA_flustered", + "LLVA_fluvial", + "LLVA_foible", + "LLVA_folder", + "LLVA_folklore", + "LLVA_folly", + "LLVA_foment", + "LLVA_fondle", + "LLVA_foolserrand", + "LLVA_foolhardy", + "LLVA_foolproof", + "LLVA_foothold", + "LLVA_footle", + "LLVA_footlights", + "LLVA_footloose", + "LLVA_foppish", + "LLVA_forage", + "LLVA_forager", + "LLVA_foray", + "LLVA_forbearance", + "LLVA_forbidding", + "LLVA_fordable", + "LLVA_forebear", + "LLVA_forebode", + "LLVA_foreboding", + "LLVA_foreclose", + "LLVA_foreclosure", + "LLVA_foreknowledge", + "LLVA_forensic", + "LLVA_forerunner", + "LLVA_foreshadow", + "LLVA_foresight", + "LLVA_forestall", + "LLVA_forfeit", + "LLVA_forfeiture", + "LLVA_forger", + "LLVA_forgo", + "LLVA_forlorn", + "LLVA_formative", + "LLVA_forswear", + "LLVA_forte", + "LLVA_forthright", + "LLVA_forthrightly", + "LLVA_fortify", + "LLVA_fortresslike", + "LLVA_fortuitous", + "LLVA_forwardness", + "LLVA_fosse", + "LLVA_fossilize", + "LLVA_foyer", + "LLVA_fracas", + "LLVA_fractious", + "LLVA_fragility", + "LLVA_fragmentation", + "LLVA_frailty", + "LLVA_framing", + "LLVA_frantic", + "LLVA_fraternal", + "LLVA_fraternity", + "LLVA_fraud", + "LLVA_fraudulent", + "LLVA_fraught", + "LLVA_freak", + "LLVA_freckle", + "LLVA_freelancer", + "LLVA_freeway", + "LLVA_frenetic", + "LLVA_frenzy", + "LLVA_fresco", + "LLVA_fretful", + "LLVA_fretwork", + "LLVA_friable", + "LLVA_frieze", + "LLVA_frigid", + "LLVA_frigidity", + "LLVA_frisk", + "LLVA_frisky", + "LLVA_fritter", + "LLVA_frivolous", + "LLVA_frolic", + "LLVA_frolicsome", + "LLVA_frond", + "LLVA_frothy", + "LLVA_frowzy", + "LLVA_fructify", + "LLVA_frugality", + "LLVA_fruition", + "LLVA_fugitive", + "LLVA_fulcrum", + "LLVA_fulminate", + "LLVA_fulmination", + "LLVA_fulsome", + "LLVA_fulsomeness", + "LLVA_fumigate", + "LLVA_functionary", + "LLVA_funereal", + "LLVA_fungi", + "LLVA_fungicide", + "LLVA_furbish", + "LLVA_furlough", + "LLVA_furor", + "LLVA_furtive", + "LLVA_furtively", + "LLVA_fusillade", + "LLVA_fusion", + "LLVA_fustian", + "LLVA_fusty", + "LLVA_futile", + "LLVA_futility", + "LLVA_gabble", + "LLVA_gadfly", + "LLVA_gadget", + "LLVA_gaffe", + "LLVA_gaggle", + "LLVA_gaiety", + "LLVA_gainsay", + "LLVA_galactic", + "LLVA_galaxy", + "LLVA_gallant", + "LLVA_galley", + "LLVA_gallows", + "LLVA_galvanize", + "LLVA_gambit", + "LLVA_gambol", + "LLVA_gamely", + "LLVA_gamut", + "LLVA_gander", + "LLVA_gangrene", + "LLVA_gangway", + "LLVA_garble", + "LLVA_garbled", + "LLVA_gardenia", + "LLVA_gargantuan", + "LLVA_gargoyle", + "LLVA_garish", + "LLVA_garland", + "LLVA_garner", + "LLVA_garnish", + "LLVA_garret", + "LLVA_garrulity", + "LLVA_garrulous", + "LLVA_gaseous", + "LLVA_gasification", + "LLVA_gastric", + "LLVA_gastritis", + "LLVA_gastronomy", + "LLVA_gauche", + "LLVA_gaucheness", + "LLVA_gaucherie", + "LLVA_gaudy", + "LLVA_gaunt", + "LLVA_gavel", + "LLVA_gazetteer", + "LLVA_gemstone", + "LLVA_genealogy", + "LLVA_generality", + "LLVA_generic", + "LLVA_genesis", + "LLVA_genetic", + "LLVA_geneticist", + "LLVA_genetics", + "LLVA_genial", + "LLVA_genome", + "LLVA_genre", + "LLVA_genteel", + "LLVA_gentility", + "LLVA_gentry", + "LLVA_genuflect", + "LLVA_genus", + "LLVA_geometrician", + "LLVA_germane", + "LLVA_germicide", + "LLVA_germinate", + "LLVA_gerontocracy", + "LLVA_gerontology", + "LLVA_gerrymander", + "LLVA_gestate", + "LLVA_gestation", + "LLVA_gesticulate", + "LLVA_geyser", + "LLVA_giddy", + "LLVA_gimmick", + "LLVA_gingerly", + "LLVA_girder", + "LLVA_girdle", + "LLVA_girth", + "LLVA_glacial", + "LLVA_glacier", + "LLVA_glade", + "LLVA_gladiator", + "LLVA_glamorous", + "LLVA_glaring", + "LLVA_glaze", + "LLVA_glean", + "LLVA_gleeful", + "LLVA_glider", + "LLVA_glimmer", + "LLVA_glitch", + "LLVA_gloaming", + "LLVA_gloat", + "LLVA_gloss", + "LLVA_glossy", + "LLVA_glower", + "LLVA_glowing", + "LLVA_glucose", + "LLVA_glutinous", + "LLVA_glutton", + "LLVA_gluttonous", + "LLVA_gluttony", + "LLVA_gnarled", + "LLVA_gnawing", + "LLVA_gnome", + "LLVA_gnomic", + "LLVA_gobble", + "LLVA_goblet", + "LLVA_goggle", + "LLVA_goldbrick", + "LLVA_gorgon", + "LLVA_gormandize", + "LLVA_gosling", + "LLVA_gospel", + "LLVA_gossamer", + "LLVA_gouge", + "LLVA_gourmand", + "LLVA_gourmet", + "LLVA_governance", + "LLVA_gracefully", + "LLVA_gradation", + "LLVA_graduated", + "LLVA_graft", + "LLVA_granary", + "LLVA_grandeur", + "LLVA_grandiloquent", + "LLVA_grandiose", + "LLVA_grandstand", + "LLVA_granular", + "LLVA_granulate", + "LLVA_granule", + "LLVA_graphic", + "LLVA_graphite", + "LLVA_grasping", + "LLVA_grate", + "LLVA_gratification", + "LLVA_grating", + "LLVA_gratuitous", + "LLVA_gratuity", + "LLVA_gravitational", + "LLVA_greenhorn", + "LLVA_gregarious", + "LLVA_gregariousness", + "LLVA_grenade", + "LLVA_gridiron", + "LLVA_grievance", + "LLVA_grievous", + "LLVA_grill", + "LLVA_grimace", + "LLVA_grindstone", + "LLVA_gripe", + "LLVA_gripping", + "LLVA_grisly", + "LLVA_gristle", + "LLVA_groom", + "LLVA_grotesque", + "LLVA_grotto", + "LLVA_grouch", + "LLVA_grounded", + "LLVA_grouse", + "LLVA_grovel", + "LLVA_grudging", + "LLVA_grueling", + "LLVA_gruesome", + "LLVA_gruff", + "LLVA_grumpy", + "LLVA_guffaw", + "LLVA_guile", + "LLVA_guileless", + "LLVA_guilelessness", + "LLVA_guillotine", + "LLVA_guise", + "LLVA_gulch", + "LLVA_gullible", + "LLVA_gully", + "LLVA_gusher", + "LLVA_gustation", + "LLVA_gustatory", + "LLVA_gusto", + "LLVA_gutless", + "LLVA_guttle", + "LLVA_guzzle", + "LLVA_gynaecocracy", + "LLVA_gyrate", + "LLVA_habitat", + "LLVA_habituate", + "LLVA_hackneyed", + "LLVA_halcyon", + "LLVA_halfhearted", + "LLVA_hallow", + "LLVA_hallowed", + "LLVA_hallucination", + "LLVA_halting", + "LLVA_hangar", + "LLVA_hangdog", + "LLVA_hankering", + "LLVA_hapless", + "LLVA_harangue", + "LLVA_harass", + "LLVA_harassment", + "LLVA_harbinger", + "LLVA_hardbitten", + "LLVA_hardheaded", + "LLVA_hardihood", + "LLVA_harpoon", + "LLVA_harpsichord", + "LLVA_harridan", + "LLVA_harrow", + "LLVA_harrowing", + "LLVA_harry", + "LLVA_harshly", + "LLVA_hassle", + "LLVA_hatchet", + "LLVA_hauteur", + "LLVA_haven", + "LLVA_havoc", + "LLVA_hawker", + "LLVA_hawser", + "LLVA_hazardous", + "LLVA_headstrong", + "LLVA_headway", + "LLVA_healthfulness", + "LLVA_hearken", + "LLVA_hearsay", + "LLVA_hearten", + "LLVA_heartrending", + "LLVA_heckle", + "LLVA_hectic", + "LLVA_hector", + "LLVA_hedonism", + "LLVA_hedonist", + "LLVA_hegemony", + "LLVA_heinous", + "LLVA_heirloom", + "LLVA_heliotrope", + "LLVA_helot", + "LLVA_helve", + "LLVA_hemophilia", + "LLVA_hemorrhage", + "LLVA_hemostat", + "LLVA_henpecked", + "LLVA_hepatitis", + "LLVA_herbaceous", + "LLVA_herbicide", + "LLVA_herbivorous", + "LLVA_herdsman", + "LLVA_hereditary", + "LLVA_heresy", + "LLVA_heretic", + "LLVA_heretical", + "LLVA_hermetic", + "LLVA_hermit", + "LLVA_herpetologist", + "LLVA_heterodox", + "LLVA_heterogeneous", + "LLVA_hexagon", + "LLVA_heyday", + "LLVA_hiatus", + "LLVA_hibernal", + "LLVA_hibernate", + "LLVA_hidebound", + "LLVA_hierarchy", + "LLVA_hieroglyph", + "LLVA_hieroglyphic", + "LLVA_highbrow", + "LLVA_highlight", + "LLVA_hilarious", + "LLVA_hilarity", + "LLVA_hindmost", + "LLVA_hippopotamus", + "LLVA_hirsute", + "LLVA_histocompatibility", + "LLVA_histology", + "LLVA_histrionic", + "LLVA_hoard", + "LLVA_hoary", + "LLVA_hobble", + "LLVA_hodgepodge", + "LLVA_holocaust", + "LLVA_holograph", + "LLVA_holster", + "LLVA_homage", + "LLVA_homeopathy", + "LLVA_homeostasis", + "LLVA_homiletics", + "LLVA_homogeneity", + "LLVA_homogeneous", + "LLVA_homogenize", + "LLVA_homograph", + "LLVA_honorarium", + "LLVA_hoodwink", + "LLVA_hormone", + "LLVA_horology", + "LLVA_horrendous", + "LLVA_horrific", + "LLVA_hortative", + "LLVA_horticulture", + "LLVA_hosepipe", + "LLVA_hostility", + "LLVA_hotbed", + "LLVA_hovel", + "LLVA_howler", + "LLVA_hubbub", + "LLVA_hubris", + "LLVA_huckster", + "LLVA_huddle", + "LLVA_humdrum", + "LLVA_humility", + "LLVA_hummingbird", + "LLVA_hunch", + "LLVA_hurdle", + "LLVA_hurricane", + "LLVA_husbandry", + "LLVA_husky", + "LLVA_hybrid", + "LLVA_hydrant", + "LLVA_hydrate", + "LLVA_hyperactivity", + "LLVA_hyperbole", + "LLVA_hyperbolic", + "LLVA_hypercritical", + "LLVA_hypersensitive", + "LLVA_hypertension", + "LLVA_hyphen", + "LLVA_hypnosis", + "LLVA_hypnotic", + "LLVA_hypochondria", + "LLVA_hypocrite", + "LLVA_hypocritical", + "LLVA_hypodermic", + "LLVA_hypotenuse", + "LLVA_ichthyologist", + "LLVA_icicle", + "LLVA_icing", + "LLVA_iconoclast", + "LLVA_iconoclastic", + "LLVA_ideology", + "LLVA_idiocy", + "LLVA_idiosyncrasy", + "LLVA_idolater", + "LLVA_idolatrous", + "LLVA_idolatry", + "LLVA_idolize", + "LLVA_idyll", + "LLVA_igneous", + "LLVA_ignoble", + "LLVA_ignominious", + "LLVA_ignominy", + "LLVA_ignoramus", + "LLVA_illegitimate", + "LLVA_illiberal", + "LLVA_illicit", + "LLVA_illuminati", + "LLVA_illuminating", + "LLVA_illumination", + "LLVA_illusory", + "LLVA_illustrious", + "LLVA_imaginative", + "LLVA_imbecile", + "LLVA_imbibe", + "LLVA_imbroglio", + "LLVA_imbue", + "LLVA_imitative", + "LLVA_immaculate", + "LLVA_immanent", + "LLVA_immemorial", + "LLVA_immensity", + "LLVA_immobility", + "LLVA_immobilize", + "LLVA_immoderate", + "LLVA_immolate", + "LLVA_immorality", + "LLVA_immune", + "LLVA_immunity", + "LLVA_immunize", + "LLVA_immure", + "LLVA_immutable", + "LLVA_impair", + "LLVA_impale", + "LLVA_impalpable", + "LLVA_impasse", + "LLVA_impassioned", + "LLVA_impassive", + "LLVA_impassiveness", + "LLVA_impeach", + "LLVA_impeccable", + "LLVA_impecunious", + "LLVA_impede", + "LLVA_impediment", + "LLVA_impel", + "LLVA_impending", + "LLVA_impenetrable", + "LLVA_impenitent", + "LLVA_imperceptible", + "LLVA_imperfection", + "LLVA_imperial", + "LLVA_imperil", + "LLVA_imperious", + "LLVA_impermanent", + "LLVA_impermeability", + "LLVA_impermeable", + "LLVA_impersonal", + "LLVA_impersonate", + "LLVA_impersonator", + "LLVA_impertinence", + "LLVA_impertinent", + "LLVA_imperturbable", + "LLVA_impervious", + "LLVA_impetuous", + "LLVA_impetus", + "LLVA_impiety", + "LLVA_impinge", + "LLVA_implacable", + "LLVA_implant", + "LLVA_implausible", + "LLVA_implicate", + "LLVA_implicit", + "LLVA_implode", + "LLVA_implosion", + "LLVA_impolitic", + "LLVA_imponderable", + "LLVA_importune", + "LLVA_imposing", + "LLVA_impostor", + "LLVA_imposture", + "LLVA_impotent", + "LLVA_impoverish", + "LLVA_imprecation", + "LLVA_imprecise", + "LLVA_imprecision", + "LLVA_impregnable", + "LLVA_impresario", + "LLVA_impressed", + "LLVA_impressionable", + "LLVA_imprint", + "LLVA_improbity", + "LLVA_impromptu", + "LLVA_impropriety", + "LLVA_improvident", + "LLVA_improvise", + "LLVA_improvised", + "LLVA_imprudent", + "LLVA_impudent", + "LLVA_impugn", + "LLVA_impuissance", + "LLVA_impulsive", + "LLVA_impunity", + "LLVA_imputation", + "LLVA_impute", + "LLVA_inadvertence", + "LLVA_inadvertent", + "LLVA_inadvertently", + "LLVA_inalienable", + "LLVA_inane", + "LLVA_inanimate", + "LLVA_inapparent", + "LLVA_inappreciable", + "LLVA_inappropriate", + "LLVA_inborn", + "LLVA_incandescence", + "LLVA_incandescent", + "LLVA_incantation", + "LLVA_incapacity", + "LLVA_incarcerate", + "LLVA_incarnate", + "LLVA_incendiary", + "LLVA_inception", + "LLVA_incertitude", + "LLVA_incessant", + "LLVA_inchoate", + "LLVA_incidence", + "LLVA_incinerate", + "LLVA_incipient", + "LLVA_incise", + "LLVA_incision", + "LLVA_incisive", + "LLVA_incisor", + "LLVA_incite", + "LLVA_inclement", + "LLVA_incogitant", + "LLVA_incognito", + "LLVA_incoherent", + "LLVA_incommensurate", + "LLVA_incommodious", + "LLVA_incommunicative", + "LLVA_incompetence", + "LLVA_incompetent", + "LLVA_inconceivable", + "LLVA_incongruity", + "LLVA_incongruous", + "LLVA_inconsequential", + "LLVA_inconsiderable", + "LLVA_inconsiderate", + "LLVA_inconsolable", + "LLVA_inconsonant", + "LLVA_inconstancy", + "LLVA_incontestable", + "LLVA_incontinent", + "LLVA_incontrovertible", + "LLVA_incorporeal", + "LLVA_incorrigibility", + "LLVA_incorrigible", + "LLVA_incorruptible", + "LLVA_incredulity", + "LLVA_incriminate", + "LLVA_incrustation", + "LLVA_incubate", + "LLVA_incubation", + "LLVA_incubator", + "LLVA_incubus", + "LLVA_inculcate", + "LLVA_inculpate", + "LLVA_incumbent", + "LLVA_incurable", + "LLVA_incursion", + "LLVA_indecipherable", + "LLVA_indecisive", + "LLVA_indecorous", + "LLVA_indefatigable", + "LLVA_indelibility", + "LLVA_indelible", + "LLVA_indemnity", + "LLVA_indentation", + "LLVA_indenture", + "LLVA_indescribable", + "LLVA_indeterminate", + "LLVA_indices", + "LLVA_indict", + "LLVA_indigence", + "LLVA_indigenous", + "LLVA_indigent", + "LLVA_indignity", + "LLVA_indiscernible", + "LLVA_indiscreet", + "LLVA_indiscretion", + "LLVA_indiscriminate", + "LLVA_indispensability", + "LLVA_indisposed", + "LLVA_indisputable", + "LLVA_indistinguishable", + "LLVA_indite", + "LLVA_indocile", + "LLVA_indoctrinate", + "LLVA_indolent", + "LLVA_indomitable", + "LLVA_indubitable", + "LLVA_induct", + "LLVA_indulgence", + "LLVA_indulgent", + "LLVA_indurate", + "LLVA_industriousness", + "LLVA_inebriate", + "LLVA_inedible", + "LLVA_ineffable", + "LLVA_ineffaceable", + "LLVA_ineffectual", + "LLVA_inefficacious", + "LLVA_inelastic", + "LLVA_inelasticity", + "LLVA_ineligible", + "LLVA_ineluctable", + "LLVA_inept", + "LLVA_ineptitude", + "LLVA_inequity", + "LLVA_inerrancy", + "LLVA_inert", + "LLVA_inestimable", + "LLVA_inexcusable", + "LLVA_inexhaustible", + "LLVA_inexorable", + "LLVA_inexpedient", + "LLVA_inexpiable", + "LLVA_inexplicable", + "LLVA_inexplicit", + "LLVA_inextricable", + "LLVA_infallible", + "LLVA_infamous", + "LLVA_infamy", + "LLVA_infantile", + "LLVA_infatuated", + "LLVA_infatuation", + "LLVA_infelicitous", + "LLVA_infelicity", + "LLVA_infernal", + "LLVA_inferno", + "LLVA_infertile", + "LLVA_infertility", + "LLVA_infest", + "LLVA_infidel", + "LLVA_infidelity", + "LLVA_infiltrate", + "LLVA_infinitesimal", + "LLVA_infirm", + "LLVA_inflame", + "LLVA_inflamed", + "LLVA_inflammation", + "LLVA_inflate", + "LLVA_inflated", + "LLVA_inflexible", + "LLVA_infliction", + "LLVA_influx", + "LLVA_informality", + "LLVA_informed", + "LLVA_informer", + "LLVA_infraction", + "LLVA_infuriate", + "LLVA_infuse", + "LLVA_ingenuous", + "LLVA_ingest", + "LLVA_ingestion", + "LLVA_ingrained", + "LLVA_ingrate", + "LLVA_ingratiate", + "LLVA_ingratiating", + "LLVA_ingredient", + "LLVA_ingress", + "LLVA_inhale", + "LLVA_inheritor", + "LLVA_inhibit", + "LLVA_inhibited", + "LLVA_inhibition", + "LLVA_inhibitor", + "LLVA_inhumane", + "LLVA_inimical", + "LLVA_inimitable", + "LLVA_iniquitous", + "LLVA_iniquity", + "LLVA_injunction", + "LLVA_injurious", + "LLVA_inkling", + "LLVA_innate", + "LLVA_innocuous", + "LLVA_innovative", + "LLVA_innuendo", + "LLVA_inoculate", + "LLVA_inoffensive", + "LLVA_inordinate", + "LLVA_inquietude", + "LLVA_inquisitive", + "LLVA_inroad", + "LLVA_insalubrity", + "LLVA_insanity", + "LLVA_insatiable", + "LLVA_inscribe", + "LLVA_inscription", + "LLVA_inscrutable", + "LLVA_insecticide", + "LLVA_insecure", + "LLVA_insensate", + "LLVA_insensibility", + "LLVA_insensible", + "LLVA_insensitive", + "LLVA_insensitivity", + "LLVA_insentient", + "LLVA_insidious", + "LLVA_insightful", + "LLVA_insignia", + "LLVA_insincerity", + "LLVA_insinuate", + "LLVA_insipid", + "LLVA_insistence", + "LLVA_insolate", + "LLVA_insolence", + "LLVA_insolent", + "LLVA_insoluble", + "LLVA_insolvency", + "LLVA_insomnia", + "LLVA_insouciance", + "LLVA_insouciant", + "LLVA_inspired", + "LLVA_instability", + "LLVA_instantaneous", + "LLVA_instate", + "LLVA_instigate", + "LLVA_instigator", + "LLVA_instill", + "LLVA_institutionalized", + "LLVA_instrumentalist", + "LLVA_insubordinate", + "LLVA_insubstantial", + "LLVA_insular", + "LLVA_insularity", + "LLVA_insulin", + "LLVA_insuperable", + "LLVA_insurgent", + "LLVA_insurrection", + "LLVA_intact", + "LLVA_intangibility", + "LLVA_intelligible", + "LLVA_intemperance", + "LLVA_intemperate", + "LLVA_intensify", + "LLVA_inter", + "LLVA_intercede", + "LLVA_intercept", + "LLVA_intercessor", + "LLVA_interchangeable", + "LLVA_interdependent", + "LLVA_interdict", + "LLVA_interdisciplinary", + "LLVA_interim", + "LLVA_interjection", + "LLVA_interlace", + "LLVA_interlock", + "LLVA_interlocking", + "LLVA_interlocutor", + "LLVA_interloper", + "LLVA_interlude", + "LLVA_intermediary", + "LLVA_interminable", + "LLVA_intermingle", + "LLVA_intermission", + "LLVA_intermittent", + "LLVA_intern", + "LLVA_internecine", + "LLVA_internment", + "LLVA_interplay", + "LLVA_interpolate", + "LLVA_interpose", + "LLVA_interregnum", + "LLVA_interrelate", + "LLVA_interrogate", + "LLVA_interrogative", + "LLVA_intersect", + "LLVA_intersperse", + "LLVA_interstice", + "LLVA_intertwine", + "LLVA_interweave", + "LLVA_intestate", + "LLVA_intestine", + "LLVA_intimidate", + "LLVA_intolerant", + "LLVA_intoxicant", + "LLVA_intoxicate", + "LLVA_intractable", + "LLVA_intransigence", + "LLVA_intransigent", + "LLVA_intrepid", + "LLVA_intricacy", + "LLVA_intricate", + "LLVA_intrigue", + "LLVA_intriguing", + "LLVA_intrinsic", + "LLVA_introspection", + "LLVA_introspective", + "LLVA_introvert", + "LLVA_intuition", + "LLVA_intuitive", + "LLVA_intumescence", + "LLVA_inured", + "LLVA_invariable", + "LLVA_invariance", + "LLVA_invective", + "LLVA_inveigh", + "LLVA_inveigle", + "LLVA_inventory", + "LLVA_invert", + "LLVA_invertebrate", + "LLVA_investiture", + "LLVA_inveterate", + "LLVA_invidious", + "LLVA_invigilate", + "LLVA_invigorate", + "LLVA_invigorating", + "LLVA_invigoration", + "LLVA_invincible", + "LLVA_inviolable", + "LLVA_inviolate", + "LLVA_inviting", + "LLVA_invoke", + "LLVA_involuntary", + "LLVA_invulnerable", + "LLVA_iodine", + "LLVA_irascible", + "LLVA_irate", + "LLVA_iridescent", + "LLVA_irksome", + "LLVA_ironclad", + "LLVA_ironic", + "LLVA_irradiate", + "LLVA_irradicable", + "LLVA_irrational", + "LLVA_irreconcilable", + "LLVA_irredeemable", + "LLVA_irreducible", + "LLVA_irrefutable", + "LLVA_irrelevant", + "LLVA_irremediable", + "LLVA_irreparable", + "LLVA_irrepressible", + "LLVA_irreproachable", + "LLVA_irresolute", + "LLVA_irreverence", + "LLVA_irritable", + "LLVA_isotope", + "LLVA_isthmus", + "LLVA_iterate", + "LLVA_itinerant", + "LLVA_itinerary", + "LLVA_jabber", + "LLVA_jaded", + "LLVA_jagged", + "LLVA_jamboree", + "LLVA_jargon", + "LLVA_jarring", + "LLVA_jaundice", + "LLVA_jaundiced", + "LLVA_jaunt", + "LLVA_jaunty", + "LLVA_jejune", + "LLVA_jeopardy", + "LLVA_jesting", + "LLVA_jigsawpuzzle", + "LLVA_jigsawpuzzle", + "LLVA_jingoism", + "LLVA_jingoist", + "LLVA_jitter", + "LLVA_jockey", + "LLVA_jocular", + "LLVA_jocund", + "LLVA_jolly", + "LLVA_jovial", + "LLVA_jubilant", + "LLVA_jubilation", + "LLVA_judicial", + "LLVA_judicious", + "LLVA_judiciousness", + "LLVA_juggernaut", + "LLVA_juncture", + "LLVA_jurisdiction", + "LLVA_jurisprudence", + "LLVA_juxtapose", + "LLVA_kaleidoscope", + "LLVA_kaleidoscopic", + "LLVA_kennel", + "LLVA_killjoy", + "LLVA_kindred", + "LLVA_kinetic", + "LLVA_kiosk", + "LLVA_kitten", + "LLVA_kleptomania", + "LLVA_knack", + "LLVA_knave", + "LLVA_knead", + "LLVA_knocker", + "LLVA_knoll", + "LLVA_knotty", + "LLVA_kudos", + "LLVA_labile", + "LLVA_labored", + "LLVA_labyrinth", + "LLVA_labyrinthine", + "LLVA_lacerate", + "LLVA_laceration", + "LLVA_lachrymose", + "LLVA_lackadaisical", + "LLVA_lackey", + "LLVA_lackluster", + "LLVA_laconic", + "LLVA_laconism", + "LLVA_lactic", + "LLVA_laggard", + "LLVA_lagoon", + "LLVA_laity", + "LLVA_lambaste", + "LLVA_lament", + "LLVA_laminate", + "LLVA_lampoon", + "LLVA_lance", + "LLVA_lancet", + "LLVA_landfill", + "LLVA_landlocked", + "LLVA_landmark", + "LLVA_landslide", + "LLVA_languid", + "LLVA_languish", + "LLVA_languor", + "LLVA_lapidary", + "LLVA_larder", + "LLVA_largess", + "LLVA_largesse", + "LLVA_larva", + "LLVA_lascivious", + "LLVA_lassitude", + "LLVA_lasso", + "LLVA_latch", + "LLVA_latency", + "LLVA_laudable", + "LLVA_laudatory", + "LLVA_lavish", + "LLVA_lavishly", + "LLVA_laxative", + "LLVA_laxity", + "LLVA_layman", + "LLVA_leash", + "LLVA_leaven", + "LLVA_lecherous", + "LLVA_lechery", + "LLVA_lectern", + "LLVA_ledger", + "LLVA_leery", + "LLVA_leeward", + "LLVA_legacy", + "LLVA_legerdemain", + "LLVA_legible", + "LLVA_legion", + "LLVA_legislate", + "LLVA_legislature", + "LLVA_leisureliness", + "LLVA_leniency", + "LLVA_lenient", + "LLVA_leonine", + "LLVA_leprosy", + "LLVA_lesion", + "LLVA_lethal", + "LLVA_lethargic", + "LLVA_lethargy", + "LLVA_lettering", + "LLVA_levee", + "LLVA_levelheaded", + "LLVA_leverage", + "LLVA_levitate", + "LLVA_levity", + "LLVA_lexical", + "LLVA_lexicographer", + "LLVA_lexicon", + "LLVA_liaison", + "LLVA_libation", + "LLVA_libel", + "LLVA_libellous", + "LLVA_liberality", + "LLVA_libertine", + "LLVA_libido", + "LLVA_libretto", + "LLVA_licentious", + "LLVA_licit", + "LLVA_ligature", + "LLVA_lighthearted", + "LLVA_ligneous", + "LLVA_liken", + "LLVA_limber", + "LLVA_limbo", + "LLVA_limerick", + "LLVA_limpid", + "LLVA_lineage", + "LLVA_lineal", + "LLVA_lineaments", + "LLVA_lingual", + "LLVA_linguistic", + "LLVA_linoleum", + "LLVA_lionize", + "LLVA_liquefy", + "LLVA_liquidate", + "LLVA_lissome", + "LLVA_listless", + "LLVA_literati", + "LLVA_lithe", + "LLVA_litigant", + "LLVA_litigation", + "LLVA_littoral", + "LLVA_liturgy", + "LLVA_livid", + "LLVA_loath", + "LLVA_loathe", + "LLVA_loathing", + "LLVA_loathsome", + "LLVA_locale", + "LLVA_locomotion", + "LLVA_locus", + "LLVA_locution", + "LLVA_logistics", + "LLVA_logjam", + "LLVA_loiter", + "LLVA_loophole", + "LLVA_lopsided", + "LLVA_loquacious", + "LLVA_loutish", + "LLVA_lowbred", + "LLVA_lubricant", + "LLVA_lubricious", + "LLVA_lucid", + "LLVA_lucrative", + "LLVA_lucre", + "LLVA_lucubrate", + "LLVA_lucubration", + "LLVA_ludicrous", + "LLVA_lugubrious", + "LLVA_lugubriousness", + "LLVA_lukewarm", + "LLVA_lullaby", + "LLVA_lumberjack", + "LLVA_lumen", + "LLVA_luminary", + "LLVA_lunatic", + "LLVA_lurch", + "LLVA_lurid", + "LLVA_luscious", + "LLVA_lustre", + "LLVA_lustrous", + "LLVA_lusty", + "LLVA_luxuriant", + "LLVA_lynch", + "LLVA_lyric", + "LLVA_macabre", + "LLVA_macerate", + "LLVA_machiavellian", + "LLVA_machination", + "LLVA_maculated", + "LLVA_madrigal", + "LLVA_maelstrom", + "LLVA_maestro", + "LLVA_magenta", + "LLVA_magisterial", + "LLVA_magnanimity", + "LLVA_magnanimous", + "LLVA_magnate", + "LLVA_magniloquent", + "LLVA_magpie", + "LLVA_majestic", + "LLVA_makeshift", + "LLVA_maladroit", + "LLVA_malapropism", + "LLVA_malcontent", + "LLVA_malediction", + "LLVA_malefactor", + "LLVA_maleficent", + "LLVA_malevolent", + "LLVA_malfeasance", + "LLVA_malfunction", + "LLVA_malign", + "LLVA_malignant", + "LLVA_malinger", + "LLVA_malleable", + "LLVA_mallet", + "LLVA_malnutrition", + "LLVA_malodorous", + "LLVA_malpractice", + "LLVA_maltreat", + "LLVA_mammal", + "LLVA_mammoth", + "LLVA_manacle", + "LLVA_mandate", + "LLVA_mandatory", + "LLVA_maneuver", + "LLVA_mangle", + "LLVA_mania", + "LLVA_maniacal", + "LLVA_manifold", + "LLVA_manipulative", + "LLVA_mannequin", + "LLVA_mannered", + "LLVA_mannerism", + "LLVA_mantle", + "LLVA_manumit", + "LLVA_manure", + "LLVA_maraud", + "LLVA_margarine", + "LLVA_marionette", + "LLVA_marital", + "LLVA_maritime", + "LLVA_maroon", + "LLVA_marred", + "LLVA_marrow", + "LLVA_marsupial", + "LLVA_martial", + "LLVA_martinet", + "LLVA_mason", + "LLVA_masquerade", + "LLVA_mastery", + "LLVA_masticate", + "LLVA_matador", + "LLVA_maternal", + "LLVA_matriarchy", + "LLVA_matriculate", + "LLVA_matrimony", + "LLVA_matrix", + "LLVA_maudlin", + "LLVA_mausoleum", + "LLVA_mauve", + "LLVA_maven", + "LLVA_maverick", + "LLVA_mawkish", + "LLVA_maxim", + "LLVA_mayhem", + "LLVA_meager", + "LLVA_meander", + "LLVA_measles", + "LLVA_measly", + "LLVA_measurable", + "LLVA_measured", + "LLVA_meddle", + "LLVA_meddlesome", + "LLVA_media", + "LLVA_median", + "LLVA_mediate", + "LLVA_medicate", + "LLVA_mediocre", + "LLVA_mediocrity", + "LLVA_meditative", + "LLVA_medley", + "LLVA_megalomania", + "LLVA_meliorism", + "LLVA_mellifluous", + "LLVA_melodrama", + "LLVA_membrane", + "LLVA_memento", + "LLVA_mendacious", + "LLVA_mendacity", + "LLVA_mendicant", + "LLVA_menial", + "LLVA_menthol", + "LLVA_mentor", + "LLVA_mercenary", + "LLVA_mercurial", + "LLVA_meretricious", + "LLVA_merger", + "LLVA_merited", + "LLVA_meritorious", + "LLVA_mesmerize", + "LLVA_metabolism", + "LLVA_metamorphose", + "LLVA_metamorphosis", + "LLVA_metaphor", + "LLVA_metaphysical", + "LLVA_metaphysics", + "LLVA_meteoric", + "LLVA_meteorology", + "LLVA_methodical", + "LLVA_metrical", + "LLVA_metropolis", + "LLVA_mettle", + "LLVA_mettlesome", + "LLVA_miasma", + "LLVA_microbe", + "LLVA_microorganism", + "LLVA_microscopic", + "LLVA_midget", + "LLVA_migratory", + "LLVA_mildew", + "LLVA_milieu", + "LLVA_militant", + "LLVA_millennium", + "LLVA_millinery", + "LLVA_mimic", + "LLVA_mimicry", + "LLVA_minaret", + "LLVA_minatory", + "LLVA_mincing", + "LLVA_minion", + "LLVA_minnow", + "LLVA_minuet", + "LLVA_minuscule", + "LLVA_minutes", + "LLVA_minutia", + "LLVA_mirage", + "LLVA_mirth", + "LLVA_misanthrope", + "LLVA_misapprehension", + "LLVA_misbehave", + "LLVA_miscalculate", + "LLVA_miscellany", + "LLVA_mischievous", + "LLVA_misconception", + "LLVA_misconduct", + "LLVA_misconstrue", + "LLVA_miscreant", + "LLVA_misdeed", + "LLVA_misdemeanor", + "LLVA_misdirect", + "LLVA_miserly", + "LLVA_misguide", + "LLVA_misinform", + "LLVA_misjudge", + "LLVA_misleading", + "LLVA_misnomer", + "LLVA_misogamy", + "LLVA_misogynist", + "LLVA_misperceive", + "LLVA_misplace", + "LLVA_misread", + "LLVA_misrepresent", + "LLVA_misrepresentation", + "LLVA_misshapen", + "LLVA_missive", + "LLVA_mistimed", + "LLVA_mistral", + "LLVA_misuse", + "LLVA_mitigate", + "LLVA_mnemonics", + "LLVA_mobility", + "LLVA_mockery", + "LLVA_moderation", + "LLVA_moderator", + "LLVA_modestly", + "LLVA_modicum", + "LLVA_modish", + "LLVA_mogul", + "LLVA_molar", + "LLVA_molding", + "LLVA_moldy", + "LLVA_molest", + "LLVA_mollification", + "LLVA_mollify", + "LLVA_mollusk", + "LLVA_mollycoddle", + "LLVA_molten", + "LLVA_momentum", + "LLVA_monarchy", + "LLVA_mongrel", + "LLVA_monochromatic", + "LLVA_monochrome", + "LLVA_monocle", + "LLVA_monogamy", + "LLVA_monograph", + "LLVA_monolithic", + "LLVA_monologue", + "LLVA_monomania", + "LLVA_monsoon", + "LLVA_montage", + "LLVA_moody", + "LLVA_moralistic", + "LLVA_morass", + "LLVA_moratorium", + "LLVA_morbid", + "LLVA_mordant", + "LLVA_mores", + "LLVA_moribund", + "LLVA_moron", + "LLVA_morose", + "LLVA_morsel", + "LLVA_mortality", + "LLVA_mortar", + "LLVA_mortgage", + "LLVA_mortification", + "LLVA_mortify", + "LLVA_mortuary", + "LLVA_mosaic", + "LLVA_motif", + "LLVA_motility", + "LLVA_motivational", + "LLVA_motley", + "LLVA_mottled", + "LLVA_mountebank", + "LLVA_muddle", + "LLVA_muffled", + "LLVA_muggy", + "LLVA_mulch", + "LLVA_mulct", + "LLVA_mulish", + "LLVA_multifarious", + "LLVA_multiplicity", + "LLVA_mundane", + "LLVA_municipality", + "LLVA_munificence", + "LLVA_munificent", + "LLVA_muniments", + "LLVA_munition", + "LLVA_munitions", + "LLVA_mural", + "LLVA_murky", + "LLVA_musculature", + "LLVA_musicologist", + "LLVA_musket", + "LLVA_muster", + "LLVA_musty", + "LLVA_mutable", + "LLVA_mutate", + "LLVA_mutation", + "LLVA_muted", + "LLVA_mutilate", + "LLVA_mutineer", + "LLVA_mutinous", + "LLVA_muzzy", + "LLVA_myopia", + "LLVA_myopic", + "LLVA_mythical", + "LLVA_nadir", + "LLVA_naivety", + "LLVA_narcissism", + "LLVA_narcissist", + "LLVA_narcotic", + "LLVA_narrative", + "LLVA_nasal", + "LLVA_nascent", + "LLVA_natal", + "LLVA_natation", + "LLVA_natty", + "LLVA_nauseate", + "LLVA_nautical", + "LLVA_navigate", + "LLVA_naysay", + "LLVA_nebula", + "LLVA_nebulous", + "LLVA_necessitous", + "LLVA_necropolis", + "LLVA_nectar", + "LLVA_needlework", + "LLVA_nefarious", + "LLVA_nemesis", + "LLVA_neolithic", + "LLVA_neologism", + "LLVA_neonate", + "LLVA_neophyte", + "LLVA_nephritis", + "LLVA_nepotism", + "LLVA_nerveless", + "LLVA_nestling", + "LLVA_nethermost", + "LLVA_nettle", + "LLVA_neurology", + "LLVA_neurosis", + "LLVA_neurotic", + "LLVA_neutralize", + "LLVA_nexus", + "LLVA_nibble", + "LLVA_nicety", + "LLVA_niche", + "LLVA_nicotine", + "LLVA_niggard", + "LLVA_niggling", + "LLVA_nihilism", + "LLVA_nimble", + "LLVA_nippers", + "LLVA_nipping", + "LLVA_nitpick", + "LLVA_nocturnal", + "LLVA_noisome", + "LLVA_nomad", + "LLVA_nomadic", + "LLVA_nomenclature", + "LLVA_nonchalance", + "LLVA_nonchalant", + "LLVA_noncommittal", + "LLVA_nonconformist", + "LLVA_nonconformity", + "LLVA_noncontemporaneous", + "LLVA_nondescript", + "LLVA_nonentity", + "LLVA_nonesuch", + "LLVA_nonflammable", + "LLVA_nonobservance", + "LLVA_nonpareil", + "LLVA_nonplus", + "LLVA_nonporous", + "LLVA_nonradioactive", + "LLVA_nonsensical", + "LLVA_nonthreatening", + "LLVA_nontraditional", + "LLVA_nonverbal", + "LLVA_nonviable", + "LLVA_nonviolent", + "LLVA_nonviscous", + "LLVA_noose", + "LLVA_nostalgia", + "LLVA_nostalgic", + "LLVA_nostrum", + "LLVA_notability", + "LLVA_notch", + "LLVA_notoriety", + "LLVA_novice", + "LLVA_noxious", + "LLVA_nuance", + "LLVA_nubile", + "LLVA_nucleate", + "LLVA_nudge", + "LLVA_nugatory", + "LLVA_numerology", + "LLVA_numinous", + "LLVA_numismatic", + "LLVA_numismatist", + "LLVA_nunnery", + "LLVA_nuptial", + "LLVA_nurture", + "LLVA_nutrient", + "LLVA_nutrition", + "LLVA_nymph", + "LLVA_oafishness", + "LLVA_oasis", + "LLVA_oatmeal", + "LLVA_obdurate", + "LLVA_obeisance", + "LLVA_obelisk", + "LLVA_obese", + "LLVA_obfuscate", + "LLVA_obituary", + "LLVA_objectionable", + "LLVA_oblation", + "LLVA_obligatory", + "LLVA_obliging", + "LLVA_oblique", + "LLVA_oblivion", + "LLVA_oblivious", + "LLVA_obloquy", + "LLVA_obnoxious", + "LLVA_obscurity", + "LLVA_obsequies", + "LLVA_obsequious", + "LLVA_observable", + "LLVA_observatory", + "LLVA_obsess", + "LLVA_obsessed", + "LLVA_obsession", + "LLVA_obsolescent", + "LLVA_obsolete", + "LLVA_obstinacy", + "LLVA_obstreperous", + "LLVA_obstruct", + "LLVA_obtrude", + "LLVA_obtrusive", + "LLVA_obtuse", + "LLVA_obverse", + "LLVA_obviate", + "LLVA_occlude", + "LLVA_occult", + "LLVA_octogenarian", + "LLVA_ocular", + "LLVA_oculist", + "LLVA_oddments", + "LLVA_odious", + "LLVA_odium", + "LLVA_odometer", + "LLVA_odoriferous", + "LLVA_odyssey", + "LLVA_offbeat", + "LLVA_offenceoffense", + "LLVA_offense", + "LLVA_offhand", + "LLVA_officious", + "LLVA_offish", + "LLVA_offstage", + "LLVA_ointment", + "LLVA_olfaction", + "LLVA_olfactory", + "LLVA_oligarchy", + "LLVA_omelet", + "LLVA_omnipotent", + "LLVA_omnipresent", + "LLVA_omniscient", + "LLVA_omnivorous", + "LLVA_oncologist", + "LLVA_onerous", + "LLVA_onslaught", + "LLVA_ontology", + "LLVA_opacity", + "LLVA_opalescence", + "LLVA_operetta", + "LLVA_ophthalmology", + "LLVA_opiate", + "LLVA_opine", + "LLVA_opinionated", + "LLVA_oppressive", + "LLVA_opprobrious", + "LLVA_opprobrium", + "LLVA_optimist", + "LLVA_optometrist", + "LLVA_opulent", + "LLVA_oracle", + "LLVA_oracular", + "LLVA_oration", + "LLVA_orator", + "LLVA_oratorio", + "LLVA_oratory", + "LLVA_orchid", + "LLVA_ordain", + "LLVA_ordeal", + "LLVA_ordinance", + "LLVA_ordination", + "LLVA_ordnance", + "LLVA_orifice", + "LLVA_ornate", + "LLVA_ornithologist", + "LLVA_ornithology", + "LLVA_orotund", + "LLVA_orthodontics", + "LLVA_orthodox", + "LLVA_orthodoxy", + "LLVA_orthopedics", + "LLVA_oscillate", + "LLVA_osmosis", + "LLVA_osseous", + "LLVA_ossify", + "LLVA_ostensible", + "LLVA_ostentation", + "LLVA_ostentatious", + "LLVA_ostracism", + "LLVA_ostracize", + "LLVA_ostrich", + "LLVA_otiose", + "LLVA_otter", + "LLVA_outbid", + "LLVA_outcast", + "LLVA_outdated", + "LLVA_outfit", + "LLVA_outfox", + "LLVA_outgoing", + "LLVA_outgrowth", + "LLVA_outmaneuver", + "LLVA_outmoded", + "LLVA_outnumbered", + "LLVA_outshine", + "LLVA_outspoken", + "LLVA_outstrip", + "LLVA_outwit", + "LLVA_ovation", + "LLVA_overact", + "LLVA_overbearing", + "LLVA_overdose", + "LLVA_overdue", + "LLVA_overemphasize", + "LLVA_overexposure", + "LLVA_overhaul", + "LLVA_overpower", + "LLVA_overpowering", + "LLVA_overreach", + "LLVA_override", + "LLVA_overriding", + "LLVA_overrule", + "LLVA_oversee", + "LLVA_overshadow", + "LLVA_overstate", + "LLVA_overt", + "LLVA_overture", + "LLVA_overturn", + "LLVA_overweening", + "LLVA_overwrought", + "LLVA_ovoid", + "LLVA_oxidize", + "LLVA_oxymoron", + "LLVA_pachyderm", + "LLVA_pacifist", + "LLVA_pacify", + "LLVA_packed", + "LLVA_padding", + "LLVA_paean", + "LLVA_pagan", + "LLVA_pageant", + "LLVA_painkiller", + "LLVA_painstaking", + "LLVA_palatable", + "LLVA_palate", + "LLVA_palatial", + "LLVA_palaver", + "LLVA_paleography", + "LLVA_paleolithic", + "LLVA_paleontologist", + "LLVA_paleontology", + "LLVA_palette", + "LLVA_palings", + "LLVA_palliate", + "LLVA_palliative", + "LLVA_pallid", + "LLVA_palmy", + "LLVA_palpable", + "LLVA_palpitate", + "LLVA_palter", + "LLVA_paltry", + "LLVA_pamper", + "LLVA_panacea", + "LLVA_panache", + "LLVA_pancreas", + "LLVA_pandemic", + "LLVA_pandemonium", + "LLVA_pander", + "LLVA_panegyric", + "LLVA_panoply", + "LLVA_pantheon", + "LLVA_pantomime", + "LLVA_papyrus", + "LLVA_parable", + "LLVA_parabola", + "LLVA_paradigm", + "LLVA_paradox", + "LLVA_paragon", + "LLVA_parallelism", + "LLVA_paralyze", + "LLVA_paramount", + "LLVA_paranoia", + "LLVA_paranoid", + "LLVA_paraphrase", + "LLVA_parch", + "LLVA_parchment", + "LLVA_parenthesis", + "LLVA_pariah", + "LLVA_parity", + "LLVA_parka", + "LLVA_parlance", + "LLVA_parley", + "LLVA_parlous", + "LLVA_parody", + "LLVA_paroxysm", + "LLVA_parquet", + "LLVA_parquetry", + "LLVA_parry", + "LLVA_parse", + "LLVA_parsimonious", + "LLVA_parsimony", + "LLVA_partiality", + "LLVA_particularize", + "LLVA_partisan", + "LLVA_parturition", + "LLVA_parvenu", + "LLVA_passivity", + "LLVA_pastel", + "LLVA_pasteurize", + "LLVA_pastiche", + "LLVA_pastor", + "LLVA_pastoral", + "LLVA_pastry", + "LLVA_patchwork", + "LLVA_patently", + "LLVA_pathogen", + "LLVA_pathological", + "LLVA_pathology", + "LLVA_pathos", + "LLVA_patina", + "LLVA_patio", + "LLVA_patriarchy", + "LLVA_patrician", + "LLVA_patrimony", + "LLVA_patronize", + "LLVA_paucity", + "LLVA_paunchy", + "LLVA_pauper", + "LLVA_pawnbroker", + "LLVA_peaky", + "LLVA_pecan", + "LLVA_peccadillo", + "LLVA_pectoral", + "LLVA_peculate", + "LLVA_pecuniary", + "LLVA_pedagogue", + "LLVA_pedagogy", + "LLVA_pedant", + "LLVA_pedantic", + "LLVA_pedantry", + "LLVA_peddle", + "LLVA_pedestal", + "LLVA_pediatrics", + "LLVA_pedigree", + "LLVA_peerless", + "LLVA_peeve", + "LLVA_peevish", + "LLVA_pejorative", + "LLVA_pellmell", + "LLVA_pellucid", + "LLVA_penalize", + "LLVA_penance", + "LLVA_penchant", + "LLVA_pendent", + "LLVA_pendulum", + "LLVA_penetrating", + "LLVA_peninsula", + "LLVA_penitent", + "LLVA_penitentiary", + "LLVA_pennant", + "LLVA_pensive", + "LLVA_penultimate", + "LLVA_penumbra", + "LLVA_penurious", + "LLVA_penury", + "LLVA_peptic", + "LLVA_perambulate", + "LLVA_perceiving", + "LLVA_perceptible", + "LLVA_perceptive", + "LLVA_percolate", + "LLVA_percussion", + "LLVA_percussionist", + "LLVA_peregrination", + "LLVA_peremptory", + "LLVA_perennial", + "LLVA_perfectionist", + "LLVA_perfervid", + "LLVA_perfidious", + "LLVA_perfidy", + "LLVA_perforate", + "LLVA_perfunctorily", + "LLVA_perfunctory", + "LLVA_perigee", + "LLVA_perilous", + "LLVA_peripatetic", + "LLVA_periphery", + "LLVA_periphrastic", + "LLVA_periscope", + "LLVA_perishable", + "LLVA_perishing", + "LLVA_perjure", + "LLVA_perjury", + "LLVA_perky", + "LLVA_permeable", + "LLVA_permeate", + "LLVA_permutation", + "LLVA_pernicious", + "LLVA_peroration", + "LLVA_perpetrate", + "LLVA_perpetuate", + "LLVA_perpetuation", + "LLVA_perpetuity", + "LLVA_perplexed", + "LLVA_perplexity", + "LLVA_perquisite", + "LLVA_persevering", + "LLVA_persiflage", + "LLVA_persnickety", + "LLVA_personable", + "LLVA_personage", + "LLVA_personification", + "LLVA_perspicacious", + "LLVA_perspicacity", + "LLVA_perspicuity", + "LLVA_perspicuous", + "LLVA_perspire", + "LLVA_persuasive", + "LLVA_pertinacious", + "LLVA_perturbation", + "LLVA_pervade", + "LLVA_pervasive", + "LLVA_perverse", + "LLVA_perversion", + "LLVA_pervert", + "LLVA_pervious", + "LLVA_pesky", + "LLVA_pessimism", + "LLVA_pester", + "LLVA_pesticide", + "LLVA_pestilent", + "LLVA_pestle", + "LLVA_petal", + "LLVA_petitioner", + "LLVA_petrifaction", + "LLVA_petrify", + "LLVA_petroglyph", + "LLVA_petrology", + "LLVA_pettish", + "LLVA_petulance", + "LLVA_petulant", + "LLVA_phantom", + "LLVA_pharisaic", + "LLVA_pharmaceutical", + "LLVA_pharmacist", + "LLVA_pharmacology", + "LLVA_phenomena", + "LLVA_phenomenal", + "LLVA_phenomenology", + "LLVA_phial", + "LLVA_philander", + "LLVA_philanthropic", + "LLVA_philanthropist", + "LLVA_philanthropy", + "LLVA_philatelist", + "LLVA_philately", + "LLVA_philistine", + "LLVA_philology", + "LLVA_phlegmatic", + "LLVA_phobia", + "LLVA_phoenix", + "LLVA_phonetic", + "LLVA_phony", + "LLVA_photosynthesis", + "LLVA_phylogeny", + "LLVA_phylum", + "LLVA_physiological", + "LLVA_piazza", + "LLVA_piddling", + "LLVA_piecemeal", + "LLVA_pierce", + "LLVA_piercing", + "LLVA_piety", + "LLVA_pilfer", + "LLVA_pillage", + "LLVA_pillory", + "LLVA_pincers", + "LLVA_pinnacle", + "LLVA_pinpoint", + "LLVA_piquancy", + "LLVA_piquant", + "LLVA_pique", + "LLVA_pirouette", + "LLVA_piscatorial", + "LLVA_pitfall", + "LLVA_pithiness", + "LLVA_pithy", + "LLVA_pitiful", + "LLVA_pittance", + "LLVA_pivot", + "LLVA_pivotal", + "LLVA_placate", + "LLVA_placebo", + "LLVA_placid", + "LLVA_plagiarism", + "LLVA_plagiarize", + "LLVA_plaintiff", + "LLVA_plaintive", + "LLVA_plait", + "LLVA_planetary", + "LLVA_plangent", + "LLVA_plank", + "LLVA_plankton", + "LLVA_plaque", + "LLVA_plasticity", + "LLVA_platitude", + "LLVA_platonic", + "LLVA_plaudit", + "LLVA_plausible", + "LLVA_plaza", + "LLVA_pleat", + "LLVA_plebeian", + "LLVA_plenitude", + "LLVA_pleonastic", + "LLVA_plethora", + "LLVA_pliable", + "LLVA_pliant", + "LLVA_pliers", + "LLVA_plinth", + "LLVA_plodding", + "LLVA_plucky", + "LLVA_plumage", + "LLVA_plumbing", + "LLVA_plummet", + "LLVA_plush", + "LLVA_plutocracy", + "LLVA_podiatrist", + "LLVA_podiatry", + "LLVA_podium", + "LLVA_poetaster", + "LLVA_poignant", + "LLVA_pointless", + "LLVA_poise", + "LLVA_poised", + "LLVA_polarization", + "LLVA_polarize", + "LLVA_polemic", + "LLVA_polemical", + "LLVA_polished", + "LLVA_politic", + "LLVA_politicize", + "LLVA_pollen", + "LLVA_pollinate", + "LLVA_pollster", + "LLVA_poltroon", + "LLVA_polyandry", + "LLVA_polygamy", + "LLVA_polyglot", + "LLVA_polymath", + "LLVA_pomposity", + "LLVA_pompous", + "LLVA_poncho", + "LLVA_ponderable", + "LLVA_ponderous", + "LLVA_poniard", + "LLVA_pontifical", + "LLVA_pontificate", + "LLVA_populace", + "LLVA_populous", + "LLVA_porcine", + "LLVA_porcupine", + "LLVA_porous", + "LLVA_portend", + "LLVA_portent", + "LLVA_portentous", + "LLVA_portfolio", + "LLVA_portraiture", + "LLVA_poseur", + "LLVA_posit", + "LLVA_positiveness", + "LLVA_posse", + "LLVA_possessed", + "LLVA_poster", + "LLVA_posterior", + "LLVA_posthumous", + "LLVA_posture", + "LLVA_potable", + "LLVA_potation", + "LLVA_potency", + "LLVA_potentate", + "LLVA_potentiate", + "LLVA_potpourri", + "LLVA_potshot", + "LLVA_pottery", + "LLVA_practitioner", + "LLVA_pragmatic", + "LLVA_pragmatism", + "LLVA_prance", + "LLVA_prank", + "LLVA_prate", + "LLVA_prattle", + "LLVA_preamble", + "LLVA_precarious", + "LLVA_precept", + "LLVA_precipice", + "LLVA_precipitant", + "LLVA_precipitate", + "LLVA_precipitation", + "LLVA_precipitous", + "LLVA_preclude", + "LLVA_precocious", + "LLVA_precognition", + "LLVA_preconception", + "LLVA_precursor", + "LLVA_precursory", + "LLVA_predator", + "LLVA_predestine", + "LLVA_predetermined", + "LLVA_predicament", + "LLVA_predilection", + "LLVA_predisposition", + "LLVA_predominate", + "LLVA_preeminent", + "LLVA_preempt", + "LLVA_preen", + "LLVA_prefatory", + "LLVA_prefigure", + "LLVA_prehensile", + "LLVA_prehistoric", + "LLVA_prejudiced", + "LLVA_prejudicial", + "LLVA_prelate", + "LLVA_preliterate", + "LLVA_premeditate", + "LLVA_premeditated", + "LLVA_premiere", + "LLVA_premise", + "LLVA_premonition", + "LLVA_preoccupation", + "LLVA_preoccupied", + "LLVA_preponderance", + "LLVA_preponderate", + "LLVA_prepossessing", + "LLVA_preposterous", + "LLVA_prerequisite", + "LLVA_prerogative", + "LLVA_presage", + "LLVA_prescience", + "LLVA_prescient", + "LLVA_prescript", + "LLVA_presenter", + "LLVA_preservative", + "LLVA_prestidigitation", + "LLVA_prestigious", + "LLVA_presumable", + "LLVA_presumption", + "LLVA_presumptuous", + "LLVA_presupposition", + "LLVA_pretence", + "LLVA_pretension", + "LLVA_preternatural", + "LLVA_pretext", + "LLVA_prevaricate", + "LLVA_prevarication", + "LLVA_preventive", + "LLVA_preview", + "LLVA_prevision", + "LLVA_prickle", + "LLVA_prickly", + "LLVA_primacy", + "LLVA_primate", + "LLVA_primer", + "LLVA_primeval", + "LLVA_primordial", + "LLVA_primp", + "LLVA_pristine", + "LLVA_privation", + "LLVA_probation", + "LLVA_probity", + "LLVA_proboscis", + "LLVA_proclamation", + "LLVA_proclivity", + "LLVA_procrastinate", + "LLVA_procrastination", + "LLVA_procreate", + "LLVA_procrustean", + "LLVA_proctor", + "LLVA_prodigal", + "LLVA_prodigality", + "LLVA_prodigious", + "LLVA_prodigy", + "LLVA_profane", + "LLVA_proffer", + "LLVA_profiteer", + "LLVA_profligacy", + "LLVA_profligate", + "LLVA_profundity", + "LLVA_profuse", + "LLVA_profusion", + "LLVA_progenitor", + "LLVA_progeny", + "LLVA_prognosis", + "LLVA_prognosticate", + "LLVA_projectile", + "LLVA_proliferate", + "LLVA_prolific", + "LLVA_prolix", + "LLVA_prolixity", + "LLVA_prologue", + "LLVA_promenade", + "LLVA_promiscuous", + "LLVA_promulgate", + "LLVA_pronounced", + "LLVA_propensity", + "LLVA_prophecy", + "LLVA_prophetic", + "LLVA_propinquity", + "LLVA_propitiate", + "LLVA_propitiatory", + "LLVA_propitious", + "LLVA_proponent", + "LLVA_propound", + "LLVA_proprietary", + "LLVA_propriety", + "LLVA_propulsion", + "LLVA_prorogue", + "LLVA_prosaic", + "LLVA_proscribe", + "LLVA_proselyte", + "LLVA_proselytize", + "LLVA_proselytizer", + "LLVA_prospective", + "LLVA_prospects", + "LLVA_prosper", + "LLVA_prostrate", + "LLVA_protagonist", + "LLVA_protean", + "LLVA_protract", + "LLVA_protrude", + "LLVA_protuberance", + "LLVA_protuberant", + "LLVA_provenance", + "LLVA_provender", + "LLVA_proverbially", + "LLVA_provident", + "LLVA_providential", + "LLVA_provisory", + "LLVA_provocative", + "LLVA_prowess", + "LLVA_prowl", + "LLVA_proximate", + "LLVA_proximity", + "LLVA_prude", + "LLVA_prudery", + "LLVA_prudish", + "LLVA_prune", + "LLVA_prurient", + "LLVA_psalm", + "LLVA_psephology", + "LLVA_pseudonym", + "LLVA_psyche", + "LLVA_psychiatrist", + "LLVA_psychiatry", + "LLVA_psychoanalysis", + "LLVA_psychopathic", + "LLVA_psychosis", + "LLVA_psychotic", + "LLVA_puberty", + "LLVA_publicize", + "LLVA_pucker", + "LLVA_puckish", + "LLVA_puddle", + "LLVA_puerile", + "LLVA_pugilism", + "LLVA_pugilist", + "LLVA_pugnacious", + "LLVA_puissance", + "LLVA_puissant", + "LLVA_pulchritude", + "LLVA_pullet", + "LLVA_pullulate", + "LLVA_pulpit", + "LLVA_pulsate", + "LLVA_pulsating", + "LLVA_pulverize", + "LLVA_pummel", + "LLVA_punctilious", + "LLVA_puncture", + "LLVA_pundit", + "LLVA_pungency", + "LLVA_pungent", + "LLVA_purblind", + "LLVA_purebred", + "LLVA_purgative", + "LLVA_purgatory", + "LLVA_purge", + "LLVA_purification", + "LLVA_puritanical", + "LLVA_purlieu", + "LLVA_purloin", + "LLVA_purport", + "LLVA_purported", + "LLVA_purposively", + "LLVA_purvey", + "LLVA_pusillanimous", + "LLVA_putative", + "LLVA_putrefy", + "LLVA_putrid", + "LLVA_pygmy", + "LLVA_pylon", + "LLVA_pyromania", + "LLVA_quack", + "LLVA_quadrangle", + "LLVA_quadruped", + "LLVA_quaff", + "LLVA_quagmire", + "LLVA_quail", + "LLVA_quaint", + "LLVA_qualm", + "LLVA_qualms", + "LLVA_quandary", + "LLVA_quantum", + "LLVA_quarantine", + "LLVA_quarry", + "LLVA_quartet", + "LLVA_quash", + "LLVA_quaver", + "LLVA_queasy", + "LLVA_quell", + "LLVA_querulous", + "LLVA_quibble", + "LLVA_quiescence", + "LLVA_quiescent", + "LLVA_quietude", + "LLVA_quill", + "LLVA_quintessence", + "LLVA_quirk", + "LLVA_quisling", + "LLVA_quixotic", + "LLVA_quorum", + "LLVA_quotidian", + "LLVA_rabble", + "LLVA_rabid", + "LLVA_rabies", + "LLVA_raconteur", + "LLVA_radiance", + "LLVA_raffish", + "LLVA_raffle", + "LLVA_rafter", + "LLVA_ragged", + "LLVA_ragtime", + "LLVA_raillery", + "LLVA_raisin", + "LLVA_rakish", + "LLVA_rambunctious", + "LLVA_ramify", + "LLVA_rampage", + "LLVA_rampant", + "LLVA_rampart", + "LLVA_ramshackle", + "LLVA_rancid", + "LLVA_rancor", + "LLVA_rancorous", + "LLVA_randomize", + "LLVA_ranger", + "LLVA_rankle", + "LLVA_ransom", + "LLVA_rapacious", + "LLVA_rapids", + "LLVA_rapport", + "LLVA_rapprochement", + "LLVA_rarefaction", + "LLVA_rarefy", + "LLVA_rarity", + "LLVA_rashness", + "LLVA_raspy", + "LLVA_ratiocination", + "LLVA_rationale", + "LLVA_rationality", + "LLVA_rationalize", + "LLVA_raucous", + "LLVA_ravel", + "LLVA_ravenous", + "LLVA_ravine", + "LLVA_ravish", + "LLVA_ravishing", + "LLVA_rawhide", + "LLVA_reactant", + "LLVA_reactivate", + "LLVA_reaffirm", + "LLVA_reagent", + "LLVA_realign", + "LLVA_realized", + "LLVA_reaper", + "LLVA_reasoning", + "LLVA_reassurance", + "LLVA_reassuring", + "LLVA_rebarbative", + "LLVA_rebellious", + "LLVA_rebuff", + "LLVA_rebus", + "LLVA_rebuttal", + "LLVA_recalcitrant", + "LLVA_recalibration", + "LLVA_recant", + "LLVA_recantation", + "LLVA_recapitulate", + "LLVA_recast", + "LLVA_receptacle", + "LLVA_receptive", + "LLVA_recess", + "LLVA_recessive", + "LLVA_recidivism", + "LLVA_reciprocate", + "LLVA_reciprocating", + "LLVA_reciprocity", + "LLVA_recital", + "LLVA_recline", + "LLVA_recluse", + "LLVA_reclusive", + "LLVA_recoil", + "LLVA_recombine", + "LLVA_reconciliation", + "LLVA_recondite", + "LLVA_reconstitute", + "LLVA_reconstruct", + "LLVA_reconvene", + "LLVA_recount", + "LLVA_recreant", + "LLVA_recriminate", + "LLVA_rectangular", + "LLVA_rectitude", + "LLVA_recumbent", + "LLVA_recuperate", + "LLVA_recycle", + "LLVA_redemption", + "LLVA_redemptive", + "LLVA_redirect", + "LLVA_redistribution", + "LLVA_redolent", + "LLVA_redoubtable", + "LLVA_redress", + "LLVA_redundancy", + "LLVA_redundant", + "LLVA_reenact", + "LLVA_refectory", + "LLVA_reflective", + "LLVA_reformulate", + "LLVA_refraction", + "LLVA_refractory", + "LLVA_refulgent", + "LLVA_refurbish", + "LLVA_refutable", + "LLVA_refutation", + "LLVA_regal", + "LLVA_regale", + "LLVA_regenerate", + "LLVA_regent", + "LLVA_regimen", + "LLVA_regimentation", + "LLVA_regress", + "LLVA_regressive", + "LLVA_rehabilitate", + "LLVA_reincarnate", + "LLVA_reincarnation", + "LLVA_reinstate", + "LLVA_rejoicing", + "LLVA_rejoin", + "LLVA_rejoinder", + "LLVA_rejuvenate", + "LLVA_rekindle", + "LLVA_relapse", + "LLVA_relegate", + "LLVA_relent", + "LLVA_relenting", + "LLVA_relentless", + "LLVA_relevance", + "LLVA_relic", + "LLVA_relieved", + "LLVA_relocate", + "LLVA_remediable", + "LLVA_reminder", + "LLVA_reminisce", + "LLVA_remiss", + "LLVA_remission", + "LLVA_remittent", + "LLVA_remodel", + "LLVA_remonstrate", + "LLVA_remorse", + "LLVA_remunerate", + "LLVA_remunerative", + "LLVA_renascent", + "LLVA_rendering", + "LLVA_rendezvous", + "LLVA_rendition", + "LLVA_renegade", + "LLVA_renege", + "LLVA_renounce", + "LLVA_renovate", + "LLVA_renown", + "LLVA_renowned", + "LLVA_reparable", + "LLVA_reparation", + "LLVA_repartee", + "LLVA_repatriate", + "LLVA_repellent", + "LLVA_repercussion", + "LLVA_repertoire", + "LLVA_repine", + "LLVA_replete", + "LLVA_repletion", + "LLVA_replica", + "LLVA_replicate", + "LLVA_reportorial", + "LLVA_repose", + "LLVA_repository", + "LLVA_repossess", + "LLVA_reprehend", + "LLVA_reprehensible", + "LLVA_repress", + "LLVA_repressed", + "LLVA_reprieve", + "LLVA_reprimand", + "LLVA_reprisal", + "LLVA_reprise", + "LLVA_reprobate", + "LLVA_reproof", + "LLVA_reprove", + "LLVA_reptilian", + "LLVA_repugnance", + "LLVA_repugnant", + "LLVA_repulse", + "LLVA_repulsion", + "LLVA_repulsive", + "LLVA_reputed", + "LLVA_requiem", + "LLVA_requisition", + "LLVA_requital", + "LLVA_requite", + "LLVA_rescission", + "LLVA_rescript", + "LLVA_reserved", + "LLVA_reshuffle", + "LLVA_residue", + "LLVA_resigned", + "LLVA_resilience", + "LLVA_resilient", + "LLVA_resin", + "LLVA_resonant", + "LLVA_resortto", + "LLVA_resound", + "LLVA_resourceful", + "LLVA_respiration", + "LLVA_respiratory", + "LLVA_respite", + "LLVA_resplendent", + "LLVA_respondent", + "LLVA_responsive", + "LLVA_responsiveness", + "LLVA_restate", + "LLVA_restitution", + "LLVA_restive", + "LLVA_restiveness", + "LLVA_restorative", + "LLVA_restored", + "LLVA_restrained", + "LLVA_restricted", + "LLVA_resumption", + "LLVA_resurge", + "LLVA_resurgence", + "LLVA_resurgent", + "LLVA_resurrect", + "LLVA_resuscitate", + "LLVA_retainer", + "LLVA_retaliate", + "LLVA_retaliation", + "LLVA_retard", + "LLVA_retention", + "LLVA_retentive", + "LLVA_reticent", + "LLVA_reticulation", + "LLVA_retinue", + "LLVA_retiring", + "LLVA_retouch", + "LLVA_retrace", + "LLVA_retract", + "LLVA_retractability", + "LLVA_retrench", + "LLVA_retribution", + "LLVA_retributive", + "LLVA_retrieve", + "LLVA_retrograde", + "LLVA_retrogress", + "LLVA_retrospect", + "LLVA_retrospective", + "LLVA_revealing", + "LLVA_revelation", + "LLVA_revelry", + "LLVA_reverberate", + "LLVA_revere", + "LLVA_reverend", + "LLVA_reverent", + "LLVA_reverie", + "LLVA_reversal", + "LLVA_reversion", + "LLVA_revile", + "LLVA_revitalize", + "LLVA_revue", + "LLVA_revulsion", + "LLVA_rhapsody", + "LLVA_rhetoric", + "LLVA_rhinestone", + "LLVA_rhubarb", + "LLVA_rhythmic", + "LLVA_ribald", + "LLVA_rickety", + "LLVA_rider", + "LLVA_ringlet", + "LLVA_risible", + "LLVA_ritual", + "LLVA_riven", + "LLVA_rivet", + "LLVA_riveting", + "LLVA_rivulet", + "LLVA_roadway", + "LLVA_rodent", + "LLVA_roguish", + "LLVA_roister", + "LLVA_rollicking", + "LLVA_rookie", + "LLVA_roost", + "LLVA_roster", + "LLVA_rostrum", + "LLVA_rotund", + "LLVA_roughen", + "LLVA_rowdy", + "LLVA_rubble", + "LLVA_rubicund", + "LLVA_rucksack", + "LLVA_rudder", + "LLVA_ruddy", + "LLVA_rudimentary", + "LLVA_rudiments", + "LLVA_rueful", + "LLVA_ruffian", + "LLVA_ruffle", + "LLVA_rumble", + "LLVA_ruminant", + "LLVA_ruminate", + "LLVA_rumple", + "LLVA_runic", + "LLVA_rupture", + "LLVA_rustic", + "LLVA_rustle", + "LLVA_rustler", + "LLVA_ruthlessness", + "LLVA_sabbatical", + "LLVA_saber", + "LLVA_sabotage", + "LLVA_saboteur", + "LLVA_saccharin", + "LLVA_sacrament", + "LLVA_sacrilege", + "LLVA_sacrilegious", + "LLVA_sacrosanct", + "LLVA_sadden", + "LLVA_sadistic", + "LLVA_safari", + "LLVA_safeguard", + "LLVA_sagacious", + "LLVA_sagacity", + "LLVA_saintly", + "LLVA_salacious", + "LLVA_salient", + "LLVA_saliferous", + "LLVA_saliva", + "LLVA_salubrious", + "LLVA_salutary", + "LLVA_salutation", + "LLVA_salvage", + "LLVA_salvation", + "LLVA_salve", + "LLVA_sampler", + "LLVA_sanatorium", + "LLVA_sanctify", + "LLVA_sanctimonious", + "LLVA_sanction", + "LLVA_sanctuary", + "LLVA_sandal", + "LLVA_sangfroid", + "LLVA_sanguine", + "LLVA_sanitation", + "LLVA_sanity", + "LLVA_sapient", + "LLVA_sapless", + "LLVA_sapling", + "LLVA_sapphire", + "LLVA_sardonic", + "LLVA_sartorial", + "LLVA_satanic", + "LLVA_satiate", + "LLVA_satiated", + "LLVA_satiety", + "LLVA_satiny", + "LLVA_satirical", + "LLVA_satirize", + "LLVA_saturate", + "LLVA_saturated", + "LLVA_saturnine", + "LLVA_saunter", + "LLVA_savanna", + "LLVA_savant", + "LLVA_savor", + "LLVA_savory", + "LLVA_savvy", + "LLVA_sawdust", + "LLVA_scabbard", + "LLVA_scabrous", + "LLVA_scads", + "LLVA_scaffold", + "LLVA_scald", + "LLVA_scalding", + "LLVA_scalpel", + "LLVA_scamper", + "LLVA_scandalous", + "LLVA_scant", + "LLVA_scanty", + "LLVA_scapegoat", + "LLVA_scarp", + "LLVA_scathe", + "LLVA_scathing", + "LLVA_scavenge", + "LLVA_scenario", + "LLVA_scepter", + "LLVA_sceptical", + "LLVA_schematic", + "LLVA_schematize", + "LLVA_schism", + "LLVA_scintilla", + "LLVA_scintillate", + "LLVA_scintillating", + "LLVA_scion", + "LLVA_scissor", + "LLVA_scoop", + "LLVA_scorpion", + "LLVA_scoundrel", + "LLVA_scour", + "LLVA_scourge", + "LLVA_scowl", + "LLVA_scrappy", + "LLVA_scrawl", + "LLVA_screed", + "LLVA_scribble", + "LLVA_scripture", + "LLVA_scroll", + "LLVA_scrumptious", + "LLVA_scruple", + "LLVA_scrupulous", + "LLVA_scrutable", + "LLVA_scrutinize", + "LLVA_scuff", + "LLVA_sculpt", + "LLVA_scurrilous", + "LLVA_scurry", + "LLVA_scurvy", + "LLVA_scuttle", + "LLVA_scythe", + "LLVA_seafaring", + "LLVA_seamstress", + "LLVA_seamy", + "LLVA_seascape", + "LLVA_seasoned", + "LLVA_seasoning", + "LLVA_secede", + "LLVA_seclude", + "LLVA_secluded", + "LLVA_seclusion", + "LLVA_secrete", + "LLVA_secretive", + "LLVA_sectarian", + "LLVA_secular", + "LLVA_securities", + "LLVA_sedate", + "LLVA_sedative", + "LLVA_sedentary", + "LLVA_sediment", + "LLVA_sedition", + "LLVA_seditious", + "LLVA_seduce", + "LLVA_seductive", + "LLVA_sedulity", + "LLVA_sedulous", + "LLVA_seedling", + "LLVA_seedy", + "LLVA_seemly", + "LLVA_seethe", + "LLVA_segregate", + "LLVA_seine", + "LLVA_seismic", + "LLVA_semblance", + "LLVA_seminal", + "LLVA_seminary", + "LLVA_senile", + "LLVA_sensibleness", + "LLVA_sensitization", + "LLVA_sensual", + "LLVA_sententious", + "LLVA_sentient", + "LLVA_sentinel", + "LLVA_sentry", + "LLVA_septic", + "LLVA_sepulchral", + "LLVA_sequacious", + "LLVA_sequential", + "LLVA_sequester", + "LLVA_sequestrate", + "LLVA_seraphic", + "LLVA_serenade", + "LLVA_serendipity", + "LLVA_serial", + "LLVA_seriousness", + "LLVA_sermonize", + "LLVA_serpentine", + "LLVA_serrate", + "LLVA_serrated", + "LLVA_serried", + "LLVA_servile", + "LLVA_servitude", + "LLVA_setback", + "LLVA_settled", + "LLVA_sever", + "LLVA_severity", + "LLVA_sewer", + "LLVA_sextant", + "LLVA_shack", + "LLVA_shackle", + "LLVA_shale", + "LLVA_shambles", + "LLVA_shanty", + "LLVA_shard", + "LLVA_shattered", + "LLVA_shavings", + "LLVA_shawl", + "LLVA_sheaf", + "LLVA_sheath", + "LLVA_sheathe", + "LLVA_sheen", + "LLVA_shelve", + "LLVA_shibboleth", + "LLVA_shiftiness", + "LLVA_shiftless", + "LLVA_shimmer", + "LLVA_shingle", + "LLVA_shipshape", + "LLVA_shipwright", + "LLVA_shirk", + "LLVA_shoal", + "LLVA_shoddy", + "LLVA_shoplift", + "LLVA_shopworn", + "LLVA_showpiece", + "LLVA_showy", + "LLVA_shrew", + "LLVA_shrivel", + "LLVA_shuck", + "LLVA_shudder", + "LLVA_shunt", + "LLVA_sibilant", + "LLVA_sibling", + "LLVA_sibyl", + "LLVA_sidereal", + "LLVA_sideshow", + "LLVA_sidesplitting", + "LLVA_sidestep", + "LLVA_sidle", + "LLVA_signatory", + "LLVA_silversmith", + "LLVA_simian", + "LLVA_simile", + "LLVA_simper", + "LLVA_simpleton", + "LLVA_simulation", + "LLVA_sinecure", + "LLVA_sinew", + "LLVA_sinewy", + "LLVA_singe", + "LLVA_singularity", + "LLVA_sinister", + "LLVA_sinkhole", + "LLVA_sinuous", + "LLVA_sizzler", + "LLVA_skein", + "LLVA_skeptic", + "LLVA_skeptical", + "LLVA_skepticism", + "LLVA_sketchy", + "LLVA_skewer", + "LLVA_skiff", + "LLVA_skillet", + "LLVA_skimp", + "LLVA_skimpy", + "LLVA_skinflint", + "LLVA_skittish", + "LLVA_skulduggery", + "LLVA_skunk", + "LLVA_slacken", + "LLVA_slake", + "LLVA_slanderous", + "LLVA_slant", + "LLVA_slapdash", + "LLVA_slate", + "LLVA_slaver", + "LLVA_sleazy", + "LLVA_sledge", + "LLVA_sledgehammer", + "LLVA_sleigh", + "LLVA_sleight", + "LLVA_slick", + "LLVA_sling", + "LLVA_slippage", + "LLVA_slipshod", + "LLVA_slither", + "LLVA_sliver", + "LLVA_slobber", + "LLVA_sloppy", + "LLVA_sloth", + "LLVA_slouch", + "LLVA_slough", + "LLVA_sloven", + "LLVA_slovenly", + "LLVA_sluggard", + "LLVA_sluggish", + "LLVA_sluice", + "LLVA_slurp", + "LLVA_smarmy", + "LLVA_smattering", + "LLVA_smear", + "LLVA_smelt", + "LLVA_smirch", + "LLVA_smirk", + "LLVA_smolder", + "LLVA_smother", + "LLVA_smudge", + "LLVA_snappish", + "LLVA_snappy", + "LLVA_snare", + "LLVA_snarl", + "LLVA_sneaking", + "LLVA_snicker", + "LLVA_snide", + "LLVA_snitch", + "LLVA_snowdrift", + "LLVA_snuggle", + "LLVA_sobriety", + "LLVA_sodden", + "LLVA_soggy", + "LLVA_sojourn", + "LLVA_solace", + "LLVA_solder", + "LLVA_solecism", + "LLVA_solemnity", + "LLVA_solicit", + "LLVA_solicitous", + "LLVA_solicitude", + "LLVA_solidify", + "LLVA_soliloquy", + "LLVA_soluble", + "LLVA_somatic", + "LLVA_somber", + "LLVA_somnolent", + "LLVA_sonata", + "LLVA_sonorous", + "LLVA_sophism", + "LLVA_sophistry", + "LLVA_sophomoric", + "LLVA_soporific", + "LLVA_sopping", + "LLVA_soprano", + "LLVA_sorcery", + "LLVA_sordid", + "LLVA_souse", + "LLVA_spackle", + "LLVA_spangle", + "LLVA_spank", + "LLVA_sparing", + "LLVA_sparring", + "LLVA_sparse", + "LLVA_spartan", + "LLVA_spasm", + "LLVA_spasmodic", + "LLVA_spate", + "LLVA_spatula", + "LLVA_spawn", + "LLVA_specifics", + "LLVA_specious", + "LLVA_speck", + "LLVA_specter", + "LLVA_spectral", + "LLVA_speculative", + "LLVA_speleology", + "LLVA_spelunker", + "LLVA_spendthrift", + "LLVA_spike", + "LLVA_spindly", + "LLVA_spineless", + "LLVA_spinster", + "LLVA_spiny", + "LLVA_spire", + "LLVA_splashy", + "LLVA_spleen", + "LLVA_spleenish", + "LLVA_splendor", + "LLVA_splice", + "LLVA_splint", + "LLVA_splinter", + "LLVA_splurge", + "LLVA_spoke", + "LLVA_spongy", + "LLVA_spontaneity", + "LLVA_spoof", + "LLVA_spool", + "LLVA_spoor", + "LLVA_sporadic", + "LLVA_spore", + "LLVA_spout", + "LLVA_sprawl", + "LLVA_sprawling", + "LLVA_sprig", + "LLVA_sprightly", + "LLVA_sprinkler", + "LLVA_sprinkling", + "LLVA_sprint", + "LLVA_sprocket", + "LLVA_spruce", + "LLVA_spunk", + "LLVA_spurious", + "LLVA_spurn", + "LLVA_squabble", + "LLVA_squalid", + "LLVA_squall", + "LLVA_squalor", + "LLVA_squander", + "LLVA_squeamish", + "LLVA_squelch", + "LLVA_squint", + "LLVA_stabilize", + "LLVA_staccato", + "LLVA_staggering", + "LLVA_stagnant", + "LLVA_stagy", + "LLVA_staid", + "LLVA_stalemate", + "LLVA_stalwart", + "LLVA_stamina", + "LLVA_stance", + "LLVA_stanch", + "LLVA_stanza", + "LLVA_starchy", + "LLVA_stark", + "LLVA_stash", + "LLVA_stasis", + "LLVA_statuary", + "LLVA_statuette", + "LLVA_stature", + "LLVA_statutory", + "LLVA_steadfast", + "LLVA_stealth", + "LLVA_steeple", + "LLVA_stellar", + "LLVA_stench", + "LLVA_stenography", + "LLVA_stentorian", + "LLVA_stereotype", + "LLVA_sterile", + "LLVA_sterilize", + "LLVA_stethoscope", + "LLVA_stickler", + "LLVA_stifle", + "LLVA_stigma", + "LLVA_stigmatize", + "LLVA_stiletto", + "LLVA_stilted", + "LLVA_stimulant", + "LLVA_stimulus", + "LLVA_stinginess", + "LLVA_stingy", + "LLVA_stint", + "LLVA_stipend", + "LLVA_stipple", + "LLVA_stockade", + "LLVA_stocky", + "LLVA_stodgy", + "LLVA_stoic", + "LLVA_stoke", + "LLVA_stolid", + "LLVA_stonewall", + "LLVA_stouthearted", + "LLVA_stowaway", + "LLVA_straightforwardness", + "LLVA_straits", + "LLVA_stranded", + "LLVA_strangulation", + "LLVA_stratagem", + "LLVA_stratify", + "LLVA_stratosphere", + "LLVA_stratum", + "LLVA_strenuous", + "LLVA_stressful", + "LLVA_strew", + "LLVA_striate", + "LLVA_striated", + "LLVA_stricture", + "LLVA_strident", + "LLVA_stringent", + "LLVA_stripling", + "LLVA_strut", + "LLVA_studied", + "LLVA_stultify", + "LLVA_stunning", + "LLVA_stunt", + "LLVA_stupefy", + "LLVA_stupendous", + "LLVA_stupor", + "LLVA_stutter", + "LLVA_stygian", + "LLVA_stylus", + "LLVA_stymie", + "LLVA_subdued", + "LLVA_subjection", + "LLVA_subjugate", + "LLVA_sublimate", + "LLVA_sublime", + "LLVA_subliminal", + "LLVA_submission", + "LLVA_submissive", + "LLVA_suborn", + "LLVA_subpoena", + "LLVA_subservient", + "LLVA_subside", + "LLVA_subsidize", + "LLVA_subsidy", + "LLVA_subsist", + "LLVA_subsistence", + "LLVA_substantive", + "LLVA_substratum", + "LLVA_subsume", + "LLVA_subterfuge", + "LLVA_subterranean", + "LLVA_subtlety", + "LLVA_subvention", + "LLVA_subversive", + "LLVA_subvert", + "LLVA_successively", + "LLVA_succinct", + "LLVA_succinctness", + "LLVA_succor", + "LLVA_succulent", + "LLVA_succumb", + "LLVA_suede", + "LLVA_suffocate", + "LLVA_suffrage", + "LLVA_suffragist", + "LLVA_suffuse", + "LLVA_suggestible", + "LLVA_suggestive", + "LLVA_sulky", + "LLVA_sully", + "LLVA_summarily", + "LLVA_summation", + "LLVA_sumptuous", + "LLVA_sunder", + "LLVA_sundry", + "LLVA_superannuated", + "LLVA_supercilious", + "LLVA_superciliousness", + "LLVA_superficiality", + "LLVA_superfluity", + "LLVA_superfluous", + "LLVA_superimpose", + "LLVA_superintend", + "LLVA_superlative", + "LLVA_supernatural", + "LLVA_supernova", + "LLVA_superstructure", + "LLVA_supine", + "LLVA_supplant", + "LLVA_supple", + "LLVA_suppliant", + "LLVA_supplicant", + "LLVA_supplicate", + "LLVA_supposition", + "LLVA_supremacy", + "LLVA_surfeit", + "LLVA_surly", + "LLVA_surmount", + "LLVA_surrealism", + "LLVA_surreptitious", + "LLVA_surrogate", + "LLVA_surveillance", + "LLVA_susceptibility", + "LLVA_susceptible", + "LLVA_suspended", + "LLVA_sustained", + "LLVA_sustenance", + "LLVA_suture", + "LLVA_svelte", + "LLVA_swagger", + "LLVA_swank", + "LLVA_swarthy", + "LLVA_sweltering", + "LLVA_swerve", + "LLVA_swill", + "LLVA_swindle", + "LLVA_swine", + "LLVA_swipe", + "LLVA_swirl", + "LLVA_sybarite", + "LLVA_sybaritic", + "LLVA_sycophant", + "LLVA_syllabus", + "LLVA_syllogism", + "LLVA_symbiosis", + "LLVA_synchronize", + "LLVA_synchronous", + "LLVA_syncopate", + "LLVA_syndrome", + "LLVA_synergic", + "LLVA_synonymous", + "LLVA_synopsis", + "LLVA_synoptic", + "LLVA_syringe", + "LLVA_systematize", + "LLVA_tablecloth", + "LLVA_tableland", + "LLVA_taboo", + "LLVA_tachometer", + "LLVA_tacit", + "LLVA_taciturn", + "LLVA_taciturnity", + "LLVA_tackiness", + "LLVA_tactic", + "LLVA_tactile", + "LLVA_tactless", + "LLVA_tadpole", + "LLVA_taint", + "LLVA_tainted", + "LLVA_taking", + "LLVA_talisman", + "LLVA_talon", + "LLVA_tambourine", + "LLVA_tamper", + "LLVA_tangent", + "LLVA_tangential", + "LLVA_tangible", + "LLVA_tango", + "LLVA_tangy", + "LLVA_tanner", + "LLVA_tantalize", + "LLVA_tantamount", + "LLVA_tantrum", + "LLVA_taper", + "LLVA_tapestry", + "LLVA_tardy", + "LLVA_tarnish", + "LLVA_tarpaulin", + "LLVA_tarry", + "LLVA_tassel", + "LLVA_tasty", + "LLVA_tattered", + "LLVA_tatty", + "LLVA_taunt", + "LLVA_tauten", + "LLVA_tautological", + "LLVA_tawdry", + "LLVA_taxing", + "LLVA_taxonomist", + "LLVA_taxonomy", + "LLVA_technocrat", + "LLVA_tedium", + "LLVA_teeter", + "LLVA_teetotal", + "LLVA_teetotaler", + "LLVA_teetotalism", + "LLVA_telling", + "LLVA_temerity", + "LLVA_temperamental", + "LLVA_temperance", + "LLVA_temperate", + "LLVA_temperately", + "LLVA_tempest", + "LLVA_tempestuous", + "LLVA_tempo", + "LLVA_temporal", + "LLVA_temporize", + "LLVA_tenable", + "LLVA_tenacious", + "LLVA_tenacity", + "LLVA_tendentious", + "LLVA_tenet", + "LLVA_tensile", + "LLVA_tenuous", + "LLVA_tenure", + "LLVA_tepid", + "LLVA_terminus", + "LLVA_termite", + "LLVA_terpsichorean", + "LLVA_terrain", + "LLVA_terrapin", + "LLVA_terrestrial", + "LLVA_terse", + "LLVA_testament", + "LLVA_testator", + "LLVA_testimonial", + "LLVA_testiness", + "LLVA_testy", + "LLVA_tether", + "LLVA_texture", + "LLVA_thatch", + "LLVA_theism", + "LLVA_thematic", + "LLVA_theocracy", + "LLVA_theologian", + "LLVA_theology", + "LLVA_therapeutic", + "LLVA_therapy", + "LLVA_thermal", + "LLVA_thespian", + "LLVA_thicket", + "LLVA_thrall", + "LLVA_threadbare", + "LLVA_thresh", + "LLVA_throes", + "LLVA_throttle", + "LLVA_throwback", + "LLVA_thwart", + "LLVA_tickler", + "LLVA_ticklish", + "LLVA_tightfisted", + "LLVA_timbre", + "LLVA_timidity", + "LLVA_timorous", + "LLVA_tinder", + "LLVA_tined", + "LLVA_tinge", + "LLVA_tinker", + "LLVA_tipple", + "LLVA_tirade", + "LLVA_titanic", + "LLVA_titillate", + "LLVA_titular", + "LLVA_toady", + "LLVA_tongs", + "LLVA_tonic", + "LLVA_tonsorial", + "LLVA_topmost", + "LLVA_topography", + "LLVA_topple", + "LLVA_topsoil", + "LLVA_tornado", + "LLVA_torpid", + "LLVA_torpor", + "LLVA_torque", + "LLVA_torrential", + "LLVA_torrid", + "LLVA_torridness", + "LLVA_torso", + "LLVA_tortuous", + "LLVA_totalitarian", + "LLVA_totem", + "LLVA_totter", + "LLVA_touching", + "LLVA_touchstone", + "LLVA_touchy", + "LLVA_toupee", + "LLVA_tournament", + "LLVA_tourniquet", + "LLVA_tousle", + "LLVA_towering", + "LLVA_toxic", + "LLVA_toxin", + "LLVA_traceable", + "LLVA_tract", + "LLVA_tractability", + "LLVA_tractable", + "LLVA_traction", + "LLVA_traduce", + "LLVA_tragedian", + "LLVA_tragedienne", + "LLVA_trait", + "LLVA_trajectory", + "LLVA_trammel", + "LLVA_trance", + "LLVA_tranquility", + "LLVA_tranquilizer", + "LLVA_transcend", + "LLVA_transcendent", + "LLVA_transcendental", + "LLVA_transcribe", + "LLVA_transfigure", + "LLVA_transfuse", + "LLVA_transgress", + "LLVA_transgression", + "LLVA_transience", + "LLVA_transient", + "LLVA_transitory", + "LLVA_translucent", + "LLVA_transmute", + "LLVA_transplantation", + "LLVA_transpose", + "LLVA_trapeze", + "LLVA_trauma", + "LLVA_traumatic", + "LLVA_travail", + "LLVA_travelogue", + "LLVA_travesty", + "LLVA_trawl", + "LLVA_treacherous", + "LLVA_treacherousness", + "LLVA_treachery", + "LLVA_treatise", + "LLVA_tremor", + "LLVA_tremulous", + "LLVA_trenchant", + "LLVA_trepidation", + "LLVA_trespass", + "LLVA_tresses", + "LLVA_tribulation", + "LLVA_tribunal", + "LLVA_tributary", + "LLVA_trickery", + "LLVA_trickster", + "LLVA_trident", + "LLVA_trifling", + "LLVA_trilogy", + "LLVA_trinket", + "LLVA_tripod", + "LLVA_trite", + "LLVA_trivia", + "LLVA_trophy", + "LLVA_troth", + "LLVA_troupe", + "LLVA_trowel", + "LLVA_truancy", + "LLVA_truce", + "LLVA_truculence", + "LLVA_truculent", + "LLVA_trudge", + "LLVA_truism", + "LLVA_trumpery", + "LLVA_truncate", + "LLVA_truncated", + "LLVA_truss", + "LLVA_trustworthy", + "LLVA_truthfulness", + "LLVA_tuber", + "LLVA_tugboat", + "LLVA_tumbler", + "LLVA_tumid", + "LLVA_tundra", + "LLVA_turbid", + "LLVA_turbulence", + "LLVA_turgid", + "LLVA_turmoil", + "LLVA_turncoat", + "LLVA_turpitude", + "LLVA_turquoise", + "LLVA_turret", + "LLVA_tussle", + "LLVA_tutelage", + "LLVA_tuxedo", + "LLVA_twaddle", + "LLVA_twinge", + "LLVA_tycoon", + "LLVA_typographical", + "LLVA_ubiquitous", + "LLVA_ulcerate", + "LLVA_ulterior", + "LLVA_ultramundane", + "LLVA_umbrage", + "LLVA_umpire", + "LLVA_unabashed", + "LLVA_unadorned", + "LLVA_unadulterated", + "LLVA_unadvised", + "LLVA_unaffected", + "LLVA_unalloyed", + "LLVA_unalterable", + "LLVA_unambiguous", + "LLVA_unanimity", + "LLVA_unanticipated", + "LLVA_unapologetic", + "LLVA_unarticulated", + "LLVA_unascertained", + "LLVA_unassailable", + "LLVA_unassuming", + "LLVA_unavailable", + "LLVA_unavailing", + "LLVA_unaware", + "LLVA_unbecoming", + "LLVA_unbend", + "LLVA_unbiased", + "LLVA_unbidden", + "LLVA_unblemished", + "LLVA_unbridled", + "LLVA_uncanny", + "LLVA_unchangeable", + "LLVA_uncharitableness", + "LLVA_uncharted", + "LLVA_unchecked", + "LLVA_uncommitted", + "LLVA_uncommunicative", + "LLVA_unconcern", + "LLVA_unconscionable", + "LLVA_unconventional", + "LLVA_unconventionality", + "LLVA_unconvincing", + "LLVA_uncouth", + "LLVA_unctuous", + "LLVA_undaunted", + "LLVA_undefined", + "LLVA_undemanding", + "LLVA_undeniable", + "LLVA_underbid", + "LLVA_undercut", + "LLVA_underdog", + "LLVA_underestimated", + "LLVA_undergird", + "LLVA_underhanded", + "LLVA_underling", + "LLVA_underplay", + "LLVA_underrate", + "LLVA_understate", + "LLVA_understated", + "LLVA_understatement", + "LLVA_understudy", + "LLVA_underutilized", + "LLVA_underwrite", + "LLVA_undeserved", + "LLVA_undesirable", + "LLVA_undirected", + "LLVA_undisciplined", + "LLVA_undistinguished", + "LLVA_undrinkable", + "LLVA_undulate", + "LLVA_unearth", + "LLVA_unearthly", + "LLVA_unencumbered", + "LLVA_unenlightened", + "LLVA_unequivocal", + "LLVA_unexceptionable", + "LLVA_unfailing", + "LLVA_unfasten", + "LLVA_unfathomed", + "LLVA_unfeigned", + "LLVA_unfettered", + "LLVA_unflappable", + "LLVA_unfounded", + "LLVA_ungainly", + "LLVA_ungrudging", + "LLVA_unguarded", + "LLVA_unguent", + "LLVA_unicorn", + "LLVA_unidentified", + "LLVA_unidimensional", + "LLVA_unification", + "LLVA_uniformity", + "LLVA_unify", + "LLVA_unilateral", + "LLVA_unimpassioned", + "LLVA_unimpeachable", + "LLVA_unimpressive", + "LLVA_uninhabitable", + "LLVA_uninitiated", + "LLVA_unison", + "LLVA_univocal", + "LLVA_unjustifiable", + "LLVA_unjustified", + "LLVA_unjustly", + "LLVA_unkempt", + "LLVA_unleash", + "LLVA_unlettered", + "LLVA_unmitigated", + "LLVA_unmoved", + "LLVA_unnoticed", + "LLVA_unobjectionable", + "LLVA_unobservable", + "LLVA_unobstructed", + "LLVA_unobtrusive", + "LLVA_unorthodoxy", + "LLVA_unpalatable", + "LLVA_unpredictable", + "LLVA_unpremeditated", + "LLVA_unprepossessing", + "LLVA_unpretentious", + "LLVA_unprincipled", + "LLVA_unproductive", + "LLVA_unprovoked", + "LLVA_unqualified", + "LLVA_unravel", + "LLVA_unregenerate", + "LLVA_unregulated", + "LLVA_unremitting", + "LLVA_unrepentant", + "LLVA_unrepressed", + "LLVA_unrequited", + "LLVA_unreserved", + "LLVA_unresponsive", + "LLVA_unrestrained", + "LLVA_unruly", + "LLVA_unscathed", + "LLVA_unscented", + "LLVA_unschooled", + "LLVA_unscrupulous", + "LLVA_unscrupulousness", + "LLVA_unseemly", + "LLVA_unsettle", + "LLVA_unsettling", + "LLVA_unsophisticated", + "LLVA_unsound", + "LLVA_unspoiled", + "LLVA_unspotted", + "LLVA_unstinting", + "LLVA_unsubstantiated", + "LLVA_untapped", + "LLVA_untenable", + "LLVA_unthreatening", + "LLVA_untimely", + "LLVA_untold", + "LLVA_untoward", + "LLVA_untutored", + "LLVA_unversed", + "LLVA_unwieldy", + "LLVA_unwind", + "LLVA_unwise", + "LLVA_unwitting", + "LLVA_unwonted", + "LLVA_unworldly", + "LLVA_unyielding", + "LLVA_upbraid", + "LLVA_upfront", + "LLVA_upgrade", + "LLVA_upheaval", + "LLVA_upholstery", + "LLVA_uproarious", + "LLVA_upstage", + "LLVA_upstart", + "LLVA_upsurge", + "LLVA_upswing", + "LLVA_uptight", + "LLVA_urbane", + "LLVA_urchin", + "LLVA_ursine", + "LLVA_usher", + "LLVA_usurp", + "LLVA_usury", + "LLVA_utilitarian", + "LLVA_utopia", + "LLVA_utopian", + "LLVA_uxorious", + "LLVA_vaccine", + "LLVA_vacillate", + "LLVA_vacillation", + "LLVA_vacuous", + "LLVA_vagabond", + "LLVA_vagary", + "LLVA_vagrancy", + "LLVA_vagrant", + "LLVA_vainglorious", + "LLVA_valediction", + "LLVA_valedictory", + "LLVA_valetudinarian", + "LLVA_valiant", + "LLVA_validate", + "LLVA_valor", + "LLVA_valorous", + "LLVA_vampire", + "LLVA_vandalism", + "LLVA_vandalize", + "LLVA_vanguard", + "LLVA_vanilla", + "LLVA_vanquish", + "LLVA_vantage", + "LLVA_vapid", + "LLVA_vaporization", + "LLVA_vaporize", + "LLVA_vaporous", + "LLVA_variability", + "LLVA_variegate", + "LLVA_variegated", + "LLVA_variegation", + "LLVA_vascular", + "LLVA_vaudeville", + "LLVA_vaunt", + "LLVA_vaunting", + "LLVA_vegetate", + "LLVA_vegetation", + "LLVA_vehement", + "LLVA_venal", + "LLVA_vendetta", + "LLVA_vendor", + "LLVA_veneer", + "LLVA_venerable", + "LLVA_venerate", + "LLVA_veneration", + "LLVA_vengeful", + "LLVA_venial", + "LLVA_venison", + "LLVA_venom", + "LLVA_ventral", + "LLVA_ventriloquist", + "LLVA_venturesome", + "LLVA_veracious", + "LLVA_veracity", + "LLVA_verbatim", + "LLVA_verbiage", + "LLVA_verbose", + "LLVA_verbosity", + "LLVA_verdant", + "LLVA_verdict", + "LLVA_verdigris", + "LLVA_verified", + "LLVA_verisimilar", + "LLVA_verisimilitude", + "LLVA_veritable", + "LLVA_vermin", + "LLVA_vernacular", + "LLVA_vernal", + "LLVA_versed", + "LLVA_versemonger", + "LLVA_vertebrate", + "LLVA_vertex", + "LLVA_vertiginous", + "LLVA_vertigo", + "LLVA_verve", + "LLVA_vestige", + "LLVA_vestigial", + "LLVA_vestment", + "LLVA_vesture", + "LLVA_veterinary", + "LLVA_vexation", + "LLVA_viability", + "LLVA_viable", + "LLVA_viaduct", + "LLVA_viands", + "LLVA_vibrancy", + "LLVA_vibrant", + "LLVA_vicar", + "LLVA_vicarious", + "LLVA_vicissitudes", + "LLVA_vicissitudinous", + "LLVA_victimize", + "LLVA_victor", + "LLVA_vigilance", + "LLVA_vigilant", + "LLVA_vignette", + "LLVA_vigorously", + "LLVA_vilify", + "LLVA_villainous", + "LLVA_vindicate", + "LLVA_vindication", + "LLVA_vindictive", + "LLVA_vinegared", + "LLVA_vintner", + "LLVA_vinyl", + "LLVA_viola", + "LLVA_viral", + "LLVA_virile", + "LLVA_virility", + "LLVA_virtuosity", + "LLVA_virtuoso", + "LLVA_virtuous", + "LLVA_virulent", + "LLVA_visage", + "LLVA_viscid", + "LLVA_viscosity", + "LLVA_visionary", + "LLVA_vista", + "LLVA_vitality", + "LLVA_vitalize", + "LLVA_vitiate", + "LLVA_vitreous", + "LLVA_vitrify", + "LLVA_vitriolic", + "LLVA_vituperate", + "LLVA_vituperative", + "LLVA_vivacious", + "LLVA_vocal", + "LLVA_vocalist", + "LLVA_vociferous", + "LLVA_volatile", + "LLVA_volition", + "LLVA_volubility", + "LLVA_voluble", + "LLVA_voluminous", + "LLVA_voluptuous", + "LLVA_voracious", + "LLVA_voracity", + "LLVA_vortex", + "LLVA_votary", + "LLVA_voyeur", + "LLVA_vulpine", + "LLVA_vulture", + "LLVA_vying", + "LLVA_waddle", + "LLVA_waffle", + "LLVA_waggish", + "LLVA_wallop", + "LLVA_wallow", + "LLVA_walrus", + "LLVA_wanderlust", + "LLVA_wangle", + "LLVA_wanton", + "LLVA_warble", + "LLVA_warden", + "LLVA_warmonger", + "LLVA_waspish", + "LLVA_wasteland", + "LLVA_wastrel", + "LLVA_watershed", + "LLVA_waylay", + "LLVA_wearisome", + "LLVA_weasel", + "LLVA_weird", + "LLVA_welsh", + "LLVA_welter", + "LLVA_wheedle", + "LLVA_whelm", + "LLVA_whelp", + "LLVA_whetstone", + "LLVA_whiff", + "LLVA_whimsical", + "LLVA_whimsy", + "LLVA_whine", + "LLVA_whirlpool", + "LLVA_whittle", + "LLVA_wholesomeness", + "LLVA_wiggle", + "LLVA_willful", + "LLVA_willowy", + "LLVA_wince", + "LLVA_windbag", + "LLVA_windfall", + "LLVA_winnow", + "LLVA_winsome", + "LLVA_wistful", + "LLVA_withdrawn", + "LLVA_witticism", + "LLVA_wizardry", + "LLVA_wizened", + "LLVA_wobble", + "LLVA_woeful", + "LLVA_woodcut", + "LLVA_woodcutter", + "LLVA_woodpile", + "LLVA_wordsmith", + "LLVA_worldly", + "LLVA_wraith", + "LLVA_wrangle", + "LLVA_wrangler", + "LLVA_wreak", + "LLVA_wreathe", + "LLVA_wreckage", + "LLVA_wrongdoing", + "LLVA_wrongheaded", + "LLVA_wrought", + "LLVA_xenophobe", + "LLVA_xenophobia", + "LLVA_xerophyte", + "LLVA_yeoman", + "LLVA_yielding", + "LLVA_yokel", + "LLVA_zealot", + "LLVA_zealotry", + "LLVA_zenith", + "LLVA_zephyr", + "LLVA_zigzag" +] diff --git a/HX/README.md b/HX/README.md new file mode 100644 index 0000000..69713ca --- /dev/null +++ b/HX/README.md @@ -0,0 +1,118 @@ +# iosMixTools +ios混淆脚本工具,主要用于游戏类。顺便安利一波: [IOS马甲包混淆](https://blog.csdn.net/lyzz0612/article/details/80390362) +有任何问题和建议欢迎联系: email: lyzz0612@qq.com + +## Updated +这些工具用完目前还是2.1被拒, 4.3的可以尝试下;第三方加固工具试用版也被拒,目前在打算先用小游戏过审。 + +资源混淆感觉应该够了,但还是被4.3。这边用的游戏引擎代码基本没动,准备对它动刀了 + +* 定义宏加到代码不同地方,根据行号不同插入不同代码,可引入第三方库 + ``` + #define MIX_FUNC_1 {SOME CODE} + #define MIX_FUNC(__LINE__) MIX_FUNC_##__LINE__ + ``` + +* 改写原有宏实现,如cocos引擎的CCASSERT,CCLOG +* 替换字符串,改为解密加密字符串 + +### Updated 2019/01/17 +刚用小游戏提审过了,主要改地方是 +1. 没加垃圾资源,但是把所有资源打成加密zip包+xor加密,启动时再解压执行。这样苹果机审应该不可能扫出重复资源来 +2. 换iOS类名、函数名。原来只是加了垃圾函数,类名也只是加前缀,这次全换了完全不同的名字 +3. 换机器打包、提审。本来公司就几台打包机器,提了很多次估计被标记了,一提就封号……这次是自己的电脑打包和提审的 +4. 去掉热更联网检查,改为固定时间判断。原来是启动会检查更新,虽然提示是改成正在加载资源了,但有可能检测到网络数据了。这次直接固定提审1个月开放热更 + +### Updated +发现新的混淆工具[https://github.com/zfjsyqk/ZFJObsLib](https://github.com/zfjsyqk/ZFJObsLib),看描述功能很齐全,待试用。 + +## 使用说明 + +### 1. addNative.py 生成oc垃圾代码工具 +此脚本会扫描指定目录,给OC文件添加垃圾函数,同时创建垃圾文件到/trash目录。 +#### 参数说明 + +* ` --oc_folder OC_FOLDER` OC_FOLDER为OC代码所在目录 +* `--replace`替换OC_FOLDER下的原文件,同时原代码会备份到脚本目录下的backup_ios目录。不指定此项垃圾代码只会放到脚本目录下的target_ios/ + +addNative.py里还有一些配置可以看需求手动修改,如生成垃圾文件的数量,垃圾函数的数量,忽略文件列表等,具体请查看代码顶部相关注释 + +### 2. renameNative.py 修改类名前缀工具 +类名是引用可能较为复杂的东西,工具批量替换的限制要求会比较多。如果你的项目满足以下条件,那么这个工具会比较适合你: + +* 大部分类名都带相同的前缀,也只准备替换前缀; +* 大部分类都只在一个大文件夹下,它们之间相互引用,外部调用的情况较少并且你能很有把握的排除或手动替换它们; +* 类名和文件名一致; + +本工具的流程是扫描指定文件夹,找到名称(或者说类名,工具假设两者是一致的)以指定前缀开始的文件;修改替换文件名前缀;并再次遍历此文件夹所有文件,将文件内容中的所有该名称也替换掉;替换xx.xcodeproj/project.pbxproj下的路径,省去在Xcode中手动添加文件(因为文件名修改了,不替换的话Xcode上还保持原来的名称会提示找不到文件);同时为了防止文件夹名称跟文件名相同而导致替换project.pbxproj时将目录名也替换掉的情况,对文件夹名称也进行相同的流程。 + +#### 参数说明: + +* `--add_prefix PREFIX` 添加类名前缀,有此项old_prefix和new_prefix将不起作用,此项请提前在renameNative.py文件中ignore_path_text添加不需要前缀的文件或路径 +* `--old_prefix OLD_PREFIX` 替换前的类名前缀 +* `--new_prefix NEW_PREFIX` 替换后的类名前缀 +* `--ios_path IOS_PATH` OC文件目录 +* `--proj_path PROJ_PATH ` xx.xcodeproj路径 + +运行示例: +`python renameNative.py --add_prefix ANDROID --ios_path xx/xx/xx/ --proj_path xx/xx/xx.xcodeproj` +`python renameNative.py --old_prefix ANDROID --new_prefix IOS --ios_path xx/xx/xx/ --proj_path xx/xx/xx.xcodeproj` + + +### 3. autoBornCode.py 添加lua和png,修改资源文件MD5 +此脚本会扫描指定文件夹,在路径包含/res的目录创建png, 其他地方创建lua。根据目录下的文件和文件夹数随机添加文件和子文件夹,创建数量是根据目录下原有文件和文件夹的数量随机。然后会给大部分类型资源文件添加一些无效内容来改变其MD5。 + +#### 参数说明 + +* `--res RESOURCE_DIR` 资源目录 +* `--target TARGET_FOLDER` 可选参数,修改后的资源存放目录。不设置为脚本目录下的target_resource + +在代码的最前面有个匹配规则, path_exclude表示必须是不包含该字符串的路径才能创建该类型文件,path_include表示必须是包含该字符串的路径才要创建该类型文件 +``` +match_rule = { + ".png": { + "path_include": os.path.sep + "res", + }, + ".lua": { + # "path_include": "src", + "path_exclude": os.path.sep + "res", + }, +} +``` + +**TODO**音效文件修改MD5值 + + +### 4. iOS加固插件 +[五款iOS加固产品测试与点评](http://telecom.chinabyte.com/300/14570300.shtml) + +[加固产品比较](https://www.codercto.com/a/28193.html) + +1. Obfuscator-LLVM + +[Obfuscator-LLVM在iOS中的实践](https://www.jianshu.com/p/a631b5584de6) +[obfuscator-llvm Github Installation](https://github.com/obfuscator-llvm/obfuscator/wiki/Installation) +配置了一下,编译了好长时间发现支持的clang版本只到4.0,很多issue都没人管了,而且不支持字符串混淆,优点是开源,有空可以自己折腾一下 + +2. 网易的试用需要审核 + +[网易易盾](http://dun.163.com/product/ios-reinforce) + +3. 顶象的试用插件有大概半个月的期限,~~只支持30%的加固,不过对我们提审的来说应该够了~~ 经试验试用版提审会被2.3.1拒绝,提示用了代码混淆 + +[顶象](https://www.dingxiang-inc.com/business/ios) +[顶象文档](https://cdn.dingxiang-inc.com/public-service/docs/compiler-ios/) + + +4. 几维安全、360都是在线加固的 + +[几维安全静态库](https://www.kiwisec.com/product/app-encrypt.html) +[加固保iOS](http://jiagu.360.cn/#/app/android) + + + + + + + + diff --git a/HX/addNativeCode.py b/HX/addNativeCode.py new file mode 100644 index 0000000..2c9b049 --- /dev/null +++ b/HX/addNativeCode.py @@ -0,0 +1,240 @@ +# -*- coding: UTF-8 -*- +# 添加OC垃圾代码 +import os,sys +import random +import string +import re +#import md5 +import time +import json +import shutil +import hashlib +import time +import argparse + + +import sys + +#sys.setdefaultencoding("utf-8") + +script_path = os.path.split(os.path.realpath(sys.argv[0]))[0] +#垃圾代码临时存放目录 +target_ios_folder = os.path.join(script_path, "./target_ios") +#备份目录 +backup_ios_folder = os.path.join(script_path, "./backup_ios") + +#忽略文件列表,不给这些文件添加垃圾函数 +ignore_file_list = ["main.m", "GNative.mm", "MobClickCpp.mm"] +#忽略文件夹列表,不处理这些文件夹下的文件 +ignore_folder_list = ["thirdparty","Support",".svn","paycenter","UMMobClick.framework","UMessage_Sdk_1.5.0a","TencentOpenApi_IOS_Bundle.bundle", + "TencentOpenAPI.framework","Bugly.framework","AlipaySDK.framework","AlipaySDK.bundle"] + +#创建函数数量范围 +create_func_min = 2 +create_func_max = 10 + +#创建垃圾文件数量范围 +create_file_min = 10 +create_file_max = 100 + +#oc代码目录 +ios_src_path = "" + +#确保添加的函数不重名 +funcname_set = set() + +#单词列表,用以随机名称 +with open(os.path.join(script_path, "./word_list.json"), "r") as fileObj: + word_name_list = json.load(fileObj) + +#获取一个随机名称 +def getOneName(): + global word_name_list + return random.choice(word_name_list) + +#oc代码头文件函数声明 +def getOCHeaderFuncText(): + funcName = getOneName() + text = "\n- (void)%s" %(funcName) + return text + +#oc代码函数实现模板 +def getOCFuncText(header_text): + arg1 = getOneName() + arg2 = getOneName() + text = [ + header_text + "\n", + "{\n", + "\tint %s = 2;\n" %(arg1), + "\tint %s = 3;\n" %(arg2), + "\t%s += %s ;\n" %(arg2,arg1), + "\t[[NSUserDefaults standardUserDefaults] setObject:@(%s) forKey:@\"%s\"];\n" %(arg2,arg1), + "\tNSLog(@\"%s\");\n" %(arg1), + "}\n" + ] + return "".join(text) + +#oc代码以@end结尾,在其前面添加text +def appendTextToOCFile(file_path, text): + with open(file_path, "r") as fileObj: + old_text = fileObj.read() + fileObj.close() + end_mark_index = old_text.rfind("@end") + if end_mark_index == -1: + print("\t非法的结尾格式: " + file_path) + return + new_text = old_text[:end_mark_index] + new_text = new_text + text + "\n" + new_text = new_text + old_text[end_mark_index:] + + with open(file_path, "w") as fileObj: + fileObj.write(new_text) + +#处理单个OC文件,添加垃圾函数。确保其对应头文件存在于相同目录 +def dealWithOCFile(filename, file_path): + global target_ios_folder,create_func_min,create_func_max,funcname_set + funcname_set.clear() + end_index = file_path.rfind(".") + pre_name = file_path[:end_index] + header_path = pre_name + ".h" + if not os.path.exists(header_path): + print ("\t相应头文件不存在:" + file_path) + return + + new_func_num = random.randint(create_func_min, create_func_max) + print ("\t给%s添加%d个方法" %(filename, new_func_num)) + for i in range(new_func_num): + header_text = getOCHeaderFuncText() + # print "add %s to %s" %(header_text, header_path.replace(target_ios_folder, "")) + appendTextToOCFile(header_path, header_text + ";\n") + funcText = getOCFuncText(header_text) + appendTextToOCFile(file_path, funcText) + +#扫描parent_folder,添加垃圾函数,处理了忽略列表 +def addOCFunctions(parent_folder): + global ignore_file_list + for parent, folders, files in os.walk(parent_folder): + need_ignore = None + for ignore_folder in ignore_folder_list: + if parent.find("/" + ignore_folder) != -1: + need_ignore = ignore_folder + break + if need_ignore: + print ("\t忽略文件夹" + ignore_folder) + continue + + for file in files: + if file.endswith(".m") or file.endswith(".mm"): + if file in ignore_file_list: + continue + dealWithOCFile(file, os.path.join(parent, file)) + +#新创建的垃圾文件header模板 +def getOCHeaderFileText(class_name): + global funcname_set + new_func_name = getOneName() + while new_func_name in funcname_set: + new_func_name = getOneName() + funcname_set.add(new_func_name) + + text = [ + "#import \n\n", + "@interface %s : NSObject {\n" %(class_name), + "\tint %s;\n" %(new_func_name), + "\tfloat %s;\n" %(getOneName()), + "}\n\n@end" + ] + return "".join(text) + +#新创建的垃圾文件mm模板 +def getOCMMFileText(class_name): + text = [ + '#import "%s.h"\n\n' %(class_name), + "@implementation %s\n" %(class_name), + "\n\n@end" + ] + return "".join(text) + +#添加垃圾文件到parent_folder/trash/ +def addOCFile(parent_folder): + global create_file_min, create_file_max + file_list = [] + target_folder = os.path.join(parent_folder, "trash") + if os.path.exists(target_folder): + shutil.rmtree(target_folder) + os.mkdir(target_folder) + file_num = random.randint(create_file_min, create_file_max) + for i in range(file_num): + file_name = getOneName() + file_list.append("#import \"" + file_name + ".h\"") + print ("\t创建OC文件 trash/" + file_name) + header_text = getOCHeaderFileText(file_name) + full_path = os.path.join(target_folder, file_name + ".h") + with open(full_path, "w") as fileObj: + fileObj.write(header_text) + fileObj.close() + + mm_text = getOCMMFileText(file_name) + full_path = os.path.join(target_folder, file_name + ".mm") + with open(full_path, "w") as fileObj: + fileObj.write(mm_text) + all_header_text = "\n".join(file_list) + + with open(os.path.join(parent_folder, "Trash.h"), "w") as fileObj: + fileObj.write(all_header_text) + fileObj.close() + +#解析参数 +def parse_args(): + parser = argparse.ArgumentParser(description='oc垃圾代码生成工具.') + parser.add_argument('--oc_folder', dest='oc_folder', type=str, required=True, help='OC代码所在目录') + parser.add_argument('--replace', dest='replace_ios', required=False, help='直接替换oc源代码', action="store_true") + + args = parser.parse_args() + return args + +def main(): + app_args = parse_args() + global ios_src_path, backup_ios_folder, target_ios_folder + ios_src_path = app_args.oc_folder + if not os.path.exists(ios_src_path): + print ("oc_folder path not exist.") + exit(0) + + print ("拷贝OC代码到target_ios") + if os.path.exists(target_ios_folder): + shutil.rmtree(target_ios_folder) + shutil.copytree(ios_src_path, target_ios_folder) + + print ("开始创建oc文件到trash目录") + addOCFile(target_ios_folder) + print ("\n开始添加oc方法") + addOCFunctions(target_ios_folder) + + if app_args.replace_ios: + print ("\n用target_ios替换原目录") + print ("\t备份OC代码到" + os.path.abspath(backup_ios_folder)) + if os.path.exists(backup_ios_folder): + shutil.rmtree(backup_ios_folder) + shutil.copytree(ios_src_path, backup_ios_folder) + + print ("\t开始替换") + trash_folder = os.path.join(ios_src_path, "trash") + if os.path.exists(trash_folder): + shutil.rmtree(trash_folder) + os.mkdir(trash_folder) + + for parent, folders, files in os.walk(target_ios_folder): + for file in files: + if file.endswith(".h") or file.endswith(".m") or file.endswith(".mm"): + full_path = os.path.join(parent, file) + target_path = full_path.replace(target_ios_folder, ios_src_path) + shutil.copy(full_path, target_path) + print ("替换成功\n需要在Xcode上重新添加trash文件下的oc文件") + else: + print ("垃圾代码生成完毕,垃圾代码目录:" + os.path.abspath(target_ios_folder)) + + print ("\nfinished") + +if __name__ == "__main__": + main() diff --git a/HX/autoBornCode.py b/HX/autoBornCode.py new file mode 100644 index 0000000..dcefa40 --- /dev/null +++ b/HX/autoBornCode.py @@ -0,0 +1,174 @@ +# -*- coding: UTF-8 -*- +import os,sys +import random +import string +import re +import time +import json +import shutil +import hashlib +import time +import argparse +#该脚本目前只针对Assets.xcassets目录下的文件进行副本、添加; +#即:在该脚本执行完毕之后,请将指定的--target 对应目录下的Assets.xcassets拷贝回工程项目替换原有的Assets.xcassets即可 +#该脚本会修改原来的png图片的sha值,以及随机添加一些无效的且无法预览fake图片 +script_path = os.path.split(os.path.realpath(sys.argv[0]))[0] + +resource_path = "" +target_path = os.path.join(script_path, "target_resource") + +#匹配规则,路径包含path_include且不包含path_exclude的才会创建对应类型的文件 os.path.sep:代表路径分隔符,即 / +match_rule = { + ".png": { +# "path_include": os.path.sep + "res", + }, +} +#确保添加的函数不重名 +funcname_set = set() + +#单词列表,用以随机名称 +with open(os.path.join(script_path, "./ClassName_list.json"), "r") as fileObj: + word_name_list = json.load(fileObj) + +#获取一个随机名称 +def getOneName(): + global word_name_list + return random.choice(word_name_list) + + + +#获取png内容 +def getPngText(): + hexbyte = "0000000049454e44ae426082" + text = str(random.randint(1, 100)) * random.randint(1024, 10240) + text = text + bytes.fromhex(hexbyte).hex() + text = text.encode('utf-8') + return text + +#添加单个文件 +def addSingleFile(file_path): + global target_path + print ("add file " + file_path.replace(target_path, "")) + _, file_type = os.path.splitext(file_path) + if file_type == ".png": +# print("发现png文件,准备在文件末尾追加hex文件操作...") + with open(file_path, "wb") as fileObj: + fileObj.write(getPngText()) + fileObj.close() + +def addFileTo(parent_folder, level, min_file_num=0): + global match_rule, target_path + create_folder_list = [] + for parent, folders, files in os.walk(parent_folder): + target_file_type = "" + relative_path = parent.replace(target_path, "") + print("relative_path:"+relative_path) + for file_type, match_config in match_rule.items(): +# print("file_type:" + file_type) + print("match_config:" + str(match_config)) + + if "path_exclude" in match_config and relative_path.find(match_config["path_exclude"]) != -1: + continue + if "path_include" not in match_config or relative_path.find(match_config["path_include"]) != -1: + target_file_type = file_type +# print("target_file_type:"+target_file_type) + break + if not target_file_type: + print("不在执行后续的addSingleFile步骤") + continue + + # Create file count 创建 指定的最小文件数量 + 文件列表长度一半 到 文件列表长度 之间 的数量 + new_file_num = random.randint(len(files) // 2, len(files)) + min_file_num + for i in range(new_file_num): + #根据随机的文件名 + 文件后缀类型 拼接为要创建的文件路径 + file_path = os.path.join(parent, getOneName() + target_file_type) + addSingleFile(file_path) + print("已经执行addSingleFile步骤...") + # Prevent creating too many levels 如果该目录下已经被自动创建目录,则不再继续自动创建 + if level > 2: + continue + + # Create folder count + new_fold_num = random.randint(len(folders) // 2, len(folders)) + for i in range(new_fold_num): + target_folder = os.path.join(parent, getOneName()) + # Defer folder creation to avoid interrupting os.walk + create_folder_list.append(target_folder) + + for folder_path in create_folder_list: + try: + print("create folder", folder_path.replace(target_path, "")) + os.makedirs(folder_path, exist_ok=True) # Handle existing folders + addFileTo(folder_path, level + 1, random.randint(2, 5)) + except Exception as e: + print(e) + +#----------------------------------------ended add file---------------------- +def changeSingleFileMD5(file_path): + pre_hash_valaue = calculate_sha256_hash(file_path) +# print("pre_hash_value:\n" + pre_hash_valaue) + _, file_type = os.path.splitext(file_path) + with open(file_path, "ab") as fileObj: + if file_type == ".png": + text = "".join(random.sample(string.ascii_letters, 11)) + elif file_type == ".jpg": + text = "".join(random.sample(string.ascii_letters, 20)) + else: + text = " "*random.randint(1, 100) + fileObj.write(text.encode('utf-8')) + fileObj.close() + after_hash_valaue = calculate_sha256_hash(file_path) +# print("after_hash_valaue:\n" + after_hash_valaue) + +#改变文件md5 +def changeFolderMD5(target_path): +# type_filter = set([".png", ".jpg", ".json", ".plist", ".fnt"]) +#暂时不处理json、pilist文件 + type_filter = set([".png", ".jpg"]) + for parent, folders, files in os.walk(target_path): + for file in files: + full_path = os.path.join(parent, file) + _, file_type = os.path.splitext(full_path) + if file_type in type_filter: + changeSingleFileMD5(full_path) + +#返回文件的hash值 +def calculate_sha256_hash(file_path): + with open(file_path, 'rb') as f: + data = f.read() + hasher = hashlib.sha256() + hasher.update(data) + return hasher.hexdigest() +#----------------------------------------------------main------------------------------------------------ + +def parse_args(): + global res_path + parser = argparse.ArgumentParser(description='资源变异工具') + parser.add_argument('--res', dest='res_dir', type=str, required=True, help='资源目录') + parser.add_argument('--target', dest='target_dir', type=str, required=False, default=target_path, help='资源导出目录') + + args = parser.parse_args() + return args + +def main(): + global resource_path, target_path + app_args = parse_args() + resource_path = app_args.res_dir + target_path = app_args.target_dir + + if not os.path.exists(resource_path): + print ("res path not exists: " + resource_path) + exit(0) + if target_path != resource_path: + if os.path.exists(target_path): + shutil.rmtree(target_path) + shutil.copytree(resource_path, target_path) + #执行png文件的添加、目录的创建 + addFileTo(target_path, 0) + + print ("\n\nstart modify file md5") + changeFolderMD5(target_path) + print ("finish!") + +if __name__ == "__main__": + main() diff --git a/HX/confuseAndBuild.sh b/HX/confuseAndBuild.sh new file mode 100644 index 0000000..d11f30e --- /dev/null +++ b/HX/confuseAndBuild.sh @@ -0,0 +1,301 @@ +#!/bin/bash + +# confuseAndBuild.sh +# ConfuseSwift +# + +# ⚠️声明 +# 1. 请将该脚本放在Xcode的Project工程的根目录。 +# 2. 当前版本未配置完整Xcode环境变量,仅支持混淆功能,不支持framework编译,若需编译请用Xcode运行该脚本。 + +# ⚠️教程 +# https://www.jianshu.com/p/be751f780d94 +# 直接在终端cd到confuseAndBuild.sh上一层目录,然后运行./confuseAndBuild.sh -c 即可 + + +if [ -z "$PROJECT_NAME" ]; then +CONFUSE_DIR="." +else +CONFUSE_DIR="${SRCROOT}/${PROJECT_NAME}" +fi + +# ⚠️自己配置自己的前缀 +CONFUSE_PREFIX="hunxiao_" + +BACKUP_FILE=".backup.log" +SYMBOL_FILE=".symbol.log" +CONFUSE_FILE=".confuse.log" +CONFUSE_FLAG=".confuseFlag" + +SOURCE_ARRAY=( "*.swift" +"*.m" +"*.h" +"*.c" +"*.cpp") +BACKUP_EXTENSION=".bak" + + +# 格式:echo -e "\033[背景色;前景色m 打印的字符串 \033[0m" +# 颜色:重置=0,黑色=30,红色=31,绿色=32,黄色=33,蓝色=34,洋红=35,青色=36,白色=37。 +# 示例:echo -e “\033[30m 我是黑色字 \033[0m” +# 参考:https://www.cnblogs.com/xiansong1005/p/7221316.html +# https://www.cnblogs.com/lr-ting/archive/2013/02/28/2936792.html +info() { +local green="\033[1;32m" +local normal="\033[0m" +echo -e "[${green}info${normal}] $1" +} + +error() { +local red="\033[1;31m" +local normal="\033[0m" +echo -e "[${red}error${normal}] $1" +} + +# 生成随机字符串 16字 +randomString() { +random_string=$(openssl rand -base64 64 | tr -cd 'a-zA-Z' | head -c 8) +prefixed_string="water_$random_string" +echo "$prefixed_string" +} + +# 获取符号的随机字符串 $1是符号名 +randomStringWithSymbol() { +grep -w $1 $SYMBOL_FILE -h | cut -d \ -f 2 +} + +removeIfExist() { +if [ -f $1 ]; then +rm $1 +fi +} + +# 备份文件 $1:file full path +backupFile() { +file=$1 +# 在原文件名前加个.(点符合)用作备份名 +fileName=${file##*/} +backupPath=${file/$fileName/.$fileName$BACKUP_EXTENSION} +echo "backup $file to $backupPath" + +if [ ! -f $backupPath ]; then +cp $file $backupPath +echo $backupPath >>$BACKUP_FILE +fi +} + +# 方案1. 精确备份:用关键字遍历会修改到的source文件,再将其备份 -- 消耗性能 +# 方案2. 整体备份:备份所有source文件 -- 消耗存储空间 +# 根据需要,为简单起见,这里选用方案2 +backupAllSource() { +info "backup all swift files" +NAMES="-name \"${SOURCE_ARRAY[0]}\"" +i=1 +while [ $i -lt ${#SOURCE_ARRAY[@]} ]; do +NAMES+=" -or -name \"${SOURCE_ARRAY[$i]}\"" +let i++ +done +# echo $NAMES + +removeIfExist $BACKUP_FILE +touch $BACKUP_FILE + +eval "find $CONFUSE_DIR $NAMES" | while read file; do +backupFile $file +done +} + +# 混淆工作, ⚠️该函数不会自动备份,要备份请调用safeConfuse函数 +confuseOnly() { +info "confuse start..." + +# 获取要混淆的函数名和变量名 +INCLUDES="--include=\"${SOURCE_ARRAY[0]}\"" +i=1 +while [ $i -lt ${#SOURCE_ARRAY[@]} ]; do +INCLUDES+=" --include=\"${SOURCE_ARRAY[$i]}\"" +let i++ +done +eval "grep $CONFUSE_PREFIX -r $CONFUSE_DIR $INCLUDES -n" >$CONFUSE_FILE + +# cat $CONFUSE_FILE +# 绑定随机字符串 +removeIfExist $SYMBOL_FILE +touch $SYMBOL_FILE + +cat $CONFUSE_FILE | egrep -w $CONFUSE_PREFIX"[0-9a-zA-Z_]*" -o | sort | uniq | while read line; do +echo $line" `randomString`" >>$SYMBOL_FILE +done + +# cat $SYMBOL_FILE + +# 读取备份文件记录 +# 在这里没使用遍历批量替换,怕文件太多的时候影响性能 +cat $CONFUSE_FILE | while read line; do +# echo "> $line" +# 截取行号 +lineNum=`echo $line | sed 's/.*:\([0-9]*\):.*/\1/g'` +# 截取文件路径 +path=${line%%:*} + +# 一行可能有多个要替换的子串,要循环遍历完 +# 这里之所以要用`sort -r`倒序是因为有个bug:如有字符串"jjyy abc hello abcde", 现在要替换"abc"为"123"(abcde保持不变),也就是传说中的‘全匹配替换’, +# 但不知为何在macOS下单词边界表达式不起作用:\ 或者 \babc\b都不起作用,Linux下这个正则表达式是没问题的。 +# 倒序之后有长串优先替换长串,防止短串把长串部分替换掉。但依然存在bug:若是长串不需要替换,则短串替换是依然会将长串部分替换😂 +# 因此依然还需要寻找macOS下单词边界/全匹配 的正则表达式 +echo $line | egrep -w $CONFUSE_PREFIX"[0-9a-zA-Z_]*" -o | sort -r | while read -ra symbol; do +# 根据名称获取绑定的随机字符串 +random=`randomStringWithSymbol $symbol` +# echo "$path $lineNum $symbol $random" +# 随机字符串替换 +# -i:表示直接在原文件替换,"":表示不要备份 +sed -i "" "${lineNum}s/$symbol/$random/g" $path + +echo " $symbol => $random" +done +done + +info "confuse done" +} + +# 编译工作,生成通用framework +buildAll() { +info "build start..." + +if [ -z "$PROJECT_NAME" ]; then +echo -e "\033[1;31mERROR:当前版本未配置完整Xcode环境变量,仅支持混淆功能,不支持framework编译,若需编译请用Xcode运行该脚本\033[0m" +return +fi + +# 要build的target名 +TARGET_NAME=${PROJECT_NAME} +UNIVERSAL_OUTPUT_DIR="${SRCROOT}/Framework/" + +# 创建输出目录,并删除之前的framework文件 +mkdir -p "${UNIVERSAL_OUTPUT_DIR}" +rm -rf "${UNIVERSAL_OUTPUT_DIR}/${TARGET_NAME}.framework" + +#分别编译模拟器和真机的Framework +xcodebuild -target "${TARGET_NAME}" ONLY_ACTIVE_ARCH=NO -configuration ${CONFIGURATION} ARCHS="armv7 armv7s arm64" -sdk iphoneos BUILD_DIR="${BUILD_DIR}" BUILD_ROOT="${BUILD_ROOT}" clean build +xcodebuild -target "${TARGET_NAME}" ONLY_ACTIVE_ARCH=NO -configuration ${CONFIGURATION} ARCHS="i386 x86_64" -sdk iphonesimulator BUILD_DIR="${BUILD_DIR}" BUILD_ROOT="${BUILD_ROOT}" clean build + +#拷贝framework到univer目录 +cp -R "${BUILD_DIR}/${CONFIGURATION}-iphoneos/${TARGET_NAME}.framework" "${UNIVERSAL_OUTPUT_DIR}" + +# 合并swiftmodule到univer目录 +cp -R "${BUILD_DIR}/${CONFIGURATION}-iphonesimulator/${TARGET_NAME}.framework/Modules/${TARGET_NAME}.swiftmodule/" "${UNIVERSAL_OUTPUT_DIR}/${TARGET_NAME}.framework/Modules/${TARGET_NAME}.swiftmodule" + +#合并framework,输出最终的framework到build目录 +lipo -create -output "${UNIVERSAL_OUTPUT_DIR}/${TARGET_NAME}.framework/${TARGET_NAME}" "${BUILD_DIR}/${CONFIGURATION}-iphonesimulator/${TARGET_NAME}.framework/${TARGET_NAME}" "${BUILD_DIR}/${CONFIGURATION}-iphoneos/${TARGET_NAME}.framework/${TARGET_NAME}" + +#删除编译之后生成的无关的配置文件 +dir_path="${UNIVERSAL_OUTPUT_DIR}/${TARGET_NAME}.framework/" +for file in ls $dir_path; do +if [[ ${file} =~ ".xcconfig" ]]; then +rm -f "${dir_path}/${file}" +fi +done + +#判断build文件夹是否存在,存在则删除 +if [ -d "${SRCROOT}/build" ]; then +rm -rf "${SRCROOT}/build" +fi + +#rm -rf "${BUILD_DIR}/${CONFIGURATION}-iphonesimulator" "${BUILD_DIR}/${CONFIGURATION}-iphoneos" + +#打开合并后的文件夹 +open "${UNIVERSAL_OUTPUT_DIR}" + +info "build done" +} + +# 清理工作,去混淆 +unconfuse() { +info "clean start..." +if [ -f $CONFUSE_FLAG ]; then +# 恢复混淆的函数名所在source文件的bak内容 +cat $BACKUP_FILE | while read backup; do +backupName=${backup##*/} +fileName=`echo $backupName | cut -d "." -f2,3` +filePath=${backup/$backupName/$fileName} + +echo "recover $backup to $filePath" + +cp $backup $filePath +rm $backup +done +# 删除修改记录 +removeIfExist $SYMBOL_FILE +removeIfExist $CONFUSE_FILE +removeIfExist $BACKUP_FILE +removeIfExist $CONFUSE_FLAG +else +echo "Not confuse yet!" +fi +info "clean done" +} + +# 检查是否上次未完成 +precheck() { +# 创建一个隐藏文件,仅标记混淆编译的状态 +# 由于编译过程有可能被中断,因此混淆后的代码可能未恢复,在开始备份前先做判断 +unconfuse +touch $CONFUSE_FLAG +} + +# 去混淆->备份->混淆 +safeConfuse() { +precheck +backupAllSource +confuseOnly +} + +# 去混淆->备份->混淆 +# 编译 +# 去混淆 +safeConfuseAndBuild() { +info "preparing confuse and build..." + +safeConfuse +buildAll +unconfuse + +info "all done" +} + +usage() { +echo -e "\033[1;31musage: ./confuseAndBuild.sh [-u|c|b|a]" +echo -e " -u" +echo -e " unconfuse: 清理工作,去混淆" +echo -e " -c" +echo -e " safeConfuse: 去混淆->备份->混淆" +echo -e " -b" +echo -e " buildAll: 编译生成通用framework" +echo -e " -a" +echo -e " safeConfuseAndBuild: 去混淆->备份->混淆->编译->去混淆" +echo -e "EXAMPLE:" +echo -e " ./confuseAndBuild.sh -u\033[0m" +} + +main() { +echo "参数个数:$# 参数值:$1" +case $1 in +"-u" ) +unconfuse +;; +"-c" ) +safeConfuse +;; +"-b" ) +buildAll +;; +"-a" ) +safeConfuseAndBuild +;; +* ) +usage +;; +esac +} + +main $@ diff --git a/HX/confuseAndBuild.txt b/HX/confuseAndBuild.txt new file mode 100644 index 0000000..d11f30e --- /dev/null +++ b/HX/confuseAndBuild.txt @@ -0,0 +1,301 @@ +#!/bin/bash + +# confuseAndBuild.sh +# ConfuseSwift +# + +# ⚠️声明 +# 1. 请将该脚本放在Xcode的Project工程的根目录。 +# 2. 当前版本未配置完整Xcode环境变量,仅支持混淆功能,不支持framework编译,若需编译请用Xcode运行该脚本。 + +# ⚠️教程 +# https://www.jianshu.com/p/be751f780d94 +# 直接在终端cd到confuseAndBuild.sh上一层目录,然后运行./confuseAndBuild.sh -c 即可 + + +if [ -z "$PROJECT_NAME" ]; then +CONFUSE_DIR="." +else +CONFUSE_DIR="${SRCROOT}/${PROJECT_NAME}" +fi + +# ⚠️自己配置自己的前缀 +CONFUSE_PREFIX="hunxiao_" + +BACKUP_FILE=".backup.log" +SYMBOL_FILE=".symbol.log" +CONFUSE_FILE=".confuse.log" +CONFUSE_FLAG=".confuseFlag" + +SOURCE_ARRAY=( "*.swift" +"*.m" +"*.h" +"*.c" +"*.cpp") +BACKUP_EXTENSION=".bak" + + +# 格式:echo -e "\033[背景色;前景色m 打印的字符串 \033[0m" +# 颜色:重置=0,黑色=30,红色=31,绿色=32,黄色=33,蓝色=34,洋红=35,青色=36,白色=37。 +# 示例:echo -e “\033[30m 我是黑色字 \033[0m” +# 参考:https://www.cnblogs.com/xiansong1005/p/7221316.html +# https://www.cnblogs.com/lr-ting/archive/2013/02/28/2936792.html +info() { +local green="\033[1;32m" +local normal="\033[0m" +echo -e "[${green}info${normal}] $1" +} + +error() { +local red="\033[1;31m" +local normal="\033[0m" +echo -e "[${red}error${normal}] $1" +} + +# 生成随机字符串 16字 +randomString() { +random_string=$(openssl rand -base64 64 | tr -cd 'a-zA-Z' | head -c 8) +prefixed_string="water_$random_string" +echo "$prefixed_string" +} + +# 获取符号的随机字符串 $1是符号名 +randomStringWithSymbol() { +grep -w $1 $SYMBOL_FILE -h | cut -d \ -f 2 +} + +removeIfExist() { +if [ -f $1 ]; then +rm $1 +fi +} + +# 备份文件 $1:file full path +backupFile() { +file=$1 +# 在原文件名前加个.(点符合)用作备份名 +fileName=${file##*/} +backupPath=${file/$fileName/.$fileName$BACKUP_EXTENSION} +echo "backup $file to $backupPath" + +if [ ! -f $backupPath ]; then +cp $file $backupPath +echo $backupPath >>$BACKUP_FILE +fi +} + +# 方案1. 精确备份:用关键字遍历会修改到的source文件,再将其备份 -- 消耗性能 +# 方案2. 整体备份:备份所有source文件 -- 消耗存储空间 +# 根据需要,为简单起见,这里选用方案2 +backupAllSource() { +info "backup all swift files" +NAMES="-name \"${SOURCE_ARRAY[0]}\"" +i=1 +while [ $i -lt ${#SOURCE_ARRAY[@]} ]; do +NAMES+=" -or -name \"${SOURCE_ARRAY[$i]}\"" +let i++ +done +# echo $NAMES + +removeIfExist $BACKUP_FILE +touch $BACKUP_FILE + +eval "find $CONFUSE_DIR $NAMES" | while read file; do +backupFile $file +done +} + +# 混淆工作, ⚠️该函数不会自动备份,要备份请调用safeConfuse函数 +confuseOnly() { +info "confuse start..." + +# 获取要混淆的函数名和变量名 +INCLUDES="--include=\"${SOURCE_ARRAY[0]}\"" +i=1 +while [ $i -lt ${#SOURCE_ARRAY[@]} ]; do +INCLUDES+=" --include=\"${SOURCE_ARRAY[$i]}\"" +let i++ +done +eval "grep $CONFUSE_PREFIX -r $CONFUSE_DIR $INCLUDES -n" >$CONFUSE_FILE + +# cat $CONFUSE_FILE +# 绑定随机字符串 +removeIfExist $SYMBOL_FILE +touch $SYMBOL_FILE + +cat $CONFUSE_FILE | egrep -w $CONFUSE_PREFIX"[0-9a-zA-Z_]*" -o | sort | uniq | while read line; do +echo $line" `randomString`" >>$SYMBOL_FILE +done + +# cat $SYMBOL_FILE + +# 读取备份文件记录 +# 在这里没使用遍历批量替换,怕文件太多的时候影响性能 +cat $CONFUSE_FILE | while read line; do +# echo "> $line" +# 截取行号 +lineNum=`echo $line | sed 's/.*:\([0-9]*\):.*/\1/g'` +# 截取文件路径 +path=${line%%:*} + +# 一行可能有多个要替换的子串,要循环遍历完 +# 这里之所以要用`sort -r`倒序是因为有个bug:如有字符串"jjyy abc hello abcde", 现在要替换"abc"为"123"(abcde保持不变),也就是传说中的‘全匹配替换’, +# 但不知为何在macOS下单词边界表达式不起作用:\ 或者 \babc\b都不起作用,Linux下这个正则表达式是没问题的。 +# 倒序之后有长串优先替换长串,防止短串把长串部分替换掉。但依然存在bug:若是长串不需要替换,则短串替换是依然会将长串部分替换😂 +# 因此依然还需要寻找macOS下单词边界/全匹配 的正则表达式 +echo $line | egrep -w $CONFUSE_PREFIX"[0-9a-zA-Z_]*" -o | sort -r | while read -ra symbol; do +# 根据名称获取绑定的随机字符串 +random=`randomStringWithSymbol $symbol` +# echo "$path $lineNum $symbol $random" +# 随机字符串替换 +# -i:表示直接在原文件替换,"":表示不要备份 +sed -i "" "${lineNum}s/$symbol/$random/g" $path + +echo " $symbol => $random" +done +done + +info "confuse done" +} + +# 编译工作,生成通用framework +buildAll() { +info "build start..." + +if [ -z "$PROJECT_NAME" ]; then +echo -e "\033[1;31mERROR:当前版本未配置完整Xcode环境变量,仅支持混淆功能,不支持framework编译,若需编译请用Xcode运行该脚本\033[0m" +return +fi + +# 要build的target名 +TARGET_NAME=${PROJECT_NAME} +UNIVERSAL_OUTPUT_DIR="${SRCROOT}/Framework/" + +# 创建输出目录,并删除之前的framework文件 +mkdir -p "${UNIVERSAL_OUTPUT_DIR}" +rm -rf "${UNIVERSAL_OUTPUT_DIR}/${TARGET_NAME}.framework" + +#分别编译模拟器和真机的Framework +xcodebuild -target "${TARGET_NAME}" ONLY_ACTIVE_ARCH=NO -configuration ${CONFIGURATION} ARCHS="armv7 armv7s arm64" -sdk iphoneos BUILD_DIR="${BUILD_DIR}" BUILD_ROOT="${BUILD_ROOT}" clean build +xcodebuild -target "${TARGET_NAME}" ONLY_ACTIVE_ARCH=NO -configuration ${CONFIGURATION} ARCHS="i386 x86_64" -sdk iphonesimulator BUILD_DIR="${BUILD_DIR}" BUILD_ROOT="${BUILD_ROOT}" clean build + +#拷贝framework到univer目录 +cp -R "${BUILD_DIR}/${CONFIGURATION}-iphoneos/${TARGET_NAME}.framework" "${UNIVERSAL_OUTPUT_DIR}" + +# 合并swiftmodule到univer目录 +cp -R "${BUILD_DIR}/${CONFIGURATION}-iphonesimulator/${TARGET_NAME}.framework/Modules/${TARGET_NAME}.swiftmodule/" "${UNIVERSAL_OUTPUT_DIR}/${TARGET_NAME}.framework/Modules/${TARGET_NAME}.swiftmodule" + +#合并framework,输出最终的framework到build目录 +lipo -create -output "${UNIVERSAL_OUTPUT_DIR}/${TARGET_NAME}.framework/${TARGET_NAME}" "${BUILD_DIR}/${CONFIGURATION}-iphonesimulator/${TARGET_NAME}.framework/${TARGET_NAME}" "${BUILD_DIR}/${CONFIGURATION}-iphoneos/${TARGET_NAME}.framework/${TARGET_NAME}" + +#删除编译之后生成的无关的配置文件 +dir_path="${UNIVERSAL_OUTPUT_DIR}/${TARGET_NAME}.framework/" +for file in ls $dir_path; do +if [[ ${file} =~ ".xcconfig" ]]; then +rm -f "${dir_path}/${file}" +fi +done + +#判断build文件夹是否存在,存在则删除 +if [ -d "${SRCROOT}/build" ]; then +rm -rf "${SRCROOT}/build" +fi + +#rm -rf "${BUILD_DIR}/${CONFIGURATION}-iphonesimulator" "${BUILD_DIR}/${CONFIGURATION}-iphoneos" + +#打开合并后的文件夹 +open "${UNIVERSAL_OUTPUT_DIR}" + +info "build done" +} + +# 清理工作,去混淆 +unconfuse() { +info "clean start..." +if [ -f $CONFUSE_FLAG ]; then +# 恢复混淆的函数名所在source文件的bak内容 +cat $BACKUP_FILE | while read backup; do +backupName=${backup##*/} +fileName=`echo $backupName | cut -d "." -f2,3` +filePath=${backup/$backupName/$fileName} + +echo "recover $backup to $filePath" + +cp $backup $filePath +rm $backup +done +# 删除修改记录 +removeIfExist $SYMBOL_FILE +removeIfExist $CONFUSE_FILE +removeIfExist $BACKUP_FILE +removeIfExist $CONFUSE_FLAG +else +echo "Not confuse yet!" +fi +info "clean done" +} + +# 检查是否上次未完成 +precheck() { +# 创建一个隐藏文件,仅标记混淆编译的状态 +# 由于编译过程有可能被中断,因此混淆后的代码可能未恢复,在开始备份前先做判断 +unconfuse +touch $CONFUSE_FLAG +} + +# 去混淆->备份->混淆 +safeConfuse() { +precheck +backupAllSource +confuseOnly +} + +# 去混淆->备份->混淆 +# 编译 +# 去混淆 +safeConfuseAndBuild() { +info "preparing confuse and build..." + +safeConfuse +buildAll +unconfuse + +info "all done" +} + +usage() { +echo -e "\033[1;31musage: ./confuseAndBuild.sh [-u|c|b|a]" +echo -e " -u" +echo -e " unconfuse: 清理工作,去混淆" +echo -e " -c" +echo -e " safeConfuse: 去混淆->备份->混淆" +echo -e " -b" +echo -e " buildAll: 编译生成通用framework" +echo -e " -a" +echo -e " safeConfuseAndBuild: 去混淆->备份->混淆->编译->去混淆" +echo -e "EXAMPLE:" +echo -e " ./confuseAndBuild.sh -u\033[0m" +} + +main() { +echo "参数个数:$# 参数值:$1" +case $1 in +"-u" ) +unconfuse +;; +"-c" ) +safeConfuse +;; +"-b" ) +buildAll +;; +"-a" ) +safeConfuseAndBuild +;; +* ) +usage +;; +esac +} + +main $@ diff --git a/HX/renameNative.py b/HX/renameNative.py new file mode 100644 index 0000000..f551dc9 --- /dev/null +++ b/HX/renameNative.py @@ -0,0 +1,183 @@ +# -*- coding: UTF-8 -*- +import os,sys +import random +import string +import re +#import md5 +import time +import json +import shutil +import hashlib +import time +import argparse + +import sys + + +script_path = os.path.split(os.path.realpath(sys.argv[0]))[0] +add_prefix = "" +old_prefix = "ZZH_" +new_prefix = "BSHighCode" +ios_src_path = "" +project_file_path = "" + +ignore_path_text = [".a", ".png", ".plist", ".storyboard", ".pch"] + +#首字母大写 +def isNeedIgnore(file_path): + global ignore_path_text + for ignore_text in ignore_path_text: + if file_path.find(ignore_text) != -1: + return True + return False + +def replaceStringInFile(full_path, old_text, new_text): + with open(full_path, "r",errors="ignore") as fileObj: + all_text = fileObj.read() + fileObj.close() + + all_text = all_text.replace(old_text, new_text) + with open(full_path, "w",errors="ignore") as fileObj: + fileObj.write(all_text) + fileObj.close() + +def renameFileInXcodeProj(old_file_name, new_file_name): + global project_file_path + if os.path.exists(project_file_path): + replaceStringInFile(project_file_path, old_file_name, new_file_name) + +#替换文件中的文本内容:匹配到的文本被替换为指定的new_text +def renameInAllFile(old_text, new_text): + global ios_src_path + for parent, folders, files in os.walk(ios_src_path): + for file in files: + full_path = os.path.join(parent, file) + replaceStringInFile(full_path, old_text, new_text) + +#开始重命名类名 +def dealWithIos(folder_path): + print ("开始重命名类名") + global old_prefix, new_prefix + for parent, folders, files in os.walk(folder_path): + #先处理每个文件的名字 + for file in files: + print("\n the file:" + file + "\n") + #得到该文件的路径 + old_full_path = os.path.join(parent, file) + #如果该文件名称匹配为需要重命名的类名 名称,并且该文本不属于被忽略的文件,则需要执行重命名操作 + if file.startswith(old_prefix) and not isNeedIgnore(old_full_path): + #将该文件名称中匹配上的文本部分替换为new_prefix,并得到新文件名 名称 + new_file_name = file.replace(old_prefix, new_prefix) + print ("\t重命名文件: %s -> %s" %(file, new_file_name)) + #合成新文件名对应的文件路径 + new_full_path = os.path.join(parent, new_file_name) + #将原来的文件改命为新的文件名称 + os.rename(old_full_path, new_full_path) + #在项目工程中改名 + renameFileInXcodeProj(file, new_file_name) + + #在可能引用的地方替换,获取不带文件名后缀的部分 + old_file_base_name = os.path.splitext(file)[0] + print("\n the old_file_base_name:" + old_file_base_name + "\n") + new_file_base_name = old_file_base_name.replace(old_prefix, new_prefix) + #将ios_src_path 所指定的目录下的所有old_file_base_name文本(主要是指的类名) 替换为新的new_file_base_name文本 (类名) + renameInAllFile(old_file_base_name, new_file_base_name) + + for parent, folders, files in os.walk(folder_path): + for folder in folders: + old_full_path = os.path.join(parent, folder) + #递归处理该目录下的内容 +# dealWithIos(old_full_path) + if folder.startswith(old_prefix) and not isNeedIgnore(old_full_path): + new_folder_name = folder.replace(old_prefix, new_prefix) + print ("\t重命名文件夹: %s -> %s" %(folder, new_folder_name)) + new_full_path = os.path.join(parent, new_folder_name) + os.rename(old_full_path, new_full_path) + #在项目工程中改名 + renameFileInXcodeProj(folder, new_folder_name) + print ("finish\n") + +#开始添加前缀 +def addPreFix(): + print ("开始添加前缀") + global add_prefix, ios_src_path + for parent, folders, files in os.walk(ios_src_path): + for file in files: + old_full_path = os.path.join(parent, file) + if not isNeedIgnore(old_full_path): + new_file_name = add_prefix + file + print ("\t重命名文件: %s -> %s" %(file, new_file_name)) + + new_full_path = os.path.join(parent, new_file_name) + os.rename(old_full_path, new_full_path) + #在项目工程中改名 + renameFileInXcodeProj(file, new_file_name) + + #在可能引用的地方替换 + old_file_base_name = os.path.splitext(file)[0] + new_file_base_name = os.path.splitext(new_file_name)[0] + renameInAllFile(old_file_base_name, new_file_base_name) + renameInAllFile(add_prefix+add_prefix, add_prefix) + + for parent, folders, files in os.walk(ios_src_path): + for folder in folders: + old_full_path = os.path.join(parent, folder) + if not isNeedIgnore(old_full_path): + new_folder_name = add_prefix + folder + print ("\t重命名文件夹: %s -> %s" %(folder, new_folder_name)) + new_full_path = os.path.join(parent, new_folder_name) + os.rename(old_full_path, new_full_path) + #在项目工程中改名 + renameFileInXcodeProj(folder, new_folder_name) + print ("finish\n") + +#给方法添加前缀 +#..... + + +#修改指定前缀的方法名 +#.... + +#给每个方法的起始行处 添加垃圾代码 +#...... + +#----------------------------------------------------main------------------------------------------------ +def parse_args(): + global script_path, proj_ios_path + parser = argparse.ArgumentParser(description='修改类名前缀工具.\n') + parser.add_argument('--add_prefix', dest='add_prefix', type=str, required=False, default="", help='添加类名前缀') + parser.add_argument('--old_prefix', dest='old_prefix', type=str, required=False, help='原类名前缀') + parser.add_argument('--new_prefix', dest='new_prefix', type=str, required=False, help='替换后类名前缀') + parser.add_argument('--ios_path', dest='ios_path', type=str, required=True, help='OC文件目录') + parser.add_argument('--proj_path', dest='proj_path', type=str, required=False, default="", help='xx.xcodeproj路径') + args = parser.parse_args() + return args + +def main(): + global old_prefix, new_prefix, ios_src_path, project_file_path, add_prefix + app_args = parse_args() + + add_prefix = app_args.add_prefix + old_prefix = app_args.old_prefix + new_prefix = app_args.new_prefix + ios_src_path = app_args.ios_path + project_file_path = os.path.join(app_args.proj_path, "project.pbxproj") + if not os.path.exists(ios_src_path): + print ("ios_path not exists: " + ios_src_path) + exit(0) + if not os.path.exists(project_file_path): + print ("proj_path not exists: " + project_file_path) + + print ("请提前备份文件夹或确认在版本管理软件中") + input("回车继续执行") + #给类名添加前缀:实际作用是,当以前编写的项目工程中的类名(类名必需和文件名字一致,因为是通过文件名称去依次修改文件名、类名的)没有添加一致的前缀 + if add_prefix and add_prefix != "": + addPreFix() + #添加完毕前缀后,就退出程序 + print("\n添加完毕前缀后,就退出程序\n") + exit(0) + dealWithIos(ios_src_path) + + +if __name__ == "__main__": + main() diff --git a/HX/word_list.json b/HX/word_list.json new file mode 100644 index 0000000..1297044 --- /dev/null +++ b/HX/word_list.json @@ -0,0 +1,12604 @@ +[ + "ability", + "about", + "above", + "accident", + "accordingto", + "achieve", + "across", + "action", + "active", + "actual", + "adapt", + "addition", + "address", + "admire", + "admit", + "advance", + "advanced", + "advantage", + "advice", + "advise", + "affair", + "afraid", + "Africa", + "African", + "after", + "afternoon", + "afterward", + "again", + "against", + "agree", + "agreement", + "ahead", + "alike", + "alive", + "allow", + "almost", + "alone", + "along", + "aloud", + "already", + "although", + "altogether", + "always", + "America", + "American", + "among", + "amount", + "ancient", + "anger", + "angry", + "animal", + "announce", + "another", + "answer", + "anxious", + "anybody", + "anyhow", + "anyone", + "anything", + "anywhere", + "appear", + "apple", + "apply", + "April", + "around", + "arrange", + "arrive", + "article", + "ashamed", + "Asian", + "aside", + "asleep", + "attack", + "attempt", + "attend", + "attention", + "audience", + "August", + "autumn", + "avoid", + "awake", + "award", + "background", + "badly", + "basic", + "basket", + "basketball", + "bathe", + "battle", + "beach", + "beautiful", + "beauty", + "because", + "become", + "bedroom", + "before", + "begin", + "behind", + "being", + "believe", + "belong", + "below", + "beside", + "besides", + "between", + "beyond", + "birth", + "birthday", + "bitter", + "black", + "blackboard", + "blame", + "blind", + "block", + "blood", + "board", + "border", + "borrow", + "bother", + "bottle", + "bottom", + "brain", + "branch", + "brave", + "bread", + "break", + "breakfast", + "breath", + "breathe", + "brick", + "bridge", + "brief", + "bright", + "bring", + "brother", + "brown", + "brush", + "build", + "building", + "business", + "butter", + "capable", + "capital", + "careful", + "careless", + "carry", + "casual", + "catch", + "cattle", + "cause", + "ceiling", + "celebrate", + "central", + "centre", + "century", + "certain", + "certainly", + "chair", + "chairman", + "champion", + "chance", + "change", + "character", + "cheap", + "check", + "cheer", + "chemical", + "chemistry", + "chicken", + "chief", + "child", + "China", + "Chinese", + "choice", + "choose", + "Christmas", + "church", + "cinema", + "circle", + "class", + "classroom", + "clean", + "clear", + "clever", + "climb", + "clock", + "close", + "cloth", + "clothes", + "cloud", + "coffee", + "collect", + "college", + "color", + "combine", + "comfort", + "comfortable", + "command", + "committee", + "common", + "companion", + "company", + "compare", + "compete", + "competition", + "complain", + "complete", + "computer", + "comrade", + "condition", + "conduct", + "conductor", + "confident", + "connect", + "consider", + "contact", + "continue", + "continuous", + "contrary", + "control", + "convenient", + "corner", + "correct", + "cotton", + "count", + "country", + "countryside", + "couple", + "courage", + "course", + "court", + "cousin", + "cover", + "crazy", + "create", + "cross", + "crowd", + "crown", + "cruel", + "custom", + "customer", + "cycle", + "daily", + "dance", + "danger", + "daughter", + "December", + "decide", + "decision", + "declare", + "decrease", + "defeat", + "defend", + "degree", + "delay", + "delight", + "demand", + "democratic", + "department", + "depend", + "depth", + "describe", + "desire", + "despite", + "develop", + "devote", + "diamond", + "diary", + "dictionary", + "difference", + "different", + "difficult", + "difficulty", + "dinner", + "direct", + "direction", + "dirty", + "disappear", + "discourage", + "discover", + "discuss", + "divide", + "doctor", + "dollar", + "doubt", + "dream", + "dress", + "drink", + "drive", + "during", + "eager", + "early", + "earth", + "eastern", + "educate", + "education", + "effort", + "eight", + "eighth", + "eighty", + "either", + "elder", + "elect", + "electric", + "electricity", + "eleven", + "elsewhere", + "embarrass", + "emotion", + "emperor", + "employ", + "empty", + "encourage", + "enemy", + "engage", + "engine", + "England", + "English", + "enjoy", + "enough", + "enter", + "entire", + "equal", + "escape", + "especially", + "Europe", + "European", + "evening", + "event", + "eventually", + "every", + "everybody", + "everyday", + "everyone", + "everything", + "everywhere", + "exact", + "examination", + "examine", + "example", + "excellent", + "except", + "excite", + "exciting", + "excuse", + "exercise", + "exhibition", + "exist", + "expect", + "expensive", + "experience", + "experiment", + "expert", + "explain", + "express", + "factory", + "failure", + "faint", + "familiar", + "family", + "famous", + "father", + "fault", + "favour", + "favourite", + "February", + "feeling", + "fellow", + "fever", + "field", + "fifteen", + "fifth", + "fifty", + "fight", + "final", + "finger", + "finish", + "first", + "flood", + "floor", + "flower", + "follow", + "foolish", + "football", + "force", + "foreign", + "forest", + "forever", + "forget", + "formal", + "former", + "fortunate", + "fortune", + "forty", + "forward", + "fourteen", + "freedom", + "freeze", + "French", + "frequent", + "fresh", + "Friday", + "friend", + "friendly", + "friendship", + "frighten", + "front", + "fruit", + "fulfill", + "funny", + "furniture", + "further", + "furthermore", + "future", + "garden", + "gather", + "general", + "gentle", + "gentleman", + "geography", + "German", + "Germany", + "glance", + "glass", + "glory", + "golden", + "goodbye", + "government", + "grade", + "gradual", + "graduate", + "grain", + "grammar", + "granddaughter", + "grandfather", + "grandmother", + "grandson", + "grass", + "grateful", + "great", + "green", + "greet", + "ground", + "group", + "guard", + "guess", + "guest", + "guide", + "habit", + "handsome", + "happen", + "happy", + "hardly", + "harvest", + "headache", + "headquarters", + "health", + "heart", + "heaven", + "heavy", + "height", + "hello", + "herself", + "highly", + "himself", + "history", + "holiday", + "homework", + "honest", + "honour", + "horse", + "hospital", + "hotel", + "house", + "however", + "human", + "hundred", + "hungry", + "hurry", + "husband", + "ignore", + "illness", + "imagine", + "import", + "important", + "impossible", + "improve", + "incident", + "include", + "income", + "increase", + "indeed", + "India", + "Indian", + "indicate", + "industry", + "influence", + "information", + "inside", + "insist", + "instance", + "instead", + "instrument", + "intend", + "interest", + "interesting", + "interview", + "introduce", + "invite", + "involve", + "island", + "issue", + "itself", + "January", + "Japan", + "journey", + "kitchen", + "knife", + "knock", + "knowledge", + "labour", + "ladder", + "language", + "large", + "laugh", + "laughter", + "lawyer", + "learn", + "leave", + "lecture", + "length", + "lesson", + "letter", + "level", + "light", + "liquid", + "listen", + "little", + "lonely", + "loose", + "lovely", + "lower", + "lunch", + "machine", + "magazine", + "maintain", + "major", + "majority", + "manage", + "manager", + "mankind", + "manner", + "march", + "market", + "marriage", + "marry", + "master", + "match", + "material", + "mathematics", + "matter", + "maybe", + "mayor", + "meaning", + "means", + "measure", + "medicine", + "medium", + "meeting", + "member", + "memory", + "merchant", + "merry", + "message", + "metal", + "meter", + "middle", + "might", + "military", + "million", + "minister", + "minute", + "mirror", + "missing", + "mistake", + "model", + "modern", + "modest", + "moment", + "Monday", + "monkey", + "month", + "morning", + "mother", + "motor", + "mountain", + "mouth", + "murder", + "museum", + "music", + "myself", + "narrow", + "nation", + "national", + "native", + "nearly", + "necessary", + "negative", + "Negro", + "neighbour", + "neither", + "never", + "newspaper", + "night", + "nineteen", + "ninety", + "ninth", + "nobody", + "noise", + "north", + "northern", + "nothing", + "notice", + "November", + "number", + "nurse", + "object", + "obtain", + "obvious", + "ocean", + "oclock", + "October", + "offer", + "office", + "official", + "often", + "oneself", + "operation", + "opinion", + "orange", + "ordinary", + "other", + "ought", + "ourselves", + "outline", + "outside", + "owner", + "palace", + "paper", + "pardon", + "parent", + "particular", + "partly", + "party", + "passage", + "passenger", + "passport", + "patient", + "pattern", + "peace", + "peasant", + "pencil", + "penny", + "people", + "percent", + "perfect", + "perhaps", + "permit", + "person", + "personnel", + "persuade", + "physics", + "piano", + "picture", + "piece", + "place", + "plain", + "plane", + "planet", + "plant", + "plate", + "platform", + "pleasant", + "please", + "pleasure", + "plenty", + "pocket", + "point", + "police", + "policeman", + "polite", + "political", + "politics", + "population", + "position", + "possible", + "potato", + "poverty", + "practical", + "practice", + "practise", + "prepare", + "present", + "president", + "press", + "pretend", + "pretty", + "prevent", + "price", + "pride", + "print", + "prison", + "prize", + "probably", + "problem", + "produce", + "production", + "professor", + "profit", + "progress", + "promise", + "pronunciation", + "proper", + "protect", + "proud", + "prove", + "provide", + "province", + "public", + "punish", + "pupil", + "purpose", + "quality", + "quantity", + "quarrel", + "quarter", + "queen", + "question", + "quick", + "quiet", + "quite", + "radio", + "railroad", + "raise", + "range", + "rapid", + "rather", + "reach", + "ready", + "realize", + "record", + "refuse", + "regret", + "regular", + "relation", + "relax", + "religion", + "remain", + "remember", + "remind", + "remove", + "repair", + "repeat", + "replace", + "reply", + "report", + "republic", + "research", + "respect", + "responsible", + "restaurant", + "result", + "return", + "review", + "revolution", + "reward", + "right", + "rough", + "round", + "rubber", + "rubbish", + "salary", + "satisfy", + "Saturday", + "scare", + "scene", + "school", + "science", + "scientific", + "scientist", + "score", + "scream", + "search", + "season", + "second", + "secret", + "seize", + "seldom", + "sense", + "sentence", + "separate", + "September", + "serious", + "serve", + "service", + "settle", + "seven", + "seventeen", + "seventy", + "several", + "shadow", + "shake", + "shall", + "shame", + "shape", + "share", + "sharp", + "sheet", + "shelf", + "shine", + "shirt", + "shock", + "shoot", + "shore", + "short", + "should", + "shoulder", + "shout", + "shower", + "sight", + "signal", + "silence", + "silent", + "silver", + "simple", + "since", + "single", + "sister", + "situation", + "sixteen", + "sixty", + "skill", + "skirt", + "slave", + "sleep", + "sleepy", + "slight", + "small", + "smell", + "smile", + "smoke", + "smooth", + "social", + "society", + "soldier", + "solid", + "solve", + "somebody", + "someone", + "somehow", + "something", + "sometime", + "sometimes", + "somewhere", + "sorry", + "sound", + "south", + "southern", + "space", + "spare", + "speak", + "special", + "speech", + "speed", + "spell", + "spend", + "spirit", + "sport", + "spread", + "spring", + "square", + "stage", + "stain", + "stair", + "stamp", + "stand", + "standard", + "stare", + "start", + "starve", + "state", + "station", + "steal", + "steam", + "steel", + "stick", + "still", + "stomach", + "stone", + "store", + "storey", + "storm", + "story", + "straight", + "strange", + "stranger", + "stream", + "street", + "strength", + "strike", + "strong", + "struggle", + "student", + "study", + "subject", + "succeed", + "success", + "sudden", + "suddenly", + "suffer", + "sufficient", + "sugar", + "suggest", + "summer", + "Sunday", + "supper", + "supply", + "support", + "suppose", + "surface", + "surprise", + "surround", + "sweep", + "sweet", + "table", + "taste", + "teach", + "teacher", + "television", + "temperature", + "tennis", + "terrible", + "thank", + "theatre", + "their", + "themselves", + "theory", + "there", + "therefor", + "these", + "thick", + "thing", + "think", + "third", + "thirteen", + "thirty", + "thorough", + "those", + "though", + "thought", + "thousand", + "three", + "through", + "throughout", + "throw", + "Thursday", + "ticket", + "tired", + "today", + "together", + "tomato", + "tomorrow", + "tongue", + "tonight", + "tooth", + "total", + "touch", + "tourist", + "toward", + "tower", + "trade", + "train", + "translate", + "travel", + "treasure", + "treat", + "tremble", + "trick", + "trouble", + "trousers", + "truck", + "trust", + "Tuesday", + "twelfth", + "twelve", + "twentieth", + "twenty", + "twice", + "uncle", + "under", + "understand", + "uniform", + "union", + "unite", + "united", + "university", + "unless", + "until", + "usual", + "usually", + "valley", + "valuable", + "value", + "various", + "vegetable", + "victory", + "village", + "visit", + "visitor", + "voice", + "wander", + "waste", + "watch", + "water", + "wealth", + "weather", + "Wednesday", + "weight", + "welcome", + "western", + "whatever", + "wheat", + "wheel", + "whenever", + "where", + "whether", + "which", + "while", + "whisper", + "white", + "whole", + "whose", + "willing", + "window", + "winter", + "within", + "without", + "woman", + "wonder", + "wonderful", + "worker", + "world", + "worry", + "worth", + "worthy", + "would", + "wound", + "write", + "wrong", + "yellow", + "yesterday", + "young", + "yours", + "yourself", + "abandon", + "abandonment", + "abbreviation", + "abeyance", + "abide", + "abnormal", + "aboard", + "abolish", + "abolition", + "abortion", + "abortive", + "abreast", + "abridge", + "abroad", + "abrogate", + "abrogation", + "abrupt", + "abruptly", + "absence", + "absent", + "absolute", + "absolutely", + "absorb", + "absorption", + "abstract", + "abstraction", + "absurd", + "absurdity", + "abundance", + "abundant", + "abuse", + "abasement", + "academic", + "academy", + "accede", + "accelerate", + "acceleration", + "accent", + "accept", + "acceptable", + "acceptance", + "access", + "accessible", + "accessory", + "accidental", + "accidentally", + "accommodate", + "accommodation", + "accompaniment", + "accompany", + "accomplish", + "accomplishment", + "accord", + "accordance", + "according", + "accordingly", + "account", + "accountant", + "accounting", + "accrue", + "accrued", + "accumulate", + "accumulation", + "accumulative", + "accuracy", + "accurate", + "accurately", + "accusation", + "accuse", + "accustom", + "aching", + "achievement", + "acknowledge", + "acknowledgment", + "acquaint", + "acquaintance", + "acquainted", + "acquire", + "acquisition", + "acrobat", + "acrobatics", + "activate", + "actively", + "activity", + "actor", + "actress", + "actuality", + "actually", + "acute", + "adaptation", + "additional", + "additive", + "adequate", + "adequately", + "adhere", + "adhesive", + "adjacent", + "adjective", + "adjoin", + "adjust", + "adjustable", + "adjustment", + "administer", + "administration", + "administrative", + "admirable", + "admiration", + "admission", + "admittedly", + "adolescence", + "adolescent", + "adopt", + "adoption", + "adore", + "adorn", + "adornment", + "adult", + "advantageous", + "adventure", + "adventurous", + "adverb", + "adverbial", + "adversary", + "adverse", + "adversity", + "advertise", + "advertising", + "advertisement", + "advisable", + "adviser", + "advocate", + "aerial", + "aeroplane", + "affect", + "affection", + "affectionate", + "affiliate", + "affirm", + "affirmation", + "affirmative", + "afford", + "affordable", + "afloat", + "aforesaid", + "agency", + "agent", + "aggravate", + "aggravation", + "aggregate", + "aggregation", + "aggression", + "aggressive", + "aggressor", + "agitate", + "agitation", + "agonize", + "agony", + "agreeable", + "agreeably", + "agreed", + "agricultural", + "agriculture", + "ailment", + "aimless", + "aircraft", + "airline", + "airliner", + "airmail", + "airplane", + "airport", + "airway", + "aisle", + "alarm", + "alarming", + "album", + "alcohol", + "alcoholic", + "alcoholism", + "alert", + "algebra", + "alien", + "alienate", + "alienation", + "alignment", + "allergic", + "allergy", + "alliance", + "allied", + "allocate", + "allocation", + "allot", + "allotment", + "allowance", + "alloy", + "alongside", + "alphabet", + "alter", + "alternate", + "alternation", + "alternative", + "altitude", + "aluminum", + "amateur", + "amaze", + "amazement", + "ambassador", + "ambient", + "ambiguity", + "ambiguous", + "ambition", + "ambitious", + "ambulance", + "amend", + "amendment", + "amends", + "amiable", + "amicable", + "ammunition", + "ampere", + "ample", + "amplification", + "amplifier", + "amplify", + "amuse", + "amusement", + "analogue", + "analogy", + "analysis", + "analytical", + "analyze", + "ancestor", + "anchor", + "anecdote", + "angel", + "angle", + "angular", + "animate", + "animation", + "ankle", + "annex", + "anniversary", + "announcement", + "announcer", + "annoy", + "annoyance", + "annual", + "annually", + "antagonism", + "antagonist", + "Antarctic", + "antibiotic", + "antecedent", + "anticipate", + "anticipation", + "antique", + "antonym", + "antonymous", + "anxiety", + "anxiously", + "anyway", + "apart", + "apartment", + "apologize", + "apology", + "apparatus", + "apparent", + "apparently", + "appeal", + "appealing", + "appearance", + "appendix", + "appetite", + "applaud", + "applause", + "appliance", + "applicable", + "applicant", + "application", + "appoint", + "appointment", + "appreciable", + "appreciably", + "appreciate", + "appreciation", + "appreciative", + "apprentice", + "apprize", + "approach", + "appropriate", + "approval", + "approve", + "approximate", + "approximately", + "approximation", + "aptitude", + "Arabian", + "Arabic", + "arbitrary", + "arbitrate", + "arbitration", + "arbitrator", + "archaeologist", + "archaeology", + "architect", + "architecture", + "arctic", + "ardent", + "arduous", + "arena", + "argue", + "argument", + "arise", + "aristocracy", + "aristocrat", + "aristocratic", + "arithmetic", + "armchair", + "armour", + "arouse", + "arrangement", + "array", + "arrear", + "arrest", + "arrival", + "arrogance", + "arrogant", + "arrogantly", + "arrow", + "artificial", + "artist", + "artistic", + "ascend", + "ascertain", + "ascribe", + "ASEAN", + "ashore", + "ashtray", + "aspect", + "aspirin", + "assassinate", + "assassination", + "assassinator", + "assault", + "assemble", + "assembly", + "assert", + "assertion", + "assess", + "assessment", + "assign", + "assignment", + "assist", + "assistance", + "assistant", + "associate", + "associated", + "association", + "associative", + "assorted", + "assortment", + "assume", + "assumption", + "assurance", + "assure", + "assured", + "astonish", + "astonishment", + "astound", + "astray", + "astronaut", + "astronomer", + "astronomical", + "astronomy", + "athlete", + "athletic", + "Atlantic", + "atlas", + "atmosphere", + "atmospheric", + "atomic", + "attach", + "attachment", + "attain", + "attendance", + "attendant", + "attentive", + "attentively", + "attic", + "attitude", + "attorney", + "attract", + "attraction", + "attributable", + "attribute", + "attribution", + "attributive", + "auction", + "auditorium", + "august", + "aural", + "auspice", + "Australia", + "Australian", + "author", + "authority", + "authorization", + "authorize", + "autobiography", + "automate", + "automatic", + "automation", + "automobile", + "autonomous", + "autonomy", + "auxiliary", + "avail", + "availability", + "available", + "avenge", + "avenue", + "average", + "averagely", + "aviation", + "await", + "awaken", + "aware", + "awesome", + "awful", + "awfully", + "awkward", + "awkwardly", + "awkwardness", + "axial", + "bachelor", + "backbone", + "backdate", + "backing", + "backlog", + "backward", + "backwardness", + "bacon", + "bacterium", + "badge", + "badminton", + "baffle", + "baggage", + "baggy", + "baker", + "bakery", + "balance", + "balcony", + "ballet", + "balloon", + "ballooning", + "ballroom", + "bamboo", + "banana", + "bandage", + "bandit", + "banker", + "banking", + "bankrupt", + "banner", + "banquet", + "barber", + "barely", + "bargain", + "barge", + "barometer", + "baron", + "baroness", + "barrel", + "barren", + "barrier", + "barter", + "baseball", + "basement", + "basically", + "basin", + "basis", + "bathroom", + "batter", + "battery", + "bazaar", + "bearing", + "bearish", + "beast", + "beetle", + "beforehand", + "beggar", + "beginner", + "beginning", + "behalf", + "behave", + "behavior", + "behindhand", + "belief", + "belly", + "beloved", + "bench", + "beneath", + "beneficial", + "beneficiary", + "benefit", + "benevolence", + "benevolent", + "berry", + "bestow", + "betray", + "betrayal", + "better", + "beverage", + "beware", + "bewilder", + "bible", + "bicycle", + "bidding", + "billion", + "binding", + "biographer", + "biography", + "biologist", + "biology", + "birthplace", + "biscuit", + "bishop", + "bitterly", + "bitterness", + "blacksmith", + "blade", + "blank", + "blanket", + "blast", + "blaze", + "bleach", + "bleed", + "blend", + "bless", + "blessing", + "blink", + "blockage", + "blond", + "bloody", + "bloom", + "blossom", + "blouse", + "blunder", + "blunt", + "blush", + "boarding", + "boast", + "bodyguard", + "boiler", + "boiling", + "boldness", + "bomber", + "bonafide", + "bonded", + "bonus", + "booking", + "booklet", + "bookcase", + "bookshelf", + "bookstore", + "booming", + "boost", + "booth", + "boring", + "borrowings", + "bosom", + "bossy", + "bough", + "bounce", + "bound", + "boundary", + "bourgeois", + "bowling", + "boxer", + "boxing", + "boycott", + "brace", + "bracket", + "brake", + "brand", + "brandy", + "brass", + "bravely", + "bravery", + "brazil", + "Brazilian", + "breach", + "breadth", + "breakage", + "breakdown", + "breakthrough", + "breast", + "breed", + "breeze", + "bribe", + "bribery", + "bride", + "bridegroom", + "bridle", + "briefing", + "briefly", + "brighten", + "brightness", + "brilliance", + "brilliant", + "brink", + "brisk", + "bristle", + "Britain", + "British", + "brittle", + "broad", + "broadcast", + "broadcasting", + "broaden", + "brochure", + "broken", + "broker", + "bronze", + "brood", + "brook", + "broom", + "brotherhood", + "bruise", + "brutal", + "brute", + "bubble", + "bucket", + "Buddhism", + "Buddhist", + "budget", + "buffalo", + "buffet", + "bugle", + "builder", + "bulky", + "bullet", + "bulletin", + "bullion", + "bullish", + "bumpy", + "bunch", + "bundle", + "burden", + "burdensome", + "bureau", + "bureaucracy", + "bureaucratic", + "burglar", + "burglary", + "burial", + "burner", + "burnt", + "burst", + "bushel", + "businesslike", + "butcher", + "butchery", + "butterfly", + "button", + "buyer", + "bygone", + "bypass", + "cabbage", + "cabin", + "cabinet", + "cable", + "cafeteria", + "calculate", + "calculation", + "calculus", + "calendar", + "calmly", + "calorie", + "camel", + "camera", + "campaign", + "camping", + "campus", + "Canada", + "Canadian", + "canal", + "canary", + "cancel", + "cancellation", + "cancer", + "candid", + "candidate", + "candle", + "candy", + "canned", + "cannon", + "canoe", + "canon", + "canteen", + "canvas", + "canvass", + "capability", + "capacity", + "capita", + "capitalism", + "capitalist", + "capitalization", + "capitalize", + "captain", + "caption", + "captive", + "capture", + "caravan", + "carbon", + "cardboard", + "cardinal", + "career", + "carelessness", + "cargo", + "carol", + "carpenter", + "carpet", + "carriage", + "carrier", + "carrot", + "carton", + "cartoon", + "cartridge", + "carve", + "carving", + "cashier", + "cassette", + "castle", + "casualty", + "catalog", + "catastrophe", + "catalyst", + "category", + "cater", + "cathedral", + "catholic", + "caution", + "cautious", + "cavalry", + "cavern", + "cavity", + "cease", + "celebration", + "celery", + "cellar", + "cement", + "cemetery", + "censor", + "censorship", + "centigrade", + "centimeter", + "center", + "cereal", + "ceremonial", + "ceremony", + "certainty", + "certificate", + "certification", + "certify", + "chain", + "chairperson", + "chairwoman", + "chalk", + "challenge", + "challenging", + "chamber", + "championship", + "changeable", + "channel", + "chaos", + "chapter", + "characteristic", + "characteristical", + "characterize", + "charcoal", + "charge", + "charity", + "charm", + "charming", + "chart", + "charter", + "chase", + "chatter", + "cheat", + "cheating", + "cheek", + "cheeky", + "cheerful", + "cheese", + "chemist", + "cheque", + "cherish", + "cherry", + "chess", + "chest", + "chestnut", + "chick", + "chiefly", + "childhood", + "childish", + "childlike", + "chill", + "chilly", + "chimney", + "chocolate", + "choke", + "chorus", + "Christ", + "Christian", + "Christianity", + "cigar", + "cigarette", + "circular", + "circuit", + "circulate", + "circulation", + "circumference", + "circumstance", + "circus", + "citizen", + "citizenship", + "civil", + "civilization", + "civilize", + "claim", + "clamp", + "clarify", + "clarification", + "clash", + "clasp", + "classic", + "classical", + "classification", + "classify", + "classmate", + "clatter", + "clause", + "clearance", + "clearly", + "clench", + "clerk", + "cleverness", + "client", + "clientele", + "cliff", + "climate", + "climax", + "cling", + "clinic", + "cloak", + "clockwise", + "closed", + "closedown", + "closely", + "closet", + "clothe", + "clothing", + "cloudy", + "clown", + "clumsy", + "cluster", + "clutch", + "coach", + "coarse", + "coast", + "coastal", + "cocktail", + "codify", + "coefficient", + "coffin", + "coherence", + "coherent", + "cohesion", + "cohesive", + "coinage", + "coincide", + "coincidence", + "coincident", + "coldness", + "collaborate", + "collaboration", + "collapse", + "collar", + "colleague", + "collection", + "collective", + "collide", + "collision", + "colonel", + "colonial", + "colonist", + "colony", + "colorful", + "colorless", + "column", + "columnist", + "combat", + "combination", + "comedian", + "comedy", + "comic", + "commander", + "commemorate", + "commemoration", + "commence", + "commend", + "commandment", + "comment", + "commerce", + "commercial", + "commission", + "commit", + "commitment", + "commodity", + "commonly", + "commonplace", + "commonsense", + "commonwealth", + "commune", + "communicate", + "communication", + "communicative", + "communism", + "communist", + "community", + "compact", + "comparable", + "comparative", + "comparatively", + "comparison", + "compass", + "compatible", + "compel", + "compensate", + "compensation", + "competent", + "competitive", + "competitiveness", + "competitor", + "compile", + "complaint", + "complement", + "completely", + "completion", + "complex", + "complexity", + "compliance", + "complicate", + "complicated", + "compliment", + "complimentary", + "comply", + "component", + "componential", + "compose", + "composed", + "composer", + "composite", + "composition", + "compound", + "comprehend", + "comprehension", + "comprehensive", + "compress", + "compression", + "comprise", + "compromise", + "compels", + "compulsory", + "computation", + "compute", + "computerization", + "computerize", + "conceal", + "concede", + "conceit", + "conceited", + "conceive", + "concentrate", + "concentrated", + "concentration", + "concept", + "conception", + "conceptive", + "concern", + "concerned", + "concerning", + "concert", + "concerted", + "concession", + "concise", + "conclude", + "conclusion", + "conclusive", + "concrete", + "concur", + "concurrence", + "concurrent", + "condemn", + "condemnation", + "condensation", + "condense", + "condenser", + "conditional", + "conduce", + "conducive", + "conduction", + "confer", + "conference", + "confess", + "confession", + "confide", + "confidence", + "confidential", + "confine", + "confinement", + "confirm", + "confirmation", + "conflict", + "conform", + "conformity", + "confront", + "confrontation", + "confuse", + "confusion", + "congestion", + "congratulate", + "congratulation", + "congress", + "congressman", + "conjunction", + "connection", + "conquer", + "conqueror", + "conquest", + "conscience", + "conscientious", + "conscientiously", + "conscious", + "consciousness", + "consecutive", + "consent", + "consequence", + "consequently", + "conservation", + "conservative", + "considerable", + "considerably", + "considerate", + "consideration", + "consign", + "consignment", + "consist", + "consistency", + "consistent", + "console", + "consolidate", + "consolidated", + "consolidation", + "consonant", + "conspicuous", + "conspiracy", + "constable", + "constant", + "constantly", + "constituent", + "constitute", + "constitution", + "constitutive", + "constraint", + "construct", + "construction", + "construe", + "consul", + "consulate", + "consult", + "consultant", + "consultation", + "consume", + "consumer", + "consumption", + "contain", + "container", + "contemplate", + "contemplation", + "contemporary", + "contempt", + "contemptuous", + "content", + "contest", + "contestant", + "context", + "contextual", + "continent", + "continental", + "contingency", + "continual", + "continuance", + "continuously", + "contract", + "contracted", + "contractual", + "contradict", + "contradiction", + "contrast", + "contribute", + "contribution", + "controversy", + "controversial", + "convenience", + "convention", + "conventional", + "conversant", + "conversation", + "converse", + "conversely", + "conversion", + "convert", + "convey", + "conveyance", + "convict", + "conviction", + "convince", + "convinced", + "cooker", + "coolness", + "cooperate", + "cooperation", + "cooperative", + "coordinate", + "coordination", + "copper", + "cordial", + "cordially", + "corporate", + "corporation", + "correction", + "correctly", + "correlate", + "correlation", + "correspond", + "correspondence", + "correspondent", + "corresponding", + "corridor", + "corrode", + "corrosion", + "corrupt", + "corruption", + "cosmetics", + "cosmic", + "cosmos", + "cosmopolitan", + "costly", + "cottage", + "couch", + "cough", + "council", + "counsel", + "counsellor", + "countable", + "countenance", + "counter", + "countermand", + "countermeasure", + "counterpart", + "countersign", + "countersignature", + "countless", + "county", + "courageous", + "courteous", + "courtesy", + "courtyard", + "coverage", + "covering", + "coward", + "cowardly", + "crack", + "cracker", + "cradle", + "craft", + "craftsman", + "craftsmanship", + "crane", + "crash", + "crate", + "crave", + "crawl", + "craziness", + "cream", + "creamy", + "creation", + "creative", + "creature", + "credit", + "creditworthy", + "creditworthiness", + "creek", + "creep", + "cricket", + "crime", + "criminal", + "crimson", + "cripple", + "crisis", + "crisp", + "critic", + "critical", + "criticism", + "criticize", + "crook", + "crooked", + "crossing", + "crossroads", + "crouch", + "crude", + "cruelty", + "cruise", + "crumb", + "crumble", + "crush", + "crust", + "crutch", + "crystal", + "cubic", + "cubism", + "cuckoo", + "cucumber", + "cultivate", + "cultivation", + "cultural", + "culture", + "cunning", + "cupboard", + "curiosity", + "curious", + "curly", + "currency", + "current", + "currently", + "curse", + "curtail", + "curtain", + "curve", + "cushion", + "custody", + "customary", + "customs", + "cutlery", + "cutter", + "cutting", + "cyclist", + "dagger", + "dainty", + "dairy", + "damage", + "dancer", + "dangerous", + "Danish", + "Denmark", + "daring", + "darken", + "darkness", + "darling", + "dating", + "daybreak", + "daylight", + "daytime", + "dazzle", + "dazzling", + "deadline", + "deadly", + "deafen", + "dealer", + "dealing", + "death", + "deathly", + "debate", + "debit", + "decade", + "decay", + "deceased", + "deceit", + "deceive", + "deception", + "deceitful", + "decency", + "decent", + "decided", + "decidedly", + "decimal", + "decisive", + "declaration", + "decline", + "declining", + "decompose", + "decorate", + "decoration", + "decorative", + "decree", + "dedicate", + "deduce", + "deduct", + "deduction", + "deepen", + "deeply", + "default", + "defect", + "defective", + "defence", + "defer", + "defiance", + "defiant", + "deficiency", + "deficient", + "deficit", + "define", + "definite", + "definitely", + "definition", + "definitive", + "deflate", + "deflect", + "deflection", + "deform", + "deformation", + "defray", + "degradation", + "degrade", + "delcredere", + "delegate", + "delegation", + "delete", + "deletion", + "deliberate", + "deliberately", + "deliberation", + "delicacy", + "delicate", + "delicious", + "delightful", + "delinquency", + "delinquent", + "deliver", + "deliverance", + "delivery", + "delusion", + "delusive", + "demanding", + "democracy", + "democrat", + "demolish", + "demolition", + "demonstrate", + "demonstration", + "demurrage", + "denial", + "denominate", + "denomination", + "denote", + "denounce", + "dense", + "density", + "dentist", + "depart", + "departure", + "dependability", + "dependable", + "dependant", + "dependence", + "dependent", + "depict", + "depiction", + "deplete", + "deposit", + "deposition", + "depreciate", + "depreciation", + "depress", + "depressed", + "depression", + "deprive", + "deputy", + "derivation", + "derive", + "derrick", + "descend", + "descendant", + "descent", + "description", + "desert", + "deserve", + "design", + "designate", + "designation", + "designer", + "desirable", + "desolate", + "desolation", + "despair", + "desperate", + "desperation", + "despise", + "dessert", + "destination", + "destine", + "destiny", + "destroy", + "destruction", + "destructive", + "detach", + "detail", + "detailed", + "detain", + "detect", + "detection", + "detective", + "deteriorate", + "deterioration", + "determination", + "determine", + "detour", + "detract", + "detriment", + "detrimental", + "devaluation", + "devalue", + "developing", + "development", + "deviate", + "deviation", + "device", + "devil", + "devise", + "devoted", + "devotion", + "devour", + "diagnose", + "diagnosis", + "diagram", + "dialect", + "dialog", + "diameter", + "dictate", + "dictation", + "dictator", + "dictatorship", + "diction", + "diesel", + "differ", + "differential", + "differently", + "digest", + "digestion", + "digit", + "digital", + "dignity", + "dilute", + "diligent", + "dimension", + "dimensional", + "diminish", + "dingy", + "diploma", + "diplomacy", + "diplomat", + "diplomatic", + "directive", + "directly", + "director", + "directory", + "disable", + "disabled", + "disadvantage", + "disadvantageous", + "disagree", + "disagreement", + "disallow", + "disappearance", + "disappoint", + "disappointed", + "disappointment", + "disapproval", + "disaster", + "disastrous", + "disburse", + "disbursement", + "discard", + "discern", + "discharge", + "disciplinary", + "discipline", + "disclaim", + "disclose", + "discomfort", + "discomfortable", + "discontinue", + "discount", + "discourse", + "discovery", + "discreet", + "discreetly", + "discrepancy", + "discretion", + "discriminate", + "discrimination", + "discussion", + "disdain", + "disease", + "disgrace", + "disgraceful", + "disguise", + "disgust", + "disgustful", + "dishonorable", + "dishonor", + "disillusion", + "disinclined", + "disinfectant", + "disintegration", + "dislike", + "disloyal", + "disloyalty", + "dismal", + "dismay", + "dismiss", + "dismissal", + "disobey", + "disorder", + "disparity", + "dispatch", + "dispel", + "dispense", + "disperse", + "displace", + "displacement", + "display", + "displease", + "displeasure", + "disposal", + "dispose", + "disposed", + "disposition", + "dispute", + "disregard", + "dissatisfaction", + "dissatisfy", + "dissimilar", + "dissipate", + "dissolve", + "distance", + "distant", + "distillation", + "distinct", + "distinction", + "distinctly", + "distinguish", + "distinguished", + "distort", + "distortion", + "distract", + "distraction", + "distress", + "distribute", + "distribution", + "distributor", + "distributorship", + "district", + "disturb", + "disturbance", + "disunite", + "disuse", + "ditch", + "ditto", + "diver", + "diverge", + "divergence", + "diverse", + "diversion", + "diversity", + "divert", + "divine", + "division", + "divorce", + "dizzy", + "doctrine", + "document", + "documentary", + "documentation", + "dodge", + "doggedly", + "domain", + "domestic", + "dominant", + "dominate", + "donate", + "donation", + "donkey", + "doorway", + "dormitory", + "doubtful", + "doubtless", + "dough", + "downstairs", + "downtown", + "downward", + "downwards", + "dozen", + "draft", + "dragon", + "drain", + "drainage", + "drama", + "dramatic", + "dramatist", + "dramatize", + "drastic", + "drawback", + "drawer", + "drawing", + "dread", + "dreadful", + "dreary", + "drench", + "dressing", + "drift", + "drill", + "driver", + "droop", + "dropout", + "drought", + "drown", + "drugstore", + "drunk", + "drunkard", + "dubious", + "dummy", + "dumping", + "dungeon", + "duplicate", + "durable", + "duration", + "dustbin", + "dusty", + "dwarf", + "dwell", + "dweller", + "dwelling", + "dynamic", + "dynasty", + "eagle", + "earmark", + "earnest", + "earnings", + "earphone", + "earthly", + "earthquake", + "easily", + "Easter", + "eastward", + "eccentric", + "eccentricity", + "eclipse", + "ecology", + "economic", + "economical", + "economically", + "economics", + "economize", + "economy", + "ecstasy", + "edition", + "editor", + "editorial", + "educational", + "effect", + "effective", + "effectively", + "effectiveness", + "efficiency", + "efficient", + "eggplant", + "Egypt", + "Egyptian", + "eighteen", + "eject", + "ejection", + "elaborate", + "elaboration", + "elapse", + "elastic", + "elasticity", + "elbow", + "election", + "electrical", + "electrician", + "electrify", + "electron", + "electronic", + "electronics", + "elegance", + "elegant", + "element", + "elemental", + "elementary", + "elephant", + "elevate", + "elevation", + "elevator", + "eleventh", + "eliminate", + "elimination", + "elliptical", + "ellipsis", + "eloquence", + "eloquent", + "elusive", + "email", + "emancipate", + "emancipation", + "embargo", + "embark", + "embarrassing", + "embarrassment", + "embassy", + "embody", + "embrace", + "embroider", + "embroidery", + "emerge", + "emergency", + "emigrant", + "emigrate", + "emigration", + "eminent", + "emission", + "emotional", + "emphasis", + "emphasize", + "emphatic", + "empire", + "empirical", + "employee", + "employer", + "employment", + "emptiness", + "enable", + "enchant", + "encircle", + "enclose", + "enclosure", + "encounter", + "encouragement", + "encyclopaedia", + "endanger", + "endeavor", + "ending", + "endless", + "endorse", + "endorsement", + "endow", + "endurance", + "endure", + "endures", + "energetic", + "energy", + "enforce", + "engaged", + "engagement", + "engineer", + "engineering", + "Englishman", + "engrave", + "engraving", + "engulf", + "enhance", + "enhancement", + "enjoyable", + "enjoyment", + "enlarge", + "enlargement", + "enlighten", + "enlightening", + "enormous", + "enquire", + "enquiry", + "enrich", + "enroll", + "enrolment", + "enroute", + "ensure", + "entail", + "enterprise", + "entertain", + "entertainment", + "enthusiasm", + "enthusiastic", + "entirely", + "entirety", + "entitle", + "entrance", + "entreat", + "entrust", + "entry", + "enumerate", + "envelop", + "envelope", + "envious", + "environment", + "environmental", + "epidemic", + "episode", + "epoch", + "equality", + "equally", + "equation", + "equator", + "equilibrium", + "equip", + "equipment", + "equivalence", + "equivalent", + "eradicate", + "eradication", + "erase", + "erasure", + "erect", + "erection", + "erosion", + "errand", + "error", + "erupt", + "eruption", + "escalator", + "escort", + "especial", + "essay", + "essayist", + "essence", + "essential", + "essentially", + "establish", + "established", + "establishment", + "estate", + "esteem", + "estimate", + "estimation", + "eternal", + "evaluate", + "evaluation", + "evaporate", + "evaporation", + "evenly", + "eventful", + "everlasting", + "evidence", + "evident", + "evidently", + "evolution", + "evolve", + "exactly", + "exaggerate", + "exaggerated", + "exaggeration", + "exalt", + "exalted", + "exasperate", + "exasperation", + "exceed", + "exceedingly", + "excel", + "excellence", + "exception", + "exceptional", + "excess", + "excessive", + "exchange", + "excited", + "excitement", + "exclaim", + "exclamation", + "exclude", + "exclusion", + "exclusive", + "exclusively", + "exclusivity", + "excursion", + "execute", + "execution", + "executive", + "exemplify", + "exempt", + "exert", + "exertion", + "exhaust", + "exhausted", + "exhaustion", + "exhaustive", + "exhibit", + "exile", + "existence", + "existing", + "exonerate", + "exoneration", + "expand", + "expansion", + "expectation", + "expedience", + "expedient", + "expedite", + "expedition", + "expel", + "expend", + "expenditure", + "expense", + "experienced", + "experimental", + "experimentation", + "expertise", + "expiration", + "expire", + "expiry", + "explanation", + "explanatory", + "explicit", + "explicitly", + "explode", + "exploit", + "exploitation", + "exploration", + "explore", + "explorer", + "explosion", + "explosive", + "export", + "exportation", + "exporter", + "expose", + "exposition", + "exposure", + "expression", + "expressive", + "expressly", + "expressway", + "exquisite", + "extend", + "extension", + "extensive", + "extensively", + "extent", + "exterior", + "external", + "extinct", + "extinction", + "extinguish", + "extra", + "extract", + "extraction", + "extraordinary", + "extravagance", + "extravagant", + "extreme", + "extremely", + "eyeball", + "eyebrow", + "eyeglass", + "eyelid", + "eyesight", + "fable", + "fabric", + "fabricate", + "fabrication", + "facilitate", + "facility", + "faction", + "factor", + "Fahrenheit", + "fairly", + "fairy", + "faith", + "faithful", + "faithfully", + "FALSE", + "familiarity", + "famine", + "fanatic", + "fancy", + "fantastic", + "farewell", + "farmer", + "farmhand", + "farmhouse", + "farming", + "farther", + "fascinate", + "fascination", + "fascism", + "fascist", + "fashion", + "fashionable", + "fasten", + "fatal", + "fathom", + "fatigue", + "faultless", + "faulty", + "favor", + "favorable", + "favorably", + "favorite", + "fearful", + "fearless", + "feasibility", + "feasible", + "feast", + "feather", + "feature", + "federal", + "federation", + "feeble", + "feedback", + "fellowship", + "female", + "feminine", + "fence", + "ferocious", + "ferrous", + "ferry", + "ferryboat", + "fertile", + "fertilizer", + "fervent", + "festival", + "fetch", + "feudal", + "feudalism", + "fiber", + "fiction", + "fictional", + "fiddle", + "fierce", + "fiery", + "fighter", + "figurative", + "figure", + "filing", + "filling", + "filter", + "filth", + "filthy", + "finalize", + "finally", + "finance", + "financial", + "financier", + "financing", + "finding", + "finished", + "finite", + "fireman", + "fireplace", + "firework", + "firmly", + "firmness", + "fisherman", + "fishery", + "fission", + "fitness", + "fitting", + "fixed", + "fixture", + "flake", + "flame", + "flank", + "flannel", + "flare", + "flash", + "flask", + "flatten", + "flatter", + "flavor", + "fleece", + "fleet", + "flesh", + "fleshy", + "flexibility", + "flexible", + "flicker", + "flight", + "fling", + "flock", + "flour", + "flourish", + "fluctuate", + "fluctuation", + "fluency", + "fluent", + "fluid", + "flush", + "flute", + "flutter", + "focus", + "fodder", + "foggy", + "foliage", + "follower", + "following", + "foodstuff", + "footing", + "footstep", + "forbid", + "forbidden", + "forecast", + "forefather", + "forefinger", + "foregoing", + "forehead", + "foreigner", + "foreman", + "foremost", + "foresee", + "forestry", + "foretell", + "forge", + "forgery", + "forgive", + "formality", + "format", + "formation", + "formerly", + "formidable", + "formula", + "formulate", + "formulation", + "forsake", + "forth", + "forthcoming", + "fortitude", + "fortnight", + "fortress", + "fortuity", + "fortunately", + "forum", + "fossil", + "foster", + "found", + "foundation", + "founder", + "fountain", + "fourth", + "fraction", + "fractional", + "fracture", + "fragile", + "fragment", + "fragrance", + "fragrant", + "frail", + "frame", + "framework", + "France", + "franchise", + "frank", + "frankly", + "freely", + "freezer", + "freight", + "Frenchman", + "frequency", + "frequently", + "freshen", + "freshman", + "friction", + "fright", + "frightening", + "frightful", + "fringe", + "frock", + "frontier", + "frost", + "frosty", + "frown", + "frugal", + "fruitful", + "frustrate", + "frustration", + "fulfil", + "fulfillment", + "fully", + "fumble", + "function", + "functional", + "fundamental", + "funeral", + "furious", + "furnace", + "furnish", + "furrow", + "fussy", + "futures", + "gallery", + "gallon", + "gallop", + "gamble", + "gambler", + "gangster", + "garage", + "garbage", + "gardener", + "gardening", + "garlic", + "garment", + "garrison", + "gasoline", + "gathering", + "gauge", + "generalization", + "generalize", + "generally", + "generate", + "generation", + "generator", + "generosity", + "generous", + "genius", + "gently", + "genuine", + "geology", + "geometry", + "gesture", + "ghost", + "giant", + "gigantic", + "giggle", + "ginger", + "giver", + "glare", + "glassware", + "gleam", + "glide", + "glimpse", + "glisten", + "glitter", + "global", + "globalization", + "globalize", + "globe", + "gloom", + "gloomy", + "glorious", + "glorify", + "glossary", + "glove", + "goddess", + "goodness", + "goods", + "goodwill", + "goose", + "gorge", + "gorgeous", + "gorilla", + "gossip", + "govern", + "governess", + "governor", + "grace", + "graceful", + "gracious", + "gradually", + "graduation", + "grammatical", + "gramophone", + "grand", + "grandchild", + "grandparent", + "granite", + "grant", + "grape", + "graph", + "grasp", + "grasshopper", + "gratify", + "gratifying", + "gratis", + "gratitude", + "grave", + "gravel", + "gravity", + "graze", + "grease", + "greatly", + "greatness", + "Greece", + "greed", + "greedy", + "Greek", + "greengrocer", + "greenhouse", + "greeting", + "grief", + "grieve", + "grind", + "groan", + "grocer", + "grocery", + "groove", + "grope", + "gross", + "groundless", + "grove", + "growl", + "grown", + "growth", + "grudge", + "grumble", + "grunt", + "guarantee", + "guardian", + "guesthouse", + "guidance", + "guilt", + "guilty", + "guitar", + "gunpowder", + "gutter", + "gymnasium", + "gymnastics", + "gymnast", + "habitual", + "haggard", + "haggle", + "haircut", + "hairdress", + "hairpin", + "hairy", + "halfway", + "hallmark", + "halve", + "hamburger", + "hammer", + "hamper", + "handbag", + "handbook", + "handful", + "handicap", + "handicapped", + "handkerchief", + "handle", + "handling", + "handout", + "handwriting", + "handy", + "hanger", + "haphazard", + "happening", + "happily", + "happiness", + "harbor", + "harden", + "hardness", + "hardship", + "hardware", + "hardy", + "harmful", + "harmless", + "harmonious", + "harmony", + "harness", + "harsh", + "haste", + "hasten", + "hasty", + "hatch", + "hateful", + "hatred", + "haughty", + "haunt", + "hazard", + "heading", + "headline", + "headlong", + "headmaster", + "healthy", + "hearing", + "heartfelt", + "hearth", + "heartily", + "hearty", + "heated", + "heating", + "heave", + "heavily", + "hedge", + "hedgehog", + "heighten", + "heiress", + "helicopter", + "helmet", + "helpful", + "helpless", + "hemisphere", + "hence", + "henceforth", + "herald", + "herbal", + "hereafter", + "hereby", + "herein", + "hereinafter", + "hereof", + "hereto", + "herewith", + "heroic", + "heroine", + "hesitant", + "hesitate", + "hesitation", + "hideous", + "highland", + "highway", + "hijack", + "hijacker", + "hillside", + "hinder", + "hinterland", + "hindrance", + "hinge", + "historian", + "historic", + "historical", + "hitchhike", + "hitherto", + "hoarse", + "hobby", + "hoist", + "holder", + "holding", + "hollow", + "homeless", + "homely", + "homesick", + "homogenous", + "honesty", + "honey", + "honeymoon", + "honor", + "honorable", + "hopeful", + "hopefully", + "hopeless", + "horizon", + "horizontal", + "horrible", + "horrify", + "horror", + "horsepower", + "hospitable", + "hospitality", + "hostage", + "hostel", + "hostess", + "hostile", + "hotdog", + "hotelling", + "hound", + "household", + "housekeeper", + "housewife", + "housework", + "hover", + "humane", + "humanism", + "humanitarian", + "humanity", + "humble", + "humid", + "humidity", + "humiliate", + "humiliation", + "humor", + "humorous", + "hundredth", + "hunger", + "hunter", + "hurrah", + "hustle", + "hydraulic", + "hydroelectric", + "hydrogen", + "hygiene", + "hypocrisy", + "hypothesis", + "hypothetical", + "hysteria", + "hysteric", + "Iceland", + "ideal", + "idealism", + "idealize", + "identical", + "identification", + "identify", + "identity", + "idiom", + "idiomatic", + "idiot", + "idleness", + "ignite", + "ignorance", + "ignorant", + "illegal", + "illegible", + "illiteracy", + "illiterate", + "illuminate", + "illusion", + "illusive", + "illustrate", + "illustration", + "image", + "imaginary", + "imagination", + "imitate", + "imitation", + "immaterial", + "immature", + "immediate", + "immediately", + "immense", + "immerse", + "immigrant", + "immigrate", + "immigration", + "imminent", + "immoral", + "immortal", + "impact", + "impart", + "impartial", + "impatience", + "impatient", + "imperative", + "imperfect", + "imperialism", + "imperialist", + "implement", + "implementation", + "implication", + "implied", + "implore", + "imply", + "importance", + "importation", + "importer", + "impose", + "imposition", + "impossibility", + "impost", + "impractical", + "impress", + "impression", + "impressive", + "imprison", + "imprisonment", + "improper", + "improvement", + "impulse", + "impurity", + "inability", + "inaccessible", + "inaccurate", + "inadequate", + "inasmuch", + "inaugural", + "inaugurate", + "inauguration", + "incapable", + "incense", + "incentive", + "incidentally", + "inclination", + "incline", + "inclined", + "inclusion", + "inclusive", + "incompatibility", + "incompatible", + "incomplete", + "inconsistency", + "inconsistent", + "inconvenience", + "inconvenient", + "incorporate", + "incorporated", + "incorrect", + "incoterms", + "increasing", + "increasingly", + "incredible", + "incredulous", + "increment", + "incur", + "indebted", + "indebtedness", + "indefinite", + "indefinitely", + "indemnify", + "indent", + "independence", + "independent", + "independently", + "index", + "indication", + "indicative", + "indifference", + "indifferent", + "indigestion", + "indignant", + "indignation", + "indirect", + "indirectly", + "indispensable", + "individual", + "indoor", + "indoors", + "induce", + "inducement", + "induction", + "indulge", + "industrial", + "industrialize", + "industrialization", + "industrialized", + "industrious", + "ineffective", + "ineffectiveness", + "inefficiency", + "inefficient", + "inertia", + "inevitable", + "inevitably", + "inexpensive", + "infant", + "infantry", + "infect", + "infection", + "infectious", + "infer", + "inference", + "inferior", + "inferiority", + "infinite", + "infinitely", + "infinitive", + "infinity", + "inflammable", + "inflation", + "inflict", + "influential", + "influenza", + "inform", + "informal", + "informative", + "infrequent", + "infringe", + "infringement", + "ingenious", + "ingenuity", + "inhabit", + "inhabitant", + "inherent", + "inherit", + "initial", + "initially", + "initiate", + "initiative", + "inject", + "injection", + "injure", + "injury", + "injustice", + "inland", + "inlet", + "inner", + "innocence", + "innocent", + "innovate", + "innovation", + "innumerable", + "inorganic", + "input", + "inquire", + "inquiry", + "insane", + "insect", + "insert", + "insertion", + "insider", + "insight", + "insignificant", + "insistent", + "insofar", + "insolvent", + "inspect", + "inspection", + "inspector", + "inspiration", + "inspire", + "instable", + "install", + "installation", + "installment", + "instant", + "instantly", + "instinct", + "instinctive", + "institute", + "institution", + "instruct", + "instruction", + "instructive", + "instructor", + "instrumental", + "insufficient", + "insulate", + "insulation", + "insult", + "insurance", + "insure", + "intangible", + "integral", + "integrate", + "integration", + "integrity", + "intellect", + "intellectual", + "intelligence", + "intelligent", + "intense", + "intensity", + "intensive", + "intent", + "intention", + "intentional", + "interact", + "interaction", + "intercourse", + "interested", + "interface", + "interfere", + "interference", + "interior", + "intermediate", + "internal", + "international", + "internationalization", + "internationalize", + "interpret", + "interpretation", + "interpreter", + "interrupt", + "interruption", + "interval", + "intervene", + "intimate", + "intimation", + "intonation", + "introduction", + "introductory", + "intrude", + "inundate", + "invade", + "invader", + "invalid", + "invalidate", + "invaluable", + "invariably", + "invasion", + "invent", + "invention", + "inventor", + "inverse", + "inversely", + "invest", + "investigate", + "investigation", + "investment", + "invisible", + "invitation", + "invoice", + "involved", + "involvement", + "inward", + "inwards", + "Ireland", + "Irish", + "ironical", + "irony", + "irregular", + "irregularity", + "irresistible", + "irrespective", + "irrevocable", + "irrigate", + "irrigation", + "irritate", + "irritation", + "Islam", + "isolate", + "isolation", + "Italian", + "Italy", + "itemize", + "ivory", + "jacket", + "Japanese", + "jealousy", + "jealous", + "jeans", + "jelly", + "jeopardize", + "Jesus", + "jettison", + "jewel", + "jewelry", + "Jewish", + "jingle", + "jobless", + "joint", + "journal", + "journalism", + "journalist", + "joyful", + "judge", + "judgement", + "juice", + "juicy", + "jumble", + "junction", + "jungle", + "junior", + "Jupiter", + "justice", + "justifiable", + "justification", + "justify", + "juvenile", + "kangaroo", + "keeper", + "keeping", + "kernel", + "kerosene", + "kettle", + "keyboard", + "keyhole", + "kidnap", + "kidnaper", + "kidney", + "killer", + "kilogram", + "kilometer", + "kilowatt", + "kindergarten", + "kindle", + "kindly", + "kindness", + "kingdom", + "kneel", + "knight", + "knowledgeable", + "label", + "laboratory", + "labor", + "laborer", + "landed", + "landing", + "landlady", + "landlord", + "landscape", + "Langkap", + "lantern", + "lapse", + "largely", + "laser", + "lasting", + "lately", + "latent", + "later", + "lateral", + "lathe", + "Latin", + "latitude", + "latter", + "lattice", + "launch", + "laundry", + "lavatory", + "lawful", + "layday", + "layer", + "layout", + "laziness", + "leader", + "leadership", + "leading", + "leaflet", + "league", + "leakage", + "learned", + "learner", + "learning", + "lease", + "least", + "leather", + "lecturer", + "leeway", + "leftover", + "legal", + "legend", + "legendary", + "legislation", + "legitimate", + "leisure", + "lemon", + "lemonade", + "lending", + "lengthen", + "Leninism", + "leopard", + "lessen", + "lever", + "liability", + "liable", + "liberal", + "liberate", + "liberation", + "liberty", + "librarian", + "library", + "license", + "lieutenant", + "lifetime", + "lighten", + "lighter", + "lighthouse", + "lightly", + "lightning", + "likelihood", + "likely", + "likeness", + "likewise", + "liking", + "limestone", + "limit", + "limitation", + "limited", + "limousine", + "linear", + "linen", + "liner", + "linger", + "linguist", + "linguistics", + "lining", + "lioness", + "lipstick", + "liquor", + "listener", + "literacy", + "literal", + "literally", + "literary", + "literate", + "literature", + "litre", + "litter", + "livelihood", + "lively", + "liver", + "livestock", + "living", + "lobby", + "lobster", + "local", + "locality", + "locate", + "location", + "locomotive", + "locust", + "lodge", + "lodging", + "lofty", + "logic", + "logical", + "loneliness", + "lonesome", + "longevity", + "longing", + "longitude", + "loosen", + "lorry", + "lottery", + "loudness", + "loudspeaker", + "lounge", + "lovable", + "lover", + "loyal", + "loyalty", + "lubricate", + "lubrication", + "lucky", + "luggage", + "lumber", + "luminous", + "lumpsum", + "lunar", + "luncheon", + "luxurious", + "luxury", + "machinery", + "mackintosh", + "macroeconomics", + "madam", + "madman", + "madness", + "magic", + "magician", + "magistrate", + "magnet", + "magnetic", + "magnetism", + "magnificent", + "magnify", + "magnitude", + "maiden", + "mailbox", + "mainland", + "mainly", + "mainstream", + "maintenance", + "maize", + "majesty", + "maker", + "malady", + "malaria", + "malaise", + "Malaysia", + "malice", + "malicious", + "management", + "managerial", + "manhood", + "manifest", + "manifestation", + "manifesto", + "manipulate", + "manipulation", + "manly", + "mansion", + "manual", + "manufacture", + "manufactured", + "manufacturer", + "manuscript", + "maple", + "marble", + "margin", + "marginal", + "marine", + "mariner", + "marked", + "marketable", + "marketing", + "marketplace", + "marking", + "married", + "marsh", + "marshal", + "martyr", + "marvel", + "marvellous", + "Marxism", + "Marxist", + "masculine", + "massacre", + "massage", + "massive", + "massmedia", + "masterpiece", + "materialism", + "materialize", + "mathematical", + "mathematician", + "maths", + "matinee", + "mattress", + "mature", + "maturity", + "maximize", + "maximum", + "meadow", + "meantime", + "meanwhile", + "measurement", + "mechanic", + "mechanical", + "mechanically", + "mechanics", + "mechanism", + "medal", + "medical", + "medieval", + "meditate", + "meditation", + "Mediterranean", + "melancholy", + "melody", + "melon", + "membership", + "memoir", + "memorial", + "memorize", + "menace", + "mental", + "mentality", + "mention", + "merchandise", + "mercantile", + "merciful", + "mercury", + "mercy", + "merely", + "merge", + "merit", + "mermaid", + "messenger", + "metallic", + "metallurgy", + "method", + "methodology", + "meticulous", + "meticulously", + "metre", + "metric", + "metropolitan", + "Mexican", + "Mexico", + "microeconomics", + "microphone", + "microprocessor", + "microscope", + "microwave", + "midday", + "middleman", + "middling", + "midnight", + "midst", + "mighty", + "migrant", + "migrate", + "migration", + "mileage", + "milestone", + "militia", + "milkman", + "milky", + "miller", + "millimetre", + "millionaire", + "mince", + "mincer", + "miner", + "mineral", + "mingle", + "miniature", + "minicomputer", + "minimize", + "minimum", + "ministry", + "minor", + "minority", + "minus", + "miracle", + "miraculous", + "miscarriage", + "miscarry", + "mischief", + "miser", + "miserable", + "misery", + "misfortune", + "misgiving", + "mishandle", + "mishap", + "misinterpret", + "mislead", + "missile", + "mission", + "missionary", + "mistaken", + "mister", + "mistress", + "misty", + "misunderstand", + "misunderstanding", + "mitten", + "mixer", + "mixture", + "mobile", + "mobilize", + "moderate", + "moderately", + "modernization", + "modernize", + "modesty", + "modification", + "modified", + "modify", + "modulate", + "module", + "moist", + "moisture", + "molecular", + "molecule", + "momentary", + "momentous", + "monarch", + "monastery", + "monetary", + "money", + "monitor", + "monopolize", + "monopoly", + "monotonous", + "monotony", + "monster", + "monstrous", + "monthly", + "monument", + "monumental", + "moonlight", + "moonlighting", + "moral", + "morale", + "morality", + "moreover", + "mortal", + "Moslem", + "mosque", + "mosquito", + "mostly", + "motel", + "motion", + "motionless", + "motivate", + "motivation", + "motive", + "motorcar", + "motorcycle", + "motorist", + "motorway", + "motto", + "mould", + "mount", + "mountainous", + "mourn", + "mournful", + "mourning", + "mouse", + "moustache", + "mouthful", + "movement", + "movie", + "muddy", + "muffle", + "muffler", + "multiple", + "multiplication", + "multiply", + "multifunction", + "multitude", + "municipal", + "mumble", + "mumps", + "murderer", + "murmur", + "muscle", + "muscular", + "mushroom", + "musical", + "musician", + "mustard", + "mutter", + "mutton", + "mutual", + "myriad", + "mysterious", + "mystery", + "mystic", + "mythology", + "naive", + "naked", + "nameless", + "namely", + "namesake", + "napkin", + "narrate", + "narration", + "narrator", + "nasty", + "nationality", + "natural", + "naturally", + "nature", + "naughty", + "nausea", + "naval", + "navel", + "navigable", + "navigation", + "nearby", + "necessarily", + "necessitate", + "necessity", + "necklace", + "needful", + "needle", + "needless", + "needy", + "negate", + "negation", + "neglect", + "negligence", + "negligent", + "negligible", + "negotiable", + "negotiate", + "negotiation", + "negro", + "neighbor", + "neighborhood", + "neighboring", + "nephew", + "nerve", + "nervous", + "nestle", + "network", + "neutral", + "neutrality", + "neutron", + "nevertheless", + "nickel", + "nickname", + "niece", + "nightgown", + "nightingale", + "nightmare", + "nitrogen", + "nobility", + "noble", + "noisy", + "nominal", + "nominate", + "nomination", + "nonsense", + "normal", + "normalization", + "normalize", + "normally", + "northeast", + "northward", + "northwest", + "nostril", + "notable", + "notably", + "notebook", + "noted", + "noticeable", + "notification", + "notify", + "notion", + "notorious", + "notwithstanding", + "nought", + "nourish", + "nourishment", + "novel", + "novelist", + "novelette", + "novelty", + "nowadays", + "nowhere", + "nuclear", + "nucleus", + "nuisance", + "nullify", + "numerical", + "numerous", + "nursery", + "nylon", + "obedience", + "obedient", + "objection", + "objective", + "obligation", + "oblige", + "obliterate", + "oblong", + "obscure", + "observance", + "observation", + "observe", + "observer", + "obstacle", + "obstinate", + "obstruction", + "obtainable", + "obviously", + "occasion", + "occasional", + "occasionally", + "occident", + "occidental", + "occupation", + "occupy", + "occur", + "occurrence", + "Oceania", + "oceanography", + "odour", + "offence", + "offend", + "offensive", + "offering", + "officer", + "offset", + "offspring", + "olive", + "ominous", + "omission", + "onion", + "onset", + "onward", + "opaque", + "opener", + "opening", + "opera", + "operate", + "operational", + "operative", + "operator", + "opium", + "opponent", + "opportune", + "opportunity", + "oppose", + "opposite", + "opposition", + "oppress", + "oppression", + "optical", + "optimal", + "optimism", + "optimistic", + "optimize", + "optimum", + "option", + "optional", + "orbit", + "orchard", + "orchestra", + "order", + "orderly", + "ordinarily", + "organ", + "organic", + "organism", + "organization", + "organizational", + "organize", + "orient", + "oriental", + "orientation", + "origin", + "original", + "originality", + "originally", + "originate", + "ornament", + "ornamental", + "orphan", + "oscillation", + "otherwise", + "ounce", + "outbreak", + "outcome", + "outdoor", + "outdoors", + "outer", + "outermost", + "outland", + "outlandish", + "outlaw", + "outlay", + "outlet", + "outlook", + "output", + "outrage", + "outrageous", + "outright", + "outset", + "outsider", + "outskirts", + "outstanding", + "outturn", + "outward", + "overall", + "overcast", + "overcharge", + "overcoat", + "overcome", + "overestimate", + "overextend", + "overflow", + "overhead", + "overhear", + "overjoy", + "overlap", + "overlapping", + "overload", + "overlook", + "overnight", + "overpayment", + "overseas", + "oversight", + "overtake", + "overthrow", + "overtime", + "overwhelm", + "overwhelming", + "owing", + "ownership", + "oxide", + "oxygen", + "oyster", + "pacific", + "package", + "packaging", + "packet", + "packing", + "painful", + "paint", + "painter", + "painting", + "pamphlet", + "panda", + "panel", + "panic", + "panorama", + "panoramic", + "panther", + "pantry", + "pants", + "papercut", + "papercutting", + "papers", + "parachute", + "parade", + "paradise", + "paragraph", + "parallel", + "paralyse", + "parameter", + "parasite", + "parcel", + "Paris", + "parish", + "parking", + "parliament", + "parlor", + "parrot", + "partial", + "partially", + "participant", + "participate", + "participation", + "particle", + "particularly", + "partition", + "partner", + "partnership", + "passable", + "passion", + "passionate", + "passive", + "paste", + "pastime", + "pasture", + "patch", + "patent", + "pathetic", + "patience", + "patriot", + "patriotic", + "patriotism", + "patrol", + "patron", + "patronage", + "pause", + "pavement", + "payable", + "payment", + "peaceful", + "peach", + "peacock", + "peanut", + "pearl", + "peasantry", + "pebble", + "peculiar", + "peculiarity", + "pedal", + "pedestrian", + "pedlar", + "penalty", + "pending", + "penetrate", + "penetration", + "penicillin", + "peninsular", + "pension", + "pepper", + "perceive", + "percentage", + "perception", + "perch", + "perfection", + "perfectly", + "perform", + "performance", + "performer", + "perfume", + "peril", + "perimeter", + "peripheral", + "perish", + "permanence", + "permanent", + "permanently", + "permission", + "permissive", + "perpendicular", + "perpetual", + "perplex", + "persecute", + "persecution", + "persevere", + "perseverance", + "persist", + "persistence", + "personal", + "personality", + "personally", + "perspective", + "persuasion", + "pertain", + "pertinence", + "pertinent", + "perturb", + "perturbed", + "perusal", + "peruse", + "pessimist", + "pessimistic", + "petition", + "petrol", + "petroleum", + "petty", + "phase", + "phenomenon", + "philosopher", + "philosophical", + "philosophy", + "phone", + "phonetics", + "photo", + "photograph", + "photographer", + "photography", + "photostatic", + "phrase", + "physical", + "physically", + "physician", + "physicist", + "pianist", + "pickle", + "pickpocket", + "picnic", + "pictorial", + "picturesque", + "pigeon", + "pigment", + "pilferage", + "pilgrim", + "pilgrimage", + "pillar", + "pillow", + "pilot", + "pinch", + "pineapple", + "pioneer", + "pioneering", + "pious", + "pipeline", + "pirate", + "pistol", + "piston", + "pitch", + "pitcher", + "plague", + "plantation", + "plaster", + "plastic", + "plastics", + "plateau", + "platinum", + "player", + "playground", + "playmate", + "playwright", + "plead", + "pleased", + "pledge", + "plenary", + "plentiful", + "plight", + "plough", + "pluck", + "plumb", + "plumber", + "plume", + "plump", + "plunder", + "plunge", + "plural", + "pneumatic", + "pneumonia", + "poetry", + "pointed", + "poison", + "poisonous", + "poker", + "polar", + "polarity", + "policy", + "polish", + "politeness", + "politician", + "pollute", + "pollution", + "polymer", + "ponder", + "popcorn", + "popular", + "popularity", + "popularize", + "porcelain", + "porch", + "porridge", + "portable", + "porter", + "portion", + "portrait", + "portray", + "Portugal", + "Portuguese", + "positive", + "positively", + "possess", + "possession", + "possessive", + "possibility", + "possibly", + "postage", + "postal", + "postcard", + "posterity", + "postman", + "postpone", + "postponement", + "postulate", + "potent", + "potential", + "potentiality", + "poultry", + "pound", + "powder", + "power", + "powerful", + "practicable", + "practically", + "prairie", + "praise", + "prayer", + "preach", + "preacher", + "precaution", + "precede", + "precedence", + "precedent", + "preceding", + "precious", + "precise", + "precisely", + "precision", + "predecessor", + "predict", + "prediction", + "predominance", + "predominant", + "preface", + "prefer", + "preferable", + "preferably", + "preference", + "preferential", + "prefix", + "pregnancy", + "pregnant", + "prejudice", + "preliminary", + "prelude", + "premature", + "premier", + "premises", + "premium", + "preoccupy", + "preparation", + "prepared", + "preposition", + "prescribe", + "prescribed", + "prescription", + "presence", + "presentation", + "presently", + "preservation", + "preserve", + "preset", + "preside", + "presidential", + "pressing", + "pressure", + "prestige", + "presumably", + "presume", + "pretense", + "pretentious", + "prevail", + "prevailing", + "prevalence", + "prevalent", + "prevention", + "previous", + "previously", + "pricing", + "prick", + "priest", + "primarily", + "primary", + "prime", + "primitive", + "prince", + "princess", + "principal", + "principally", + "principle", + "printer", + "prior", + "priority", + "prism", + "prisoner", + "privacy", + "private", + "privilege", + "privileged", + "probability", + "probable", + "probe", + "problematic", + "procedure", + "proceed", + "proceeding", + "proceeds", + "process", + "processing", + "procession", + "proclaim", + "procure", + "procurement", + "producer", + "product", + "productive", + "productivity", + "profess", + "profession", + "professional", + "proficiency", + "proficient", + "profile", + "profitable", + "proforma", + "profound", + "program", + "programer", + "programing", + "progressive", + "prohibit", + "prohibition", + "prohibitive", + "project", + "projection", + "projector", + "proletarian", + "prolong", + "prominence", + "prominent", + "promising", + "promissory", + "promote", + "promotion", + "prompt", + "promptly", + "prone", + "pronoun", + "pronounce", + "proof", + "propaganda", + "propagate", + "propagation", + "propel", + "propellent", + "propeller", + "properly", + "property", + "prophesy", + "prophet", + "proportion", + "proportional", + "proposal", + "propose", + "proposition", + "proprietor", + "proprietorship", + "prose", + "prosecute", + "prosecution", + "prosecutor", + "prospect", + "prosperity", + "prosperous", + "protection", + "protectionism", + "protective", + "protein", + "protest", + "protestant", + "protocol", + "prototype", + "protracted", + "proverb", + "provided", + "provincial", + "provision", + "provisional", + "provocation", + "provoke", + "prudence", + "prudent", + "psychological", + "psychologist", + "psychology", + "publication", + "publicity", + "publicly", + "publish", + "publisher", + "pudding", + "pulley", + "pulse", + "pumpkin", + "punch", + "punctual", + "punctuality", + "punctuation", + "punishment", + "puppet", + "puppy", + "purchase", + "purchaser", + "purely", + "purify", + "purity", + "purple", + "purse", + "pursuance", + "pursuant", + "pursue", + "pursuit", + "puzzle", + "pyjamas", + "pyramid", + "qualification", + "qualified", + "qualify", + "qualitative", + "quantitative", + "quart", + "quarterly", + "quartz", + "queer", + "quench", + "query", + "quest", + "questionnaire", + "queue", + "quicken", + "quickly", + "quietly", + "quietness", + "quilt", + "quiver", + "quota", + "quotation", + "quote", + "rabbit", + "racial", + "racket", + "radar", + "radial", + "radiant", + "radiate", + "radiation", + "radical", + "radioactive", + "radioactivity", + "radish", + "radium", + "radius", + "railway", + "rainbow", + "raincoat", + "rainfall", + "rainy", + "rally", + "ramble", + "ranch", + "random", + "rapidly", + "rapture", + "rarely", + "rascal", + "ratification", + "ratify", + "ratio", + "ration", + "rational", + "rattle", + "ravage", + "razor", + "react", + "reaction", + "reactionary", + "reactor", + "reader", + "readily", + "reading", + "realism", + "realist", + "realistic", + "reality", + "realization", + "really", + "realm", + "reason", + "reasonable", + "reasonably", + "reassure", + "rebate", + "rebel", + "rebellion", + "rebuke", + "recall", + "recede", + "receipt", + "receive", + "receiver", + "recent", + "recently", + "reception", + "receptionist", + "recession", + "recipe", + "recipient", + "reciprocal", + "recitation", + "recite", + "reckless", + "reckon", + "reclaim", + "recognition", + "recognize", + "recollect", + "recollection", + "recommend", + "recommendation", + "recompense", + "reconcile", + "reconnaissance", + "recorder", + "recourse", + "recover", + "recovery", + "recreation", + "recruit", + "recruitment", + "rectangle", + "rectification", + "rectify", + "recur", + "recurrence", + "redeem", + "redound", + "reduce", + "reduction", + "reexport", + "refer", + "referee", + "reference", + "referent", + "refine", + "refined", + "refinement", + "refinery", + "reflect", + "reflection", + "reform", + "refrain", + "refresh", + "refreshment", + "refrigerator", + "refuge", + "refugee", + "refund", + "refusal", + "refute", + "regard", + "regarding", + "regardless", + "regime", + "regiment", + "region", + "regional", + "regionalization", + "regionalize", + "register", + "registered", + "registration", + "regretful", + "regretfully", + "regrettable", + "regularity", + "regularly", + "regulate", + "regulation", + "rehearsal", + "rehearse", + "reign", + "reimburse", + "reimbursement", + "reinforce", + "reinforcement", + "reiterate", + "reject", + "rejection", + "rejoice", + "relate", + "related", + "relationship", + "relative", + "relatively", + "relativity", + "relaxation", + "relay", + "release", + "relevant", + "reliability", + "reliable", + "reliance", + "relief", + "relieve", + "religious", + "relinquish", + "relish", + "reluctance", + "reluctant", + "remainder", + "remains", + "remark", + "remarkable", + "remedy", + "remembrance", + "reminiscence", + "reminiscent", + "remit", + "remittance", + "remnant", + "remote", + "remoteness", + "removal", + "remuneration", + "renaissance", + "render", + "renew", + "renewable", + "renewal", + "rental", + "repairmen", + "repay", + "repeal", + "repeatedly", + "repel", + "repent", + "repetition", + "repetitive", + "replacement", + "replenish", + "reportage", + "reporter", + "represent", + "representation", + "representative", + "reproach", + "reproduce", + "reproduction", + "reptile", + "republican", + "repudiate", + "reputable", + "reputation", + "repute", + "request", + "require", + "requirement", + "requisite", + "rescind", + "rescue", + "researcher", + "resemblance", + "resemble", + "resent", + "resentful", + "resentment", + "reservation", + "reserve", + "reservoir", + "reside", + "residence", + "resident", + "residual", + "resign", + "resignation", + "resist", + "resistance", + "resistant", + "resolute", + "resolution", + "resolutely", + "resolve", + "resort", + "resource", + "respectable", + "respectful", + "respectfully", + "respective", + "respectively", + "respond", + "response", + "responsibility", + "restless", + "restock", + "restore", + "restrain", + "restraint", + "restrict", + "restriction", + "restrictive", + "resultant", + "resume", + "retail", + "retailer", + "retain", + "retell", + "retire", + "retirement", + "retort", + "retreat", + "retroactive", + "reveal", + "revenge", + "revenue", + "reverence", + "reverse", + "revert", + "revise", + "revision", + "revival", + "revive", + "revoke", + "revolt", + "revolutionary", + "revolve", + "rewarding", + "rheumatism", + "rhyme", + "rhythm", + "ribbon", + "richness", + "riddle", + "ridge", + "ridicule", + "ridiculous", + "rifle", + "righteous", + "rigid", + "rigidity", + "rigor", + "rigorous", + "rinse", + "riotous", + "ripen", + "ripple", + "risky", + "rival", + "rivalry", + "river", + "roast", + "robber", + "robbery", + "robot", + "robust", + "rocket", + "roller", + "roman", + "romance", + "romantic", + "romanticism", + "rooster", + "rotary", + "rotate", + "rotation", + "rotten", + "roughly", + "roundabout", + "rouse", + "route", + "routine", + "royal", + "royalty", + "ruinous", + "ruler", + "ruling", + "rumor", + "runner", + "running", + "rural", + "Russia", + "Russian", + "rusty", + "ruthless", + "sacred", + "sacrifice", + "saddle", + "sadly", + "sadness", + "safely", + "safety", + "sailing", + "sailor", + "saint", + "salad", + "salability", + "salable", + "sales", + "salesman", + "salmon", + "salty", + "salute", + "salution", + "sample", + "sampling", + "sandwich", + "sandy", + "sanitary", + "SantaClaus", + "sarcasm", + "sarcastic", + "sardine", + "satellite", + "satire", + "satisfaction", + "satisfactorily", + "satisfactory", + "saturation", + "Saturn", + "sauce", + "saucer", + "sausage", + "savage", + "savings", + "scale", + "scaly", + "scandal", + "scarce", + "scarcely", + "scarcity", + "scarf", + "scarlet", + "scatter", + "scenery", + "scenic", + "scent", + "schedule", + "scheme", + "scholar", + "scholarship", + "schooling", + "scissors", + "scoff", + "scold", + "scope", + "scorch", + "scorching", + "scorn", + "scornful", + "scotch", + "Scotsman", + "Scottish", + "Scotland", + "scout", + "scramble", + "scrap", + "scrape", + "scratch", + "screech", + "screen", + "screw", + "screwdriver", + "script", + "scrub", + "scrutiny", + "sculptor", + "sculpture", + "seaman", + "seaport", + "seashore", + "seaside", + "seasonal", + "secondary", + "secondhand", + "secondly", + "secrecy", + "secretariat", + "secretary", + "section", + "sector", + "secure", + "security", + "seemingly", + "segment", + "seizure", + "select", + "selection", + "selfish", + "seller", + "seminar", + "semiconductor", + "senate", + "senator", + "sender", + "senior", + "sensation", + "sensational", + "senseless", + "sensible", + "sensitive", + "sensitivity", + "sentiment", + "sentimental", + "separately", + "separation", + "sequence", + "serene", + "serenity", + "series", + "seriously", + "sermon", + "serpent", + "servant", + "serviceable", + "session", + "setting", + "settlement", + "seventh", + "severe", + "severely", + "sexual", + "sexuality", + "shabby", + "shade", + "shadowy", + "shady", + "shaft", + "shallow", + "shameful", + "shampoo", + "shapeless", + "shark", + "sharpen", + "sharpener", + "sharply", + "shatter", + "shave", + "shear", + "sheep", + "sheepish", + "sheer", + "shell", + "shelter", + "shepherd", + "sheriff", + "shield", + "shift", + "shilling", + "shiny", + "shipbuilding", + "shipment", + "shipowner", + "shipping", + "shipwreck", + "shipyard", + "shiver", + "shoemaker", + "shopkeeper", + "shopping", + "shortage", + "shortcoming", + "shortcut", + "shorten", + "shorthand", + "shortly", + "shorts", + "shove", + "shovel", + "showroom", + "shrewd", + "shriek", + "shrill", + "shrine", + "shrimp", + "shrink", + "shroud", + "shrub", + "shrug", + "shuffle", + "shutter", + "shuttle", + "sickness", + "sickle", + "sidewalk", + "sideways", + "siege", + "sieve", + "sightseeing", + "signature", + "significance", + "significant", + "signify", + "signpost", + "silicon", + "silky", + "silly", + "similar", + "similarity", + "simplicity", + "simplify", + "simply", + "simulate", + "simultaneous", + "simultaneously", + "sincere", + "sincerely", + "sincerity", + "sinful", + "singer", + "singular", + "siren", + "situate", + "sixth", + "sizable", + "skate", + "skating", + "skeleton", + "sketch", + "skiing", + "skillful", + "skirmish", + "skull", + "skyrocket", + "skyscraper", + "slack", + "slander", + "slang", + "slaughter", + "slavery", + "sleet", + "sleeve", + "slender", + "slice", + "slide", + "slightly", + "slipper", + "slippery", + "slogan", + "slope", + "slowdown", + "slowly", + "slumber", + "slump", + "smack", + "smart", + "smash", + "smoker", + "smoking", + "smoothly", + "smuggle", + "smuggler", + "smuggling", + "snack", + "snail", + "snake", + "snatch", + "sneak", + "sneakers", + "sneer", + "sneeze", + "sniff", + "snobbery", + "snobbish", + "snore", + "snowman", + "snowstorm", + "snowy", + "sober", + "soccer", + "sociable", + "socialism", + "socialist", + "sociologist", + "sociology", + "sodium", + "soften", + "softly", + "softness", + "software", + "solar", + "solely", + "solemn", + "solicitor", + "solidarity", + "solitary", + "solitude", + "solution", + "solvency", + "solvent", + "somewhat", + "sonnet", + "soothe", + "sophisticated", + "sophistication", + "sorrow", + "sorrowful", + "source", + "southeast", + "southward", + "southwest", + "souvenir", + "sovereign", + "sovereignty", + "spacecraft", + "spaceship", + "spaceshuttle", + "spacious", + "spade", + "Spain", + "Spanish", + "spark", + "sparkle", + "sparrow", + "spatial", + "speaker", + "spear", + "specialist", + "specialize", + "specialized", + "specially", + "specialty", + "species", + "specific", + "specification", + "specify", + "specimen", + "spectacle", + "spectacular", + "spectator", + "spectrum", + "speculate", + "speculation", + "speculator", + "speedy", + "spelling", + "sphere", + "spice", + "spicy", + "spider", + "spill", + "spiral", + "spiritual", + "spite", + "splash", + "splendid", + "split", + "spoil", + "spokesman", + "sponge", + "sponsor", + "sponsorship", + "spontaneous", + "spoon", + "spoonful", + "sportsman", + "sportsmanship", + "sprain", + "spray", + "sprinkle", + "sprout", + "squash", + "squat", + "squeeze", + "squirrel", + "stability", + "stable", + "stack", + "stadium", + "staff", + "stagger", + "stagnation", + "stainless", + "staircase", + "stake", + "stale", + "stalk", + "stall", + "stammer", + "standardize", + "standing", + "standpoint", + "standstill", + "staple", + "stapler", + "starting", + "startle", + "starvation", + "statement", + "statesman", + "static", + "stationary", + "stationery", + "statistical", + "statistics", + "statue", + "status", + "statute", + "steadily", + "steady", + "steak", + "steamer", + "steep", + "steer", + "stencil", + "stereo", + "sterling", + "stern", + "stevedore", + "steward", + "stewardess", + "sticky", + "stiff", + "stillness", + "stimulate", + "stimulation", + "sting", + "stink", + "stipulate", + "stipulation", + "stirring", + "stitch", + "stock", + "stocking", + "stony", + "stool", + "stoop", + "storage", + "stormy", + "stout", + "stove", + "stowage", + "straightforward", + "straighten", + "strain", + "strait", + "strand", + "strap", + "strategic", + "strategy", + "straw", + "strawberry", + "stray", + "streak", + "streamline", + "streetcar", + "strengthen", + "stress", + "stretch", + "strict", + "strictly", + "stride", + "strife", + "striking", + "strip", + "stripe", + "strive", + "stroke", + "stroll", + "stroller", + "strongly", + "stronghold", + "structural", + "structure", + "stubborn", + "studio", + "stuff", + "stuffy", + "stumble", + "stump", + "stupid", + "stupidity", + "sturdy", + "style", + "stylist", + "subdivide", + "subdue", + "subjective", + "subjunctive", + "submarine", + "submerge", + "submit", + "subordinate", + "subordination", + "subscribe", + "subscription", + "subsequence", + "subsequent", + "subsequently", + "subsidiary", + "substance", + "substantial", + "substantiate", + "substitute", + "substitution", + "subtle", + "subtract", + "subtraction", + "suburb", + "suburban", + "subway", + "successful", + "successfully", + "succession", + "successive", + "successor", + "suffering", + "suffice", + "sufficiently", + "suffix", + "suggestion", + "suicide", + "suitable", + "suitcase", + "suite", + "sullen", + "sultry", + "summarize", + "summary", + "summit", + "summon", + "sunburn", + "sunflower", + "sunlight", + "sunny", + "sunrise", + "sunset", + "sunshine", + "super", + "superb", + "superficial", + "superintendent", + "superior", + "superiority", + "supermarket", + "supersede", + "supersonic", + "superstition", + "superstitious", + "supervise", + "supervision", + "supervisor", + "supplement", + "supplementary", + "supplier", + "supporter", + "supposing", + "suppress", + "suppression", + "supreme", + "surcharge", + "surely", + "surge", + "surgeon", + "surgery", + "surmise", + "surname", + "surpass", + "surplus", + "surprising", + "surrender", + "surroundings", + "survey", + "surveyor", + "survival", + "survive", + "survivor", + "suspect", + "suspend", + "suspense", + "suspicion", + "suspicious", + "sustain", + "swallow", + "swamp", + "swarm", + "swear", + "sweat", + "sweater", + "Swede", + "Sweden", + "Swedish", + "sweeten", + "sweetheart", + "sweetness", + "swell", + "swift", + "swing", + "Swiss", + "switch", + "Switzerland", + "sword", + "syllable", + "symbol", + "symbolize", + "symmetric", + "symmetry", + "sympathetic", + "sympathize", + "sympathy", + "symphony", + "symposium", + "symptom", + "synonym", + "synthesis", + "synthetic", + "system", + "systematic", + "systematically", + "tablet", + "tabulate", + "tackle", + "tactful", + "tactics", + "tailor", + "talent", + "talkative", + "tally", + "tangle", + "tanker", + "target", + "tariff", + "tasteful", + "taxation", + "teaching", + "teacup", + "teapot", + "tease", + "technical", + "technician", + "technique", + "technological", + "technology", + "tedious", + "teenager", + "teens", + "telefax", + "telegram", + "telegraph", + "telephone", + "telescope", + "telex", + "teller", + "temper", + "temple", + "temporary", + "tempt", + "temptation", + "tenant", + "tendency", + "tender", + "tenor", + "tense", + "tension", + "tentative", + "tenth", + "terminable", + "terminal", + "terminate", + "termination", + "terminology", + "terrace", + "terribly", + "terrific", + "terrify", + "territory", + "terror", + "terrorism", + "terrorist", + "testify", + "testimony", + "textbook", + "textile", + "textual", + "thankful", + "thanks", + "ThanksgivingDay", + "theatrical", + "theft", + "theme", + "theoretical", + "thereafter", + "thereby", + "therefore", + "therefrom", + "therein", + "thereof", + "thereon", + "therewith", + "thermometer", + "thesis", + "thicken", + "thickness", + "thief", + "thigh", + "thinking", + "thinker", + "thirst", + "thirsty", + "thorn", + "thoroughly", + "thoughtful", + "thoughtless", + "thrash", + "thread", + "threat", + "threaten", + "threshold", + "thrift", + "thrifty", + "thrill", + "thriller", + "thrive", + "throat", + "throne", + "throng", + "thrust", + "thumb", + "thumbtack", + "thunder", + "thunderstorm", + "tickle", + "tiger", + "tight", + "tighten", + "tightly", + "tigress", + "timber", + "timely", + "timetable", + "timid", + "tiptoe", + "tiresome", + "tissue", + "title", + "toast", + "tobacco", + "toilet", + "token", + "tolerable", + "tolerance", + "tolerant", + "tolerate", + "tombstone", + "tonnage", + "tonne", + "toothache", + "toothbrush", + "toothpaste", + "topic", + "torch", + "torment", + "torpedo", + "torrent", + "tortoise", + "torture", + "totally", + "tough", + "tourism", + "towel", + "trace", + "track", + "tractor", + "trader", + "trademark", + "tradesman", + "tradition", + "traditional", + "traffic", + "tragedy", + "tragic", + "trail", + "trainee", + "trainer", + "training", + "traitor", + "tramp", + "trample", + "tranquil", + "transact", + "transaction", + "transfer", + "transferable", + "transform", + "transformation", + "transformer", + "transistor", + "transit", + "transition", + "translation", + "translator", + "transmission", + "transmit", + "transparent", + "transplant", + "transport", + "transportation", + "transship", + "transshipment", + "transverse", + "traverse", + "traveler", + "tread", + "treason", + "treasurer", + "treatment", + "treaty", + "tremendous", + "trench", + "trend", + "trial", + "triangle", + "triangular", + "tribe", + "tribute", + "trickle", + "tricky", + "trifle", + "trigger", + "triple", + "triplicate", + "triumph", + "triumphant", + "trivial", + "trolley", + "troop", + "tropic", + "tropical", + "troublesome", + "truly", + "trumpet", + "trunk", + "truth", + "truthful", + "tuberculosis", + "tuition", + "tulip", + "tumble", + "tumult", + "tunnel", + "turbine", + "turbulent", + "turkey", + "turning", + "turnip", + "turnover", + "turtle", + "tutor", + "twilight", + "twinkle", + "twist", + "typewriter", + "typhoon", + "typical", + "typist", + "tyranny", + "tyrant", + "ulcer", + "ultimate", + "ultimately", + "ultimo", + "ultrasonic", + "ultraviolet", + "umbrella", + "unable", + "unacceptable", + "unaccommodating", + "unaffordable", + "unanimous", + "unavoidable", + "unbearable", + "uncertain", + "uncertainty", + "uncomfortable", + "uncommon", + "unconditionally", + "unconscious", + "uncover", + "underestimate", + "undergo", + "undergraduate", + "underground", + "underline", + "underlying", + "undermentioned", + "undermine", + "underneath", + "undersigned", + "understanding", + "undertake", + "undertaking", + "underwear", + "underwriter", + "undoubtedly", + "undue", + "unduly", + "uneasy", + "unemloyment", + "unexpected", + "unfair", + "unfit", + "unfold", + "unfortunate", + "unfortunately", + "unhappy", + "uniformly", + "uninterested", + "unique", + "unitedkingdom", + "unitednations", + "unitedstates", + "unity", + "universal", + "universally", + "universe", + "unjust", + "unkind", + "unknown", + "unlawful", + "unlike", + "unlikely", + "unlimited", + "unload", + "unlock", + "unlucky", + "unnecessary", + "unobtainable", + "unpaid", + "unpleasant", + "unprecedented", + "unreasonable", + "unsalable", + "unsatisfactory", + "unstable", + "unsuitable", + "untie", + "unusable", + "unusual", + "unwarranted", + "unwelcome", + "unwilling", + "unworkable", + "upcreep", + "uphold", + "upper", + "upright", + "uproar", + "upset", + "upside", + "upstairs", + "upward", + "uranium", + "urban", + "urgent", + "urgently", + "usage", + "useful", + "usefulness", + "useless", + "utensil", + "utility", + "utilization", + "utilize", + "utmost", + "utter", + "utterance", + "vacancy", + "vacant", + "vacation", + "vaccinate", + "vaccination", + "vacuum", + "vague", + "vainly", + "valid", + "validity", + "valued", + "valve", + "vanish", + "vanity", + "vapor", + "variable", + "variance", + "variant", + "variation", + "varied", + "variety", + "varnish", + "vault", + "vehicle", + "velocity", + "velvet", + "vender", + "vengeance", + "ventilate", + "ventilation", + "venture", + "Venus", + "verbal", + "verge", + "verification", + "verify", + "versatile", + "verse", + "version", + "versus", + "vertical", + "vessel", + "veteran", + "vibrate", + "vibration", + "vicinity", + "vicious", + "victim", + "victorious", + "video", + "viewer", + "viewpoint", + "vigor", + "vigorous", + "villa", + "villain", + "vinegar", + "violate", + "violation", + "violence", + "violent", + "violet", + "violin", + "virgin", + "virtual", + "virtually", + "virtue", + "virus", + "viscous", + "visible", + "vision", + "visual", + "vital", + "vitamin", + "vivid", + "vividly", + "vividness", + "vocabulary", + "vocation", + "vogue", + "voiceless", + "volcano", + "volley", + "volleyball", + "voltage", + "volume", + "voluntary", + "volunteer", + "voter", + "voting", + "vouch", + "voucher", + "vowel", + "voyage", + "vulgar", + "vulnerability", + "vulnerable", + "wagon", + "waist", + "waiter", + "waitress", + "waive", + "waken", + "walker", + "wallet", + "walnut", + "wardrobe", + "warehouse", + "warehousing", + "warfare", + "warmly", + "warmth", + "warning", + "warrant", + "warranted", + "warranty", + "warrior", + "warship", + "wasteful", + "watchful", + "waterfall", + "waterfront", + "waterproof", + "watertight", + "watery", + "wavelength", + "waver", + "waving", + "weakness", + "wealthy", + "weapon", + "weary", + "weave", + "weaver", + "wedding", + "wedge", + "weekday", + "weekend", + "weekly", + "weigh", + "welfare", + "westerner", + "westward", + "whale", + "whaling", + "wharf", + "whereabouts", + "whereas", + "whereby", + "wherein", + "wherever", + "whichever", + "whilst", + "whirl", + "whisker", + "whisky", + "whistle", + "whitewash", + "whoever", + "wholesale", + "wholesaler", + "wholesome", + "wholly", + "wicked", + "widely", + "widen", + "widespread", + "widow", + "widower", + "width", + "wield", + "wilderness", + "willingly", + "willingness", + "willow", + "winding", + "windmill", + "windowsill", + "windy", + "winery", + "winner", + "wireless", + "wisdom", + "withdraw", + "withdrawal", + "wither", + "withhold", + "withstand", + "witness", + "witty", + "wooden", + "woodpecker", + "woods", + "woollen", + "wording", + "wordy", + "workable", + "workman", + "workmanship", + "works", + "workshop", + "worldwide", + "worse", + "worship", + "worst", + "worthless", + "worthwhile", + "wounded", + "wrapper", + "wrath", + "wreath", + "wreck", + "wrench", + "wrestle", + "wretched", + "wring", + "wrinkle", + "wrist", + "writer", + "writing", + "written", + "wrongly", + "xerox", + "yacht", + "yearly", + "yearn", + "yeast", + "yield", + "youngster", + "youth", + "youthful", + "zealous", + "zebra", + "zipcode", + "zipper", + "zoology", + "Byzantine", + "abacus", + "abase", + "abash", + "abate", + "abbreviate", + "abdicate", + "abdomen", + "abduct", + "aberrant", + "aberration", + "abhor", + "abhorrent", + "abiding", + "abject", + "abjure", + "ablution", + "abnegate", + "abode", + "abominable", + "abominate", + "aboriginal", + "abound", + "aboveboard", + "abrade", + "abrasion", + "abrasive", + "abridgment", + "abscission", + "abscond", + "absenteeism", + "absentmindedness", + "absolve", + "abstain", + "abstemious", + "abstention", + "abstentious", + "abstinence", + "abstracted", + "abstruse", + "abusive", + "abysmal", + "abyss", + "academician", + "accentuate", + "acclaim", + "acclimate", + "acclivity", + "accolade", + "accommodating", + "accomplice", + "accomplished", + "accost", + "accountability", + "accrete", + "accretion", + "acerbic", + "acidity", + "acidulous", + "acolyte", + "acorn", + "acoustic", + "acquiesce", + "acquired", + "acquisitive", + "acquit", + "acquittal", + "acrid", + "acrimonious", + "acrimony", + "acronym", + "acrophobia", + "actuarial", + "actuate", + "acuity", + "acumen", + "adage", + "adamant", + "adaptable", + "addendum", + "addict", + "addle", + "adduce", + "adept", + "adherent", + "adjourn", + "adjudicate", + "adjunct", + "adjure", + "adjutant", + "admissible", + "admonish", + "adobe", + "adorable", + "adroit", + "adulate", + "adulterate", + "adumbrate", + "advent", + "adventitious", + "advert", + "advocacy", + "aegis", + "aerate", + "aeronautics", + "aesthete", + "aesthetic", + "affable", + "affectation", + "affected", + "affidavit", + "affiliation", + "affinity", + "affix", + "afflict", + "affliction", + "affluence", + "affluent", + "affront", + "aftermath", + "agape", + "agenda", + "agglomerate", + "aggrandize", + "aggrieve", + "aggrieved", + "aghast", + "agile", + "agility", + "agitated", + "agnostic", + "agrarian", + "agronomy", + "airborne", + "airtight", + "alabaster", + "alacrity", + "albeit", + "alchemy", + "alcove", + "alias", + "alibi", + "alight", + "align", + "alimentary", + "alkali", + "allay", + "allege", + "allegiance", + "allegory", + "alleviate", + "alley", + "alliteration", + "allopathy", + "allude", + "allure", + "alluring", + "allusion", + "alluvial", + "almond", + "aloft", + "aloof", + "alphabetical", + "altercation", + "altruism", + "altruistic", + "aluminium", + "amalgam", + "amalgamate", + "amass", + "amateurish", + "ambidextrous", + "ambience", + "ambivalence", + "ambivalent", + "amble", + "ambrosia", + "ambulatory", + "ambush", + "ameliorate", + "amenable", + "amenity", + "amethyst", + "amity", + "amnesia", + "amnesty", + "amoral", + "amorous", + "amorphous", + "amortize", + "amphibian", + "amplitude", + "amputate", + "amulet", + "anachronism", + "anachronistic", + "anaerobic", + "anagram", + "analgesia", + "analgesic", + "analogous", + "anarchist", + "anarchy", + "anathema", + "anatomical", + "ancestry", + "anchorite", + "ancillary", + "anemia", + "anesthetic", + "anguish", + "anhydrous", + "animated", + "animosity", + "animus", + "annals", + "annexation", + "annihilate", + "annotate", + "annoying", + "annul", + "anodyne", + "anomalous", + "anomaly", + "anonymity", + "anonymous", + "anorexia", + "antagonize", + "antarctic", + "antecedence", + "antedate", + "antediluvian", + "antenna", + "anterior", + "anthem", + "anthology", + "anthropoid", + "anthropologist", + "anthropology", + "antibody", + "antic", + "anticipatory", + "anticlimax", + "antidote", + "antigen", + "antihistamine", + "antipathy", + "antiquated", + "antiquity", + "antiseptic", + "antithesis", + "antitoxic", + "anvil", + "aorta", + "apathy", + "aperture", + "aphasia", + "aphorism", + "apiary", + "aplomb", + "apocalyptic", + "apocrypha", + "apocryphal", + "apogee", + "apolitical", + "apologist", + "apophasis", + "apoplectic", + "apostasy", + "apostate", + "apostrophe", + "apothecary", + "apothegm", + "apotheosis", + "appall", + "appalling", + "apparel", + "apparition", + "appease", + "appellation", + "appendage", + "appetizer", + "appetizing", + "apposite", + "apposition", + "appraise", + "apprehend", + "apprehensive", + "apprise", + "approbation", + "approbatory", + "apron", + "apropos", + "aquatic", + "aqueduct", + "aquifer", + "aquiline", + "arabesque", + "arable", + "arachnid", + "arbiter", + "arbor", + "arboreal", + "arboretum", + "arcade", + "arcane", + "archaic", + "archaism", + "archer", + "archetype", + "archipelago", + "archive", + "ardor", + "argot", + "argumentation", + "armada", + "armistice", + "armory", + "aroma", + "aromatic", + "arraign", + "arresting", + "arrhythmic", + "arrogate", + "arroyo", + "arsenal", + "arson", + "artery", + "artful", + "arthritis", + "articulate", + "artifact", + "artifacts", + "artifice", + "artillery", + "artisan", + "artistry", + "artless", + "ascendancy", + "ascendant", + "ascent", + "ascetic", + "aseptic", + "asinine", + "askance", + "askew", + "asparagus", + "aspen", + "asperity", + "aspersion", + "asphyxia", + "asphyxiate", + "aspirant", + "aspiration", + "aspire", + "assail", + "assay", + "assent", + "assertive", + "assertiveness", + "asset", + "assiduous", + "assimilate", + "assuage", + "assumed", + "asterisk", + "asteroid", + "asthma", + "astigmatic", + "astounding", + "astral", + "astringent", + "astrolabe", + "astrology", + "astute", + "asunder", + "asylum", + "asymmetric", + "asymptomatic", + "asynchronous", + "atheism", + "athletics", + "atonal", + "atone", + "atrocious", + "atrocity", + "atrophy", + "attainment", + "attenuate", + "attest", + "attire", + "attrition", + "attune", + "attuneto", + "atypical", + "audacious", + "audacity", + "audible", + "audit", + "audition", + "auger", + "augment", + "augur", + "augury", + "aureole", + "auricular", + "aurora", + "auspices", + "auspicious", + "austere", + "austerity", + "authentic", + "authenticate", + "authenticity", + "authoritarian", + "authoritative", + "autocracy", + "autocrat", + "autopsy", + "avalanche", + "avarice", + "avaricious", + "averse", + "aversion", + "avert", + "aviary", + "avocation", + "avulse", + "avuncular", + "awash", + "awning", + "axiom", + "axiomatic", + "azure", + "babble", + "bacchanal", + "backdrop", + "backhanded", + "backset", + "backslide", + "backwater", + "bacteria", + "badger", + "badinage", + "baleful", + "ballad", + "ballast", + "ballerina", + "ballot", + "balmy", + "banal", + "banality", + "bandy", + "baneful", + "banish", + "banister", + "banter", + "barbarous", + "barbecue", + "barefaced", + "baroque", + "barrage", + "barricade", + "barrister", + "baseboard", + "bashful", + "bassoon", + "baste", + "batch", + "bathetic", + "baton", + "battalion", + "bauble", + "bauxite", + "bawdy", + "beacon", + "beatific", + "beatitude", + "beaver", + "bedeck", + "bedizen", + "bedlam", + "bedraggled", + "befuddlement", + "beget", + "begrudge", + "beguile", + "behold", + "beholden", + "beholder", + "behoove", + "belabor", + "belated", + "belch", + "beleaguer", + "belie", + "belittle", + "bellicose", + "belligerence", + "belligerent", + "bellwether", + "belongings", + "bemoan", + "bemused", + "benediction", + "benefactor", + "beneficent", + "benign", + "benison", + "bequeath", + "bequest", + "berate", + "bereave", + "bereft", + "berserk", + "beseech", + "beset", + "besiege", + "besmirch", + "bespeak", + "bestial", + "betoken", + "betroth", + "bewail", + "bewildering", + "bewitch", + "bibliography", + "bibliophile", + "bibulous", + "bicker", + "biennial", + "bifurcate", + "bigot", + "bigotry", + "bilingual", + "bilious", + "billow", + "billowing", + "billowy", + "biosphere", + "biped", + "birch", + "bivouac", + "bizarre", + "blackball", + "blackmail", + "blanch", + "bland", + "blandishment", + "blandishments", + "blare", + "blase", + "blasphemy", + "blatant", + "blazon", + "bleachers", + "bleak", + "blemish", + "blight", + "blighted", + "blinds", + "bliss", + "blissful", + "blithe", + "blizzard", + "bloated", + "blockade", + "blooming", + "blotch", + "blowhard", + "bludgeon", + "blueprint", + "bluff", + "blurb", + "blurt", + "bluster", + "blustering", + "boastful", + "boggle", + "bogus", + "bohemian", + "boisterous", + "bolster", + "bolted", + "bombardment", + "bombast", + "bombastic", + "bondage", + "bonnet", + "boorish", + "bootless", + "boredom", + "botany", + "botch", + "boudoir", + "boulder", + "bounteous", + "bouquet", + "bovine", + "bowdlerize", + "bower", + "bracelet", + "bracing", + "brackish", + "braggadocio", + "braggart", + "braid", + "brandish", + "brash", + "brassy", + "bravado", + "bravura", + "brawl", + "brawny", + "brazen", + "breeder", + "brevity", + "bricklayer", + "brindled", + "broach", + "brocade", + "broil", + "bromide", + "brooch", + "browbeat", + "browse", + "bruit", + "brunt", + "brushwork", + "brusque", + "buckle", + "bucolic", + "budge", + "buffoon", + "bugaboo", + "buggy", + "bulge", + "bully", + "bulwark", + "bumble", + "bumper", + "bumptious", + "bungle", + "buoyant", + "burgeon", + "burlesque", + "burnish", + "burrow", + "busybody", + "buttress", + "buxom", + "byline", + "byproduct", + "bystander", + "byzantine", + "cabal", + "cache", + "cacophonous", + "cacophony", + "cactus", + "cadaver", + "cadaverous", + "cadence", + "cadet", + "cadge", + "caisson", + "cajole", + "calamity", + "calcification", + "calcify", + "calcium", + "calculated", + "calculating", + "caldron", + "calibrate", + "calibre", + "calipers", + "calligraphy", + "callous", + "callow", + "calorimeter", + "calumniate", + "calumny", + "camaraderie", + "cameo", + "camouflage", + "canard", + "candidacy", + "candor", + "canine", + "canker", + "cannibal", + "canny", + "canonical", + "canopy", + "cantankerous", + "cantata", + "canter", + "canto", + "canyon", + "capacious", + "caper", + "capillary", + "capitation", + "capitulate", + "caprice", + "capricious", + "capsize", + "capsule", + "captious", + "captivate", + "carafe", + "carapace", + "carat", + "carbohydrate", + "carbonated", + "carcinogen", + "cardiologist", + "careen", + "caress", + "caret", + "careworn", + "caricature", + "carillon", + "carnage", + "carnal", + "carnation", + "carnival", + "carnivore", + "carnivorous", + "carouse", + "carrion", + "cartographer", + "cascade", + "caste", + "castigate", + "castigation", + "cataclysm", + "catalysis", + "catalyze", + "catapult", + "cataract", + "catastrophic", + "categorical", + "caterpillar", + "catharsis", + "cathartic", + "caucus", + "caulk", + "causal", + "caustic", + "cauterize", + "cavalcade", + "cavalier", + "caveat", + "cavil", + "cavort", + "celebrated", + "celebrity", + "celerity", + "celestial", + "celibate", + "cello", + "censorious", + "censure", + "census", + "centaur", + "centralization", + "centrifugal", + "centrifuge", + "centripetal", + "centurion", + "cephalic", + "ceramic", + "ceramics", + "cerebral", + "cerebration", + "cerebrum", + "ceremonious", + "certitude", + "cessation", + "cession", + "chafe", + "chaff", + "chagrin", + "chalice", + "chameleon", + "chancellor", + "chandelier", + "chant", + "chantey", + "chaotic", + "chapel", + "characterization", + "charade", + "charisma", + "charismatic", + "charitable", + "charlatan", + "chary", + "chasm", + "chassis", + "chaste", + "chasten", + "chastise", + "chauvinism", + "chauvinist", + "chauvinistic", + "checkered", + "cheetah", + "cherubic", + "chevron", + "chiaroscuro", + "chicanery", + "chide", + "chimera", + "chimerical", + "chipmunk", + "chiromancy", + "chirp", + "chisel", + "chivalrous", + "chivalry", + "choir", + "choleric", + "chord", + "chore", + "choreography", + "chortle", + "chromatic", + "chromosome", + "chronic", + "chronicle", + "chronological", + "chronometer", + "chrysanthemum", + "chuckle", + "chunk", + "churl", + "ciliate", + "cinder", + "cipher", + "circlet", + "circuitous", + "circumlocution", + "circumscribe", + "circumspect", + "circumstantial", + "circumvent", + "cistern", + "civilian", + "civility", + "clairvoyance", + "clamor", + "clamorous", + "clandestine", + "clannish", + "clapper", + "clarion", + "clarity", + "claustrophobia", + "cleanse", + "cleavage", + "cleave", + "cleaver", + "cleft", + "clemency", + "clement", + "clinch", + "clinical", + "clipper", + "clique", + "cloister", + "closure", + "cloture", + "cloudburst", + "clout", + "cloying", + "coagulant", + "coagulate", + "coagulation", + "coalesce", + "coalition", + "coarsen", + "cobbler", + "cocoon", + "coddle", + "codicil", + "coerce", + "coercion", + "coeval", + "coexistence", + "coffer", + "cogent", + "cogitate", + "cognate", + "cognitive", + "cognizance", + "cognizant", + "cognomen", + "cohabit", + "colander", + "collage", + "collate", + "collateral", + "collected", + "colloquial", + "colloquialism", + "colloquium", + "colloquy", + "collude", + "collusion", + "colon", + "colonize", + "colonnade", + "coloration", + "colossal", + "colossus", + "coltish", + "comatose", + "combustible", + "combustion", + "comedienne", + "comely", + "comestible", + "comet", + "comity", + "comma", + "commandeer", + "commencement", + "commendable", + "commensurate", + "commentary", + "commentator", + "commingle", + "commiserate", + "committed", + "commodious", + "commonsensical", + "commotion", + "communal", + "communicable", + "commute", + "commuter", + "compartment", + "compassion", + "compassionate", + "compatriot", + "compelling", + "compendious", + "compendium", + "compensatory", + "competence", + "complacency", + "complacent", + "complaisance", + "complaisant", + "complementary", + "complexion", + "compliant", + "complicity", + "comport", + "compost", + "composure", + "comprehensible", + "compulsion", + "compulsive", + "compunction", + "concatenate", + "concave", + "concentric", + "conceptual", + "concerto", + "conciliate", + "conciliatory", + "conclave", + "concoct", + "concomitant", + "concord", + "concordant", + "concussion", + "condescend", + "condescending", + "condign", + "condiment", + "condole", + "condone", + "condor", + "conduit", + "confection", + "confederacy", + "configuration", + "confiscate", + "conflagration", + "conflate", + "confluence", + "conformist", + "confound", + "congeal", + "congenial", + "congenital", + "congest", + "conglomerate", + "congregate", + "congruent", + "congruous", + "conifer", + "conjecture", + "conjoin", + "conjugal", + "conjure", + "connive", + "connoisseur", + "connotation", + "connubial", + "consanguinity", + "conscript", + "consecrate", + "consensus", + "consequent", + "consequential", + "conservatism", + "conservatory", + "conserve", + "consort", + "conspectus", + "conspire", + "constellation", + "consternation", + "constitutional", + "constrain", + "constrained", + "constrict", + "consumerism", + "consummate", + "contagion", + "contagious", + "containment", + "contaminate", + "contaminated", + "contemptible", + "contend", + "contented", + "contention", + "contentious", + "contiguous", + "contingent", + "continuation", + "continuity", + "contort", + "contraband", + "contradictory", + "contravene", + "contravention", + "contrite", + "contrition", + "contrive", + "contrived", + "controvert", + "contumacious", + "contumacy", + "contumely", + "conundrum", + "convalesce", + "convalescence", + "convalescent", + "convene", + "conventionality", + "converge", + "convergent", + "convertible", + "convex", + "convivial", + "conviviality", + "convocation", + "convoke", + "convoluted", + "convoy", + "convulse", + "convulsion", + "copious", + "coquette", + "cordon", + "cornet", + "cornice", + "cornucopia", + "corny", + "corona", + "coronation", + "corporal", + "corporeal", + "corpulent", + "corpus", + "corpuscle", + "corral", + "correspondingly", + "corroborate", + "corroboration", + "corroborative", + "corrosive", + "corrugate", + "corrugated", + "coruscate", + "cosmopolitanism", + "cosset", + "costume", + "coterie", + "coterminous", + "cougar", + "counteract", + "counterbalance", + "counterfeit", + "counterproductive", + "courtroom", + "covenant", + "covert", + "covet", + "covetous", + "cowardice", + "cower", + "cozen", + "crabbed", + "crafty", + "craggy", + "cramp", + "cramped", + "cranky", + "crass", + "crater", + "cravat", + "craven", + "craving", + "crayon", + "crease", + "credence", + "credential", + "credible", + "creditable", + "credo", + "credulity", + "credulous", + "creed", + "crepuscular", + "crescendo", + "crest", + "crestfallen", + "crevice", + "criminality", + "cringe", + "cringing", + "crinkle", + "criteria", + "criterion", + "critique", + "croak", + "crochet", + "crockery", + "cronyism", + "croon", + "crossfire", + "crotchety", + "crucial", + "crudity", + "crumple", + "crusade", + "crustacean", + "cryogenic", + "crypt", + "cryptic", + "cubicle", + "cuddle", + "cuisine", + "culinary", + "culminate", + "culmination", + "culpable", + "culprit", + "cultivated", + "cumber", + "cumbersome", + "cumulative", + "cumulus", + "cupidity", + "curator", + "curdle", + "curfew", + "curmudgeon", + "curriculum", + "currish", + "cursive", + "cursory", + "curvaceous", + "custodian", + "cuticle", + "cyclical", + "cyclone", + "cygnet", + "cylinder", + "cynic", + "cynical", + "cynicism", + "cynosure", + "cypress", + "cytology", + "dabble", + "daguerreotype", + "dalliance", + "dally", + "damped", + "dampen", + "dandy", + "dangle", + "dapper", + "dappled", + "daredevil", + "daubster", + "daunt", + "dauntless", + "dawdle", + "deactivate", + "deaden", + "deadlock", + "deadpan", + "dearth", + "debacle", + "debar", + "debark", + "debase", + "debatable", + "debauch", + "debilitate", + "debility", + "debonair", + "debouch", + "debrief", + "debris", + "debunk", + "debut", + "debutante", + "decadence", + "decadent", + "decamp", + "decant", + "decapitate", + "decelerate", + "decibel", + "deciduous", + "decimate", + "decipher", + "declaim", + "declamation", + "declassify", + "declination", + "declivity", + "decode", + "decomposition", + "decontaminate", + "decorous", + "decorum", + "decoy", + "decrepit", + "decry", + "dedicated", + "dedication", + "deductive", + "deface", + "defalcate", + "defamation", + "defamatory", + "defame", + "defeatist", + "defection", + "defendant", + "defense", + "deference", + "deferential", + "deferrable", + "defile", + "defined", + "deflated", + "defoliator", + "deforestation", + "defraud", + "defunct", + "defuse", + "degenerate", + "dehumanize", + "dehydrate", + "deification", + "deify", + "deign", + "deity", + "dejected", + "dejection", + "delectable", + "delectation", + "deleterious", + "delimit", + "delineate", + "delirious", + "delirium", + "delta", + "delude", + "deluge", + "delve", + "demagogue", + "demarcate", + "demean", + "demeanour", + "demented", + "demise", + "demobilize", + "demographic", + "demography", + "demonstrable", + "demonstrative", + "demoralize", + "demote", + "demotic", + "demur", + "demure", + "demystify", + "denigrate", + "denim", + "denizen", + "denouement", + "denture", + "denude", + "denunciation", + "dependency", + "deplore", + "deploy", + "deport", + "deportation", + "deportment", + "depose", + "depraved", + "depravity", + "deprecate", + "depredation", + "deprivation", + "depute", + "deputize", + "deracinate", + "deranged", + "derangement", + "derelict", + "dereliction", + "deride", + "derision", + "derisive", + "derivative", + "dermatologist", + "dermatology", + "derogate", + "derogatory", + "desalinize", + "descry", + "desecrate", + "deserted", + "deserter", + "desertification", + "desertion", + "deserts", + "desiccant", + "desiccate", + "desiccated", + "desideratum", + "desirous", + "desperado", + "despicable", + "despoil", + "despondent", + "despot", + "despotic", + "despotism", + "destabilize", + "destitute", + "destitution", + "destructible", + "desuetude", + "desultory", + "detached", + "detachment", + "deter", + "detergent", + "determinant", + "deterrent", + "detest", + "detonate", + "detonation", + "detoxicate", + "detoxification", + "detoxify", + "detraction", + "detractor", + "detritus", + "devastate", + "deviant", + "devious", + "deviousness", + "devoid", + "devolve", + "devotee", + "devotional", + "devout", + "dexterity", + "dexterous", + "diabetes", + "diabolical", + "diagonal", + "diaphanous", + "diatribe", + "dichotomy", + "dictum", + "didactic", + "didactics", + "diehard", + "dietetics", + "dietitian", + "differentiate", + "diffidence", + "diffident", + "diffuse", + "diffusion", + "dignitary", + "digress", + "digression", + "digressive", + "dilapidate", + "dilapidated", + "dilapidation", + "dilate", + "dilatory", + "dilemma", + "dilettante", + "diligence", + "diminuendo", + "diminution", + "diminutive", + "dimple", + "dinghy", + "dipsomania", + "dirge", + "disabuse", + "disaffect", + "disaffected", + "disaffection", + "disaggregate", + "disagreeable", + "disapprobation", + "disarm", + "disarray", + "disavowal", + "disband", + "disbar", + "disbarment", + "disbelief", + "discernible", + "discerning", + "discernment", + "disciple", + "disciplinarian", + "disclosure", + "discography", + "discombobulate", + "discombobulated", + "discomfit", + "discomfited", + "discomfiture", + "discommode", + "discompose", + "disconcert", + "disconnected", + "discontent", + "discontented", + "discontentment", + "discontinuous", + "discord", + "discordant", + "discountenance", + "discourteous", + "discredit", + "discrete", + "discretionary", + "discriminating", + "discriminatory", + "discursive", + "disdainful", + "disembark", + "disembodied", + "disenchant", + "disencumber", + "disengage", + "disengaged", + "disentangle", + "disfavor", + "disfigure", + "disfranchise", + "disfunctional", + "disgorge", + "disgruntle", + "dishearten", + "disheveled", + "disinclination", + "disinfect", + "disingenuous", + "disintegrate", + "disinter", + "disinterest", + "disinterested", + "disjointed", + "disjunction", + "disjunctive", + "dislocate", + "dislodge", + "dismantle", + "dismember", + "disobedient", + "disorientation", + "disoriented", + "disparage", + "disparate", + "dispassionate", + "dispensable", + "dispirit", + "dispirited", + "disport", + "disposable", + "dispossessed", + "disproof", + "disproportion", + "disprove", + "disputable", + "disputant", + "disputatious", + "disquiet", + "disquisition", + "disreputable", + "disrepute", + "disrespect", + "disrupt", + "disruptive", + "dissect", + "dissection", + "dissemble", + "disseminate", + "dissension", + "dissent", + "dissenter", + "dissertation", + "dissident", + "dissimulate", + "dissipated", + "dissipation", + "dissociation", + "dissolute", + "dissolution", + "dissonance", + "dissonant", + "dissuade", + "distend", + "distension", + "distill", + "distinctive", + "distorted", + "distracted", + "distrait", + "distraught", + "disturbing", + "ditty", + "diurnal", + "divagate", + "divergent", + "diversification", + "divest", + "divestiture", + "divinity", + "divulge", + "docile", + "doctrinaire", + "dodder", + "dogged", + "doggerel", + "dogma", + "dogmatic", + "dogmatism", + "doldrums", + "doleful", + "dolorous", + "doltish", + "domesticate", + "domesticity", + "domicile", + "domination", + "donor", + "doodle", + "dormancy", + "dormant", + "dorsal", + "dossier", + "dotage", + "doting", + "douse", + "dowdy", + "downcast", + "downgrade", + "downplay", + "downpour", + "dowry", + "doyen", + "drabness", + "draconian", + "draftsmanship", + "drawbridge", + "drawl", + "dredge", + "dregs", + "drenched", + "dribble", + "drivel", + "drizzle", + "drizzly", + "droll", + "drollery", + "drone", + "droplet", + "dross", + "drove", + "drudge", + "drudgery", + "duckling", + "ductile", + "ductility", + "dulcet", + "dumbfound", + "dunce", + "duplication", + "duplicitous", + "duplicity", + "durability", + "duress", + "dutiful", + "dwindle", + "dynamite", + "dynamo", + "dysfunctional", + "dyslexia", + "dyspepsia", + "dyspeptic", + "earplug", + "earring", + "earshot", + "earsplitting", + "earthy", + "easel", + "eavesdrop", + "eavesdropper", + "ebullience", + "ebullient", + "ecdysis", + "echelon", + "eclat", + "eclectic", + "eclecticism", + "eclogue", + "ecologist", + "ecosystem", + "ecstatic", + "ecumenical", + "edict", + "edifice", + "edify", + "eerie", + "efface", + "effeminate", + "effervesce", + "effete", + "efficacious", + "efficacy", + "effigy", + "effluvia", + "effluvium", + "effortless", + "effrontery", + "effulgence", + "effulgent", + "effusion", + "effusive", + "egalitarian", + "egocentric", + "egotist", + "egregious", + "egress", + "ejaculate", + "ejaculation", + "elate", + "elated", + "elation", + "electorate", + "elegiac", + "elegy", + "elephantine", + "elicit", + "eligible", + "elite", + "elitism", + "elixir", + "ellipse", + "elocution", + "elongate", + "elongation", + "elope", + "elucidate", + "elude", + "elysium", + "emaciate", + "emaciation", + "emanate", + "emasculate", + "embankment", + "embed", + "embellish", + "embellishment", + "embezzle", + "embezzlement", + "embitter", + "emblazon", + "emblem", + "emblematic", + "embodiment", + "embolden", + "emboss", + "embroil", + "embryo", + "embryonic", + "emend", + "emerald", + "emergence", + "eminence", + "emissary", + "emollient", + "emolument", + "emote", + "empathy", + "empiricism", + "empower", + "empyreal", + "empyrean", + "emulate", + "emulsify", + "enact", + "enactment", + "enamel", + "enamored", + "encapsulate", + "encephalitis", + "enchanting", + "encipher", + "enclave", + "encomiast", + "encomium", + "encompass", + "encroach", + "encumber", + "encumbrance", + "encyclopedia", + "encyclopedic", + "endearing", + "endearment", + "endemic", + "endue", + "enduring", + "enervate", + "enfeeble", + "enfetter", + "enflame", + "enfranchise", + "engaging", + "engender", + "engross", + "engrossing", + "enigma", + "enigmatic", + "enjoin", + "enkindle", + "enlist", + "enliven", + "enmesh", + "enmity", + "ennui", + "enormity", + "enrage", + "enrapture", + "ensconce", + "ensemble", + "enshrine", + "ensign", + "ensnare", + "ensue", + "entangle", + "entertaining", + "enthrall", + "enthralling", + "entice", + "enticement", + "enticing", + "entity", + "entomology", + "entourage", + "entrancing", + "entrapment", + "entreaty", + "entrench", + "entrenched", + "entrepreneur", + "entwine", + "enunciate", + "enunciation", + "environ", + "environs", + "envisage", + "envision", + "enzyme", + "epaulet", + "ephemeral", + "epicure", + "epicurean", + "epidermis", + "epigram", + "epilogue", + "episodic", + "epistemology", + "epistle", + "epitaph", + "epithet", + "epitome", + "epitomize", + "equable", + "equanimity", + "equate", + "equestrian", + "equine", + "equipoise", + "equitable", + "equitation", + "equity", + "equivocal", + "equivocate", + "equivocation", + "erasability", + "erode", + "erotic", + "errant", + "erratic", + "erroneous", + "ersatz", + "erstwhile", + "erudite", + "erudition", + "escalate", + "escalation", + "escapism", + "eschew", + "esophagus", + "esoteric", + "espionage", + "espousal", + "espouse", + "estimable", + "estrange", + "estranged", + "estrangement", + "estuary", + "etching", + "ethereal", + "ethics", + "ethnic", + "ethnography", + "ethnology", + "ethos", + "etiquette", + "etymology", + "eucalyptus", + "eugenic", + "eulogistic", + "eulogize", + "eulogy", + "euphemism", + "euphonious", + "euphony", + "euphoria", + "eurhythmic", + "evacuate", + "evade", + "evanescent", + "evasion", + "evasive", + "evenhanded", + "evict", + "eviction", + "evince", + "eviscerate", + "evocative", + "evoke", + "exacerbate", + "exacting", + "exaction", + "exactitude", + "exaltation", + "excavate", + "excavation", + "exceptionable", + "excerpt", + "exchangeable", + "exchequer", + "excise", + "excitability", + "excitable", + "excogitate", + "excoriate", + "excrete", + "exculpate", + "exculpatory", + "excursive", + "execrable", + "execrate", + "executioner", + "executor", + "exemplar", + "exemplary", + "exemption", + "exhale", + "exhibitionism", + "exhibitionist", + "exhilarate", + "exhilaration", + "exhort", + "exhortation", + "exhume", + "exigence", + "exigency", + "exigent", + "exiguous", + "existential", + "exodus", + "exogamy", + "exorbitance", + "exorbitant", + "exorcise", + "exotic", + "expansive", + "expatiate", + "expatriate", + "expectant", + "expediency", + "expeditious", + "expendable", + "expiate", + "explicable", + "explicate", + "exponent", + "exponentially", + "expository", + "expostulate", + "expound", + "expropriate", + "expulsion", + "expunge", + "expurgate", + "extant", + "extemporaneous", + "extemporize", + "extenuate", + "exterminate", + "externalize", + "extirpate", + "extirpation", + "extol", + "extort", + "extortionist", + "extracurricular", + "extradite", + "extradition", + "extraneous", + "extrapolate", + "extremist", + "extremity", + "extricable", + "extricate", + "extrinsic", + "extroversion", + "extrovert", + "extrude", + "exuberance", + "exuberant", + "exude", + "exult", + "fabulous", + "facade", + "facet", + "facetious", + "facile", + "facilities", + "facsimile", + "factional", + "factionalism", + "factious", + "factitious", + "factorable", + "factotum", + "factual", + "faculty", + "faddish", + "faithfulness", + "falcon", + "fallacious", + "fallacy", + "fallibility", + "fallible", + "fallow", + "falsehood", + "falsification", + "falsify", + "falter", + "famish", + "fanatical", + "fancier", + "fanfare", + "fantasia", + "fantasy", + "farce", + "farrow", + "fascia", + "fastidious", + "fastidiousness", + "fastness", + "fatality", + "fathomable", + "fathomless", + "fatten", + "fatuity", + "fatuous", + "fatuousness", + "faucet", + "faultfinder", + "fauna", + "fawning", + "fealty", + "febrile", + "feckless", + "fecund", + "fecundity", + "feign", + "feigned", + "feint", + "felicitate", + "felicitous", + "felicity", + "feline", + "felon", + "felony", + "feminist", + "fencing", + "fender", + "feral", + "ferment", + "fermentation", + "ferocity", + "ferret", + "fertility", + "fertilize", + "fervid", + "fervor", + "festal", + "fester", + "festive", + "fetid", + "fetish", + "fetter", + "fetus", + "fiasco", + "fickle", + "fictitious", + "fidelity", + "fidget", + "fidgety", + "fiend", + "fiendish", + "figment", + "figurehead", + "figurine", + "filament", + "filch", + "filial", + "filibuster", + "filigree", + "filings", + "fillet", + "filly", + "finable", + "finale", + "finch", + "finery", + "finesse", + "finicky", + "firearm", + "firebrand", + "firefly", + "fiscal", + "fissile", + "fissure", + "fitful", + "fixate", + "flabby", + "flaccid", + "flagellate", + "flagging", + "flaggy", + "flagrant", + "flail", + "flair", + "flamboyant", + "flammable", + "flange", + "flaring", + "flatcar", + "flatterer", + "flattering", + "flattery", + "flatulence", + "flaunt", + "flaunty", + "flavoring", + "flawless", + "fleck", + "fledge", + "fledgling", + "fleeting", + "flick", + "flighty", + "flimsy", + "flinch", + "flint", + "flinty", + "flippancy", + "flippant", + "flirt", + "flirtatious", + "floodgate", + "floppy", + "flora", + "florescence", + "florid", + "floridness", + "flotsam", + "flounder", + "flout", + "fluffy", + "fluidity", + "fluke", + "flunk", + "fluorescent", + "fluster", + "flustered", + "fluvial", + "foible", + "folder", + "folklore", + "folly", + "foment", + "fondle", + "foolserrand", + "foolhardy", + "foolproof", + "foothold", + "footle", + "footlights", + "footloose", + "foppish", + "forage", + "forager", + "foray", + "forbearance", + "forbidding", + "fordable", + "forebear", + "forebode", + "foreboding", + "foreclose", + "foreclosure", + "foreknowledge", + "forensic", + "forerunner", + "foreshadow", + "foresight", + "forestall", + "forfeit", + "forfeiture", + "forger", + "forgo", + "forlorn", + "formative", + "forswear", + "forte", + "forthright", + "forthrightly", + "fortify", + "fortresslike", + "fortuitous", + "forwardness", + "fosse", + "fossilize", + "foyer", + "fracas", + "fractious", + "fragility", + "fragmentation", + "frailty", + "framing", + "frantic", + "fraternal", + "fraternity", + "fraud", + "fraudulent", + "fraught", + "freak", + "freckle", + "freelancer", + "freeway", + "frenetic", + "frenzy", + "fresco", + "fretful", + "fretwork", + "friable", + "frieze", + "frigid", + "frigidity", + "frisk", + "frisky", + "fritter", + "frivolous", + "frolic", + "frolicsome", + "frond", + "frothy", + "frowzy", + "fructify", + "frugality", + "fruition", + "fugitive", + "fulcrum", + "fulminate", + "fulmination", + "fulsome", + "fulsomeness", + "fumigate", + "functionary", + "funereal", + "fungi", + "fungicide", + "furbish", + "furlough", + "furor", + "furtive", + "furtively", + "fusillade", + "fusion", + "fustian", + "fusty", + "futile", + "futility", + "gabble", + "gadfly", + "gadget", + "gaffe", + "gaggle", + "gaiety", + "gainsay", + "galactic", + "galaxy", + "gallant", + "galley", + "gallows", + "galvanize", + "gambit", + "gambol", + "gamely", + "gamut", + "gander", + "gangrene", + "gangway", + "garble", + "garbled", + "gardenia", + "gargantuan", + "gargoyle", + "garish", + "garland", + "garner", + "garnish", + "garret", + "garrulity", + "garrulous", + "gaseous", + "gasification", + "gastric", + "gastritis", + "gastronomy", + "gauche", + "gaucheness", + "gaucherie", + "gaudy", + "gaunt", + "gavel", + "gazetteer", + "gemstone", + "genealogy", + "generality", + "generic", + "genesis", + "genetic", + "geneticist", + "genetics", + "genial", + "genome", + "genre", + "genteel", + "gentility", + "gentry", + "genuflect", + "genus", + "geometrician", + "germane", + "germicide", + "germinate", + "gerontocracy", + "gerontology", + "gerrymander", + "gestate", + "gestation", + "gesticulate", + "geyser", + "giddy", + "gimmick", + "gingerly", + "girder", + "girdle", + "girth", + "glacial", + "glacier", + "glade", + "gladiator", + "glamorous", + "glaring", + "glaze", + "glean", + "gleeful", + "glider", + "glimmer", + "glitch", + "gloaming", + "gloat", + "gloss", + "glossy", + "glower", + "glowing", + "glucose", + "glutinous", + "glutton", + "gluttonous", + "gluttony", + "gnarled", + "gnawing", + "gnome", + "gnomic", + "gobble", + "goblet", + "goggle", + "goldbrick", + "gorgon", + "gormandize", + "gosling", + "gospel", + "gossamer", + "gouge", + "gourmand", + "gourmet", + "governance", + "gracefully", + "gradation", + "graduated", + "graft", + "granary", + "grandeur", + "grandiloquent", + "grandiose", + "grandstand", + "granular", + "granulate", + "granule", + "graphic", + "graphite", + "grasping", + "grate", + "gratification", + "grating", + "gratuitous", + "gratuity", + "gravitational", + "greenhorn", + "gregarious", + "gregariousness", + "grenade", + "gridiron", + "grievance", + "grievous", + "grill", + "grimace", + "grindstone", + "gripe", + "gripping", + "grisly", + "gristle", + "groom", + "grotesque", + "grotto", + "grouch", + "grounded", + "grouse", + "grovel", + "grudging", + "grueling", + "gruesome", + "gruff", + "grumpy", + "guffaw", + "guile", + "guileless", + "guilelessness", + "guillotine", + "guise", + "gulch", + "gullible", + "gully", + "gusher", + "gustation", + "gustatory", + "gusto", + "gutless", + "guttle", + "guzzle", + "gynaecocracy", + "gyrate", + "habitat", + "habituate", + "hackneyed", + "halcyon", + "halfhearted", + "hallow", + "hallowed", + "hallucination", + "halting", + "hangar", + "hangdog", + "hankering", + "hapless", + "harangue", + "harass", + "harassment", + "harbinger", + "hardbitten", + "hardheaded", + "hardihood", + "harpoon", + "harpsichord", + "harridan", + "harrow", + "harrowing", + "harry", + "harshly", + "hassle", + "hatchet", + "hauteur", + "haven", + "havoc", + "hawker", + "hawser", + "hazardous", + "headstrong", + "headway", + "healthfulness", + "hearken", + "hearsay", + "hearten", + "heartrending", + "heckle", + "hectic", + "hector", + "hedonism", + "hedonist", + "hegemony", + "heinous", + "heirloom", + "heliotrope", + "helot", + "helve", + "hemophilia", + "hemorrhage", + "hemostat", + "henpecked", + "hepatitis", + "herbaceous", + "herbicide", + "herbivorous", + "herdsman", + "hereditary", + "heresy", + "heretic", + "heretical", + "hermetic", + "hermit", + "herpetologist", + "heterodox", + "heterogeneous", + "hexagon", + "heyday", + "hiatus", + "hibernal", + "hibernate", + "hidebound", + "hierarchy", + "hieroglyph", + "hieroglyphic", + "highbrow", + "highlight", + "hilarious", + "hilarity", + "hindmost", + "hippopotamus", + "hirsute", + "histocompatibility", + "histology", + "histrionic", + "hoard", + "hoary", + "hobble", + "hodgepodge", + "holocaust", + "holograph", + "holster", + "homage", + "homeopathy", + "homeostasis", + "homiletics", + "homogeneity", + "homogeneous", + "homogenize", + "homograph", + "honorarium", + "hoodwink", + "hormone", + "horology", + "horrendous", + "horrific", + "hortative", + "horticulture", + "hosepipe", + "hostility", + "hotbed", + "hovel", + "howler", + "hubbub", + "hubris", + "huckster", + "huddle", + "humdrum", + "humility", + "hummingbird", + "hunch", + "hurdle", + "hurricane", + "husbandry", + "husky", + "hybrid", + "hydrant", + "hydrate", + "hyperactivity", + "hyperbole", + "hyperbolic", + "hypercritical", + "hypersensitive", + "hypertension", + "hyphen", + "hypnosis", + "hypnotic", + "hypochondria", + "hypocrite", + "hypocritical", + "hypodermic", + "hypotenuse", + "ichthyologist", + "icicle", + "icing", + "iconoclast", + "iconoclastic", + "ideology", + "idiocy", + "idiosyncrasy", + "idolater", + "idolatrous", + "idolatry", + "idolize", + "idyll", + "igneous", + "ignoble", + "ignominious", + "ignominy", + "ignoramus", + "illegitimate", + "illiberal", + "illicit", + "illuminati", + "illuminating", + "illumination", + "illusory", + "illustrious", + "imaginative", + "imbecile", + "imbibe", + "imbroglio", + "imbue", + "imitative", + "immaculate", + "immanent", + "immemorial", + "immensity", + "immobility", + "immobilize", + "immoderate", + "immolate", + "immorality", + "immune", + "immunity", + "immunize", + "immure", + "immutable", + "impair", + "impale", + "impalpable", + "impasse", + "impassioned", + "impassive", + "impassiveness", + "impeach", + "impeccable", + "impecunious", + "impede", + "impediment", + "impel", + "impending", + "impenetrable", + "impenitent", + "imperceptible", + "imperfection", + "imperial", + "imperil", + "imperious", + "impermanent", + "impermeability", + "impermeable", + "impersonal", + "impersonate", + "impersonator", + "impertinence", + "impertinent", + "imperturbable", + "impervious", + "impetuous", + "impetus", + "impiety", + "impinge", + "implacable", + "implant", + "implausible", + "implicate", + "implicit", + "implode", + "implosion", + "impolitic", + "imponderable", + "importune", + "imposing", + "impostor", + "imposture", + "impotent", + "impoverish", + "imprecation", + "imprecise", + "imprecision", + "impregnable", + "impresario", + "impressed", + "impressionable", + "imprint", + "improbity", + "impromptu", + "impropriety", + "improvident", + "improvise", + "improvised", + "imprudent", + "impudent", + "impugn", + "impuissance", + "impulsive", + "impunity", + "imputation", + "impute", + "inadvertence", + "inadvertent", + "inadvertently", + "inalienable", + "inane", + "inanimate", + "inapparent", + "inappreciable", + "inappropriate", + "inborn", + "incandescence", + "incandescent", + "incantation", + "incapacity", + "incarcerate", + "incarnate", + "incendiary", + "inception", + "incertitude", + "incessant", + "inchoate", + "incidence", + "incinerate", + "incipient", + "incise", + "incision", + "incisive", + "incisor", + "incite", + "inclement", + "incogitant", + "incognito", + "incoherent", + "incommensurate", + "incommodious", + "incommunicative", + "incompetence", + "incompetent", + "inconceivable", + "incongruity", + "incongruous", + "inconsequential", + "inconsiderable", + "inconsiderate", + "inconsolable", + "inconsonant", + "inconstancy", + "incontestable", + "incontinent", + "incontrovertible", + "incorporeal", + "incorrigibility", + "incorrigible", + "incorruptible", + "incredulity", + "incriminate", + "incrustation", + "incubate", + "incubation", + "incubator", + "incubus", + "inculcate", + "inculpate", + "incumbent", + "incurable", + "incursion", + "indecipherable", + "indecisive", + "indecorous", + "indefatigable", + "indelibility", + "indelible", + "indemnity", + "indentation", + "indenture", + "indescribable", + "indeterminate", + "indices", + "indict", + "indigence", + "indigenous", + "indigent", + "indignity", + "indiscernible", + "indiscreet", + "indiscretion", + "indiscriminate", + "indispensability", + "indisposed", + "indisputable", + "indistinguishable", + "indite", + "indocile", + "indoctrinate", + "indolent", + "indomitable", + "indubitable", + "induct", + "indulgence", + "indulgent", + "indurate", + "industriousness", + "inebriate", + "inedible", + "ineffable", + "ineffaceable", + "ineffectual", + "inefficacious", + "inelastic", + "inelasticity", + "ineligible", + "ineluctable", + "inept", + "ineptitude", + "inequity", + "inerrancy", + "inert", + "inestimable", + "inexcusable", + "inexhaustible", + "inexorable", + "inexpedient", + "inexpiable", + "inexplicable", + "inexplicit", + "inextricable", + "infallible", + "infamous", + "infamy", + "infantile", + "infatuated", + "infatuation", + "infelicitous", + "infelicity", + "infernal", + "inferno", + "infertile", + "infertility", + "infest", + "infidel", + "infidelity", + "infiltrate", + "infinitesimal", + "infirm", + "inflame", + "inflamed", + "inflammation", + "inflate", + "inflated", + "inflexible", + "infliction", + "influx", + "informality", + "informed", + "informer", + "infraction", + "infuriate", + "infuse", + "ingenuous", + "ingest", + "ingestion", + "ingrained", + "ingrate", + "ingratiate", + "ingratiating", + "ingredient", + "ingress", + "inhale", + "inheritor", + "inhibit", + "inhibited", + "inhibition", + "inhibitor", + "inhumane", + "inimical", + "inimitable", + "iniquitous", + "iniquity", + "injunction", + "injurious", + "inkling", + "innate", + "innocuous", + "innovative", + "innuendo", + "inoculate", + "inoffensive", + "inordinate", + "inquietude", + "inquisitive", + "inroad", + "insalubrity", + "insanity", + "insatiable", + "inscribe", + "inscription", + "inscrutable", + "insecticide", + "insecure", + "insensate", + "insensibility", + "insensible", + "insensitive", + "insensitivity", + "insentient", + "insidious", + "insightful", + "insignia", + "insincerity", + "insinuate", + "insipid", + "insistence", + "insolate", + "insolence", + "insolent", + "insoluble", + "insolvency", + "insomnia", + "insouciance", + "insouciant", + "inspired", + "instability", + "instantaneous", + "instate", + "instigate", + "instigator", + "instill", + "institutionalized", + "instrumentalist", + "insubordinate", + "insubstantial", + "insular", + "insularity", + "insulin", + "insuperable", + "insurgent", + "insurrection", + "intact", + "intangibility", + "intelligible", + "intemperance", + "intemperate", + "intensify", + "inter", + "intercede", + "intercept", + "intercessor", + "interchangeable", + "interdependent", + "interdict", + "interdisciplinary", + "interim", + "interjection", + "interlace", + "interlock", + "interlocking", + "interlocutor", + "interloper", + "interlude", + "intermediary", + "interminable", + "intermingle", + "intermission", + "intermittent", + "intern", + "internecine", + "internment", + "interplay", + "interpolate", + "interpose", + "interregnum", + "interrelate", + "interrogate", + "interrogative", + "intersect", + "intersperse", + "interstice", + "intertwine", + "interweave", + "intestate", + "intestine", + "intimidate", + "intolerant", + "intoxicant", + "intoxicate", + "intractable", + "intransigence", + "intransigent", + "intrepid", + "intricacy", + "intricate", + "intrigue", + "intriguing", + "intrinsic", + "introspection", + "introspective", + "introvert", + "intuition", + "intuitive", + "intumescence", + "inured", + "invariable", + "invariance", + "invective", + "inveigh", + "inveigle", + "inventory", + "invert", + "invertebrate", + "investiture", + "inveterate", + "invidious", + "invigilate", + "invigorate", + "invigorating", + "invigoration", + "invincible", + "inviolable", + "inviolate", + "inviting", + "invoke", + "involuntary", + "invulnerable", + "iodine", + "irascible", + "irate", + "iridescent", + "irksome", + "ironclad", + "ironic", + "irradiate", + "irradicable", + "irrational", + "irreconcilable", + "irredeemable", + "irreducible", + "irrefutable", + "irrelevant", + "irremediable", + "irreparable", + "irrepressible", + "irreproachable", + "irresolute", + "irreverence", + "irritable", + "isotope", + "isthmus", + "iterate", + "itinerant", + "itinerary", + "jabber", + "jaded", + "jagged", + "jamboree", + "jargon", + "jarring", + "jaundice", + "jaundiced", + "jaunt", + "jaunty", + "jejune", + "jeopardy", + "jesting", + "jigsawpuzzle", + "jigsawpuzzle", + "jingoism", + "jingoist", + "jitter", + "jockey", + "jocular", + "jocund", + "jolly", + "jovial", + "jubilant", + "jubilation", + "judicial", + "judicious", + "judiciousness", + "juggernaut", + "juncture", + "jurisdiction", + "jurisprudence", + "juxtapose", + "kaleidoscope", + "kaleidoscopic", + "kennel", + "killjoy", + "kindred", + "kinetic", + "kiosk", + "kitten", + "kleptomania", + "knack", + "knave", + "knead", + "knocker", + "knoll", + "knotty", + "kudos", + "labile", + "labored", + "labyrinth", + "labyrinthine", + "lacerate", + "laceration", + "lachrymose", + "lackadaisical", + "lackey", + "lackluster", + "laconic", + "laconism", + "lactic", + "laggard", + "lagoon", + "laity", + "lambaste", + "lament", + "laminate", + "lampoon", + "lance", + "lancet", + "landfill", + "landlocked", + "landmark", + "landslide", + "languid", + "languish", + "languor", + "lapidary", + "larder", + "largess", + "largesse", + "larva", + "lascivious", + "lassitude", + "lasso", + "latch", + "latency", + "laudable", + "laudatory", + "lavish", + "lavishly", + "laxative", + "laxity", + "layman", + "leash", + "leaven", + "lecherous", + "lechery", + "lectern", + "ledger", + "leery", + "leeward", + "legacy", + "legerdemain", + "legible", + "legion", + "legislate", + "legislature", + "leisureliness", + "leniency", + "lenient", + "leonine", + "leprosy", + "lesion", + "lethal", + "lethargic", + "lethargy", + "lettering", + "levee", + "levelheaded", + "leverage", + "levitate", + "levity", + "lexical", + "lexicographer", + "lexicon", + "liaison", + "libation", + "libel", + "libellous", + "liberality", + "libertine", + "libido", + "libretto", + "licentious", + "licit", + "ligature", + "lighthearted", + "ligneous", + "liken", + "limber", + "limbo", + "limerick", + "limpid", + "lineage", + "lineal", + "lineaments", + "lingual", + "linguistic", + "linoleum", + "lionize", + "liquefy", + "liquidate", + "lissome", + "listless", + "literati", + "lithe", + "litigant", + "litigation", + "littoral", + "liturgy", + "livid", + "loath", + "loathe", + "loathing", + "loathsome", + "locale", + "locomotion", + "locus", + "locution", + "logistics", + "logjam", + "loiter", + "loophole", + "lopsided", + "loquacious", + "loutish", + "lowbred", + "lubricant", + "lubricious", + "lucid", + "lucrative", + "lucre", + "lucubrate", + "lucubration", + "ludicrous", + "lugubrious", + "lugubriousness", + "lukewarm", + "lullaby", + "lumberjack", + "lumen", + "luminary", + "lunatic", + "lurch", + "lurid", + "luscious", + "lustre", + "lustrous", + "lusty", + "luxuriant", + "lynch", + "lyric", + "macabre", + "macerate", + "machiavellian", + "machination", + "maculated", + "madrigal", + "maelstrom", + "maestro", + "magenta", + "magisterial", + "magnanimity", + "magnanimous", + "magnate", + "magniloquent", + "magpie", + "majestic", + "makeshift", + "maladroit", + "malapropism", + "malcontent", + "malediction", + "malefactor", + "maleficent", + "malevolent", + "malfeasance", + "malfunction", + "malign", + "malignant", + "malinger", + "malleable", + "mallet", + "malnutrition", + "malodorous", + "malpractice", + "maltreat", + "mammal", + "mammoth", + "manacle", + "mandate", + "mandatory", + "maneuver", + "mangle", + "mania", + "maniacal", + "manifold", + "manipulative", + "mannequin", + "mannered", + "mannerism", + "mantle", + "manumit", + "manure", + "maraud", + "margarine", + "marionette", + "marital", + "maritime", + "maroon", + "marred", + "marrow", + "marsupial", + "martial", + "martinet", + "mason", + "masquerade", + "mastery", + "masticate", + "matador", + "maternal", + "matriarchy", + "matriculate", + "matrimony", + "matrix", + "maudlin", + "mausoleum", + "mauve", + "maven", + "maverick", + "mawkish", + "maxim", + "mayhem", + "meager", + "meander", + "measles", + "measly", + "measurable", + "measured", + "meddle", + "meddlesome", + "media", + "median", + "mediate", + "medicate", + "mediocre", + "mediocrity", + "meditative", + "medley", + "megalomania", + "meliorism", + "mellifluous", + "melodrama", + "membrane", + "memento", + "mendacious", + "mendacity", + "mendicant", + "menial", + "menthol", + "mentor", + "mercenary", + "mercurial", + "meretricious", + "merger", + "merited", + "meritorious", + "mesmerize", + "metabolism", + "metamorphose", + "metamorphosis", + "metaphor", + "metaphysical", + "metaphysics", + "meteoric", + "meteorology", + "methodical", + "metrical", + "metropolis", + "mettle", + "mettlesome", + "miasma", + "microbe", + "microorganism", + "microscopic", + "midget", + "migratory", + "mildew", + "milieu", + "militant", + "millennium", + "millinery", + "mimic", + "mimicry", + "minaret", + "minatory", + "mincing", + "minion", + "minnow", + "minuet", + "minuscule", + "minutes", + "minutia", + "mirage", + "mirth", + "misanthrope", + "misapprehension", + "misbehave", + "miscalculate", + "miscellany", + "mischievous", + "misconception", + "misconduct", + "misconstrue", + "miscreant", + "misdeed", + "misdemeanor", + "misdirect", + "miserly", + "misguide", + "misinform", + "misjudge", + "misleading", + "misnomer", + "misogamy", + "misogynist", + "misperceive", + "misplace", + "misread", + "misrepresent", + "misrepresentation", + "misshapen", + "missive", + "mistimed", + "mistral", + "misuse", + "mitigate", + "mnemonics", + "mobility", + "mockery", + "moderation", + "moderator", + "modestly", + "modicum", + "modish", + "mogul", + "molar", + "molding", + "moldy", + "molest", + "mollification", + "mollify", + "mollusk", + "mollycoddle", + "molten", + "momentum", + "monarchy", + "mongrel", + "monochromatic", + "monochrome", + "monocle", + "monogamy", + "monograph", + "monolithic", + "monologue", + "monomania", + "monsoon", + "montage", + "moody", + "moralistic", + "morass", + "moratorium", + "morbid", + "mordant", + "mores", + "moribund", + "moron", + "morose", + "morsel", + "mortality", + "mortar", + "mortgage", + "mortification", + "mortify", + "mortuary", + "mosaic", + "motif", + "motility", + "motivational", + "motley", + "mottled", + "mountebank", + "muddle", + "muffled", + "muggy", + "mulch", + "mulct", + "mulish", + "multifarious", + "multiplicity", + "mundane", + "municipality", + "munificence", + "munificent", + "muniments", + "munition", + "munitions", + "mural", + "murky", + "musculature", + "musicologist", + "musket", + "muster", + "musty", + "mutable", + "mutate", + "mutation", + "muted", + "mutilate", + "mutineer", + "mutinous", + "muzzy", + "myopia", + "myopic", + "mythical", + "nadir", + "naivety", + "narcissism", + "narcissist", + "narcotic", + "narrative", + "nasal", + "nascent", + "natal", + "natation", + "natty", + "nauseate", + "nautical", + "navigate", + "naysay", + "nebula", + "nebulous", + "necessitous", + "necropolis", + "nectar", + "needlework", + "nefarious", + "nemesis", + "neolithic", + "neologism", + "neonate", + "neophyte", + "nephritis", + "nepotism", + "nerveless", + "nestling", + "nethermost", + "nettle", + "neurology", + "neurosis", + "neurotic", + "neutralize", + "nexus", + "nibble", + "nicety", + "niche", + "nicotine", + "niggard", + "niggling", + "nihilism", + "nimble", + "nippers", + "nipping", + "nitpick", + "nocturnal", + "noisome", + "nomad", + "nomadic", + "nomenclature", + "nonchalance", + "nonchalant", + "noncommittal", + "nonconformist", + "nonconformity", + "noncontemporaneous", + "nondescript", + "nonentity", + "nonesuch", + "nonflammable", + "nonobservance", + "nonpareil", + "nonplus", + "nonporous", + "nonradioactive", + "nonsensical", + "nonthreatening", + "nontraditional", + "nonverbal", + "nonviable", + "nonviolent", + "nonviscous", + "noose", + "nostalgia", + "nostalgic", + "nostrum", + "notability", + "notch", + "notoriety", + "novice", + "noxious", + "nuance", + "nubile", + "nucleate", + "nudge", + "nugatory", + "numerology", + "numinous", + "numismatic", + "numismatist", + "nunnery", + "nuptial", + "nurture", + "nutrient", + "nutrition", + "nymph", + "oafishness", + "oasis", + "oatmeal", + "obdurate", + "obeisance", + "obelisk", + "obese", + "obfuscate", + "obituary", + "objectionable", + "oblation", + "obligatory", + "obliging", + "oblique", + "oblivion", + "oblivious", + "obloquy", + "obnoxious", + "obscurity", + "obsequies", + "obsequious", + "observable", + "observatory", + "obsess", + "obsessed", + "obsession", + "obsolescent", + "obsolete", + "obstinacy", + "obstreperous", + "obstruct", + "obtrude", + "obtrusive", + "obtuse", + "obverse", + "obviate", + "occlude", + "occult", + "octogenarian", + "ocular", + "oculist", + "oddments", + "odious", + "odium", + "odometer", + "odoriferous", + "odyssey", + "offbeat", + "offenceoffense", + "offense", + "offhand", + "officious", + "offish", + "offstage", + "ointment", + "olfaction", + "olfactory", + "oligarchy", + "omelet", + "omnipotent", + "omnipresent", + "omniscient", + "omnivorous", + "oncologist", + "onerous", + "onslaught", + "ontology", + "opacity", + "opalescence", + "operetta", + "ophthalmology", + "opiate", + "opine", + "opinionated", + "oppressive", + "opprobrious", + "opprobrium", + "optimist", + "optometrist", + "opulent", + "oracle", + "oracular", + "oration", + "orator", + "oratorio", + "oratory", + "orchid", + "ordain", + "ordeal", + "ordinance", + "ordination", + "ordnance", + "orifice", + "ornate", + "ornithologist", + "ornithology", + "orotund", + "orthodontics", + "orthodox", + "orthodoxy", + "orthopedics", + "oscillate", + "osmosis", + "osseous", + "ossify", + "ostensible", + "ostentation", + "ostentatious", + "ostracism", + "ostracize", + "ostrich", + "otiose", + "otter", + "outbid", + "outcast", + "outdated", + "outfit", + "outfox", + "outgoing", + "outgrowth", + "outmaneuver", + "outmoded", + "outnumbered", + "outshine", + "outspoken", + "outstrip", + "outwit", + "ovation", + "overact", + "overbearing", + "overdose", + "overdue", + "overemphasize", + "overexposure", + "overhaul", + "overpower", + "overpowering", + "overreach", + "override", + "overriding", + "overrule", + "oversee", + "overshadow", + "overstate", + "overt", + "overture", + "overturn", + "overweening", + "overwrought", + "ovoid", + "oxidize", + "oxymoron", + "pachyderm", + "pacifist", + "pacify", + "packed", + "padding", + "paean", + "pagan", + "pageant", + "painkiller", + "painstaking", + "palatable", + "palate", + "palatial", + "palaver", + "paleography", + "paleolithic", + "paleontologist", + "paleontology", + "palette", + "palings", + "palliate", + "palliative", + "pallid", + "palmy", + "palpable", + "palpitate", + "palter", + "paltry", + "pamper", + "panacea", + "panache", + "pancreas", + "pandemic", + "pandemonium", + "pander", + "panegyric", + "panoply", + "pantheon", + "pantomime", + "papyrus", + "parable", + "parabola", + "paradigm", + "paradox", + "paragon", + "parallelism", + "paralyze", + "paramount", + "paranoia", + "paranoid", + "paraphrase", + "parch", + "parchment", + "parenthesis", + "pariah", + "parity", + "parka", + "parlance", + "parley", + "parlous", + "parody", + "paroxysm", + "parquet", + "parquetry", + "parry", + "parse", + "parsimonious", + "parsimony", + "partiality", + "particularize", + "partisan", + "parturition", + "parvenu", + "passivity", + "pastel", + "pasteurize", + "pastiche", + "pastor", + "pastoral", + "pastry", + "patchwork", + "patently", + "pathogen", + "pathological", + "pathology", + "pathos", + "patina", + "patio", + "patriarchy", + "patrician", + "patrimony", + "patronize", + "paucity", + "paunchy", + "pauper", + "pawnbroker", + "peaky", + "pecan", + "peccadillo", + "pectoral", + "peculate", + "pecuniary", + "pedagogue", + "pedagogy", + "pedant", + "pedantic", + "pedantry", + "peddle", + "pedestal", + "pediatrics", + "pedigree", + "peerless", + "peeve", + "peevish", + "pejorative", + "pellmell", + "pellucid", + "penalize", + "penance", + "penchant", + "pendent", + "pendulum", + "penetrating", + "peninsula", + "penitent", + "penitentiary", + "pennant", + "pensive", + "penultimate", + "penumbra", + "penurious", + "penury", + "peptic", + "perambulate", + "perceiving", + "perceptible", + "perceptive", + "percolate", + "percussion", + "percussionist", + "peregrination", + "peremptory", + "perennial", + "perfectionist", + "perfervid", + "perfidious", + "perfidy", + "perforate", + "perfunctorily", + "perfunctory", + "perigee", + "perilous", + "peripatetic", + "periphery", + "periphrastic", + "periscope", + "perishable", + "perishing", + "perjure", + "perjury", + "perky", + "permeable", + "permeate", + "permutation", + "pernicious", + "peroration", + "perpetrate", + "perpetuate", + "perpetuation", + "perpetuity", + "perplexed", + "perplexity", + "perquisite", + "persevering", + "persiflage", + "persnickety", + "personable", + "personage", + "personification", + "perspicacious", + "perspicacity", + "perspicuity", + "perspicuous", + "perspire", + "persuasive", + "pertinacious", + "perturbation", + "pervade", + "pervasive", + "perverse", + "perversion", + "pervert", + "pervious", + "pesky", + "pessimism", + "pester", + "pesticide", + "pestilent", + "pestle", + "petal", + "petitioner", + "petrifaction", + "petrify", + "petroglyph", + "petrology", + "pettish", + "petulance", + "petulant", + "phantom", + "pharisaic", + "pharmaceutical", + "pharmacist", + "pharmacology", + "phenomena", + "phenomenal", + "phenomenology", + "phial", + "philander", + "philanthropic", + "philanthropist", + "philanthropy", + "philatelist", + "philately", + "philistine", + "philology", + "phlegmatic", + "phobia", + "phoenix", + "phonetic", + "phony", + "photosynthesis", + "phylogeny", + "phylum", + "physiological", + "piazza", + "piddling", + "piecemeal", + "pierce", + "piercing", + "piety", + "pilfer", + "pillage", + "pillory", + "pincers", + "pinnacle", + "pinpoint", + "piquancy", + "piquant", + "pique", + "pirouette", + "piscatorial", + "pitfall", + "pithiness", + "pithy", + "pitiful", + "pittance", + "pivot", + "pivotal", + "placate", + "placebo", + "placid", + "plagiarism", + "plagiarize", + "plaintiff", + "plaintive", + "plait", + "planetary", + "plangent", + "plank", + "plankton", + "plaque", + "plasticity", + "platitude", + "platonic", + "plaudit", + "plausible", + "plaza", + "pleat", + "plebeian", + "plenitude", + "pleonastic", + "plethora", + "pliable", + "pliant", + "pliers", + "plinth", + "plodding", + "plucky", + "plumage", + "plumbing", + "plummet", + "plush", + "plutocracy", + "podiatrist", + "podiatry", + "podium", + "poetaster", + "poignant", + "pointless", + "poise", + "poised", + "polarization", + "polarize", + "polemic", + "polemical", + "polished", + "politic", + "politicize", + "pollen", + "pollinate", + "pollster", + "poltroon", + "polyandry", + "polygamy", + "polyglot", + "polymath", + "pomposity", + "pompous", + "poncho", + "ponderable", + "ponderous", + "poniard", + "pontifical", + "pontificate", + "populace", + "populous", + "porcine", + "porcupine", + "porous", + "portend", + "portent", + "portentous", + "portfolio", + "portraiture", + "poseur", + "posit", + "positiveness", + "posse", + "possessed", + "poster", + "posterior", + "posthumous", + "posture", + "potable", + "potation", + "potency", + "potentate", + "potentiate", + "potpourri", + "potshot", + "pottery", + "practitioner", + "pragmatic", + "pragmatism", + "prance", + "prank", + "prate", + "prattle", + "preamble", + "precarious", + "precept", + "precipice", + "precipitant", + "precipitate", + "precipitation", + "precipitous", + "preclude", + "precocious", + "precognition", + "preconception", + "precursor", + "precursory", + "predator", + "predestine", + "predetermined", + "predicament", + "predilection", + "predisposition", + "predominate", + "preeminent", + "preempt", + "preen", + "prefatory", + "prefigure", + "prehensile", + "prehistoric", + "prejudiced", + "prejudicial", + "prelate", + "preliterate", + "premeditate", + "premeditated", + "premiere", + "premise", + "premonition", + "preoccupation", + "preoccupied", + "preponderance", + "preponderate", + "prepossessing", + "preposterous", + "prerequisite", + "prerogative", + "presage", + "prescience", + "prescient", + "prescript", + "presenter", + "preservative", + "prestidigitation", + "prestigious", + "presumable", + "presumption", + "presumptuous", + "presupposition", + "pretence", + "pretension", + "preternatural", + "pretext", + "prevaricate", + "prevarication", + "preventive", + "preview", + "prevision", + "prickle", + "prickly", + "primacy", + "primate", + "primer", + "primeval", + "primordial", + "primp", + "pristine", + "privation", + "probation", + "probity", + "proboscis", + "proclamation", + "proclivity", + "procrastinate", + "procrastination", + "procreate", + "procrustean", + "proctor", + "prodigal", + "prodigality", + "prodigious", + "prodigy", + "profane", + "proffer", + "profiteer", + "profligacy", + "profligate", + "profundity", + "profuse", + "profusion", + "progenitor", + "progeny", + "prognosis", + "prognosticate", + "projectile", + "proliferate", + "prolific", + "prolix", + "prolixity", + "prologue", + "promenade", + "promiscuous", + "promulgate", + "pronounced", + "propensity", + "prophecy", + "prophetic", + "propinquity", + "propitiate", + "propitiatory", + "propitious", + "proponent", + "propound", + "proprietary", + "propriety", + "propulsion", + "prorogue", + "prosaic", + "proscribe", + "proselyte", + "proselytize", + "proselytizer", + "prospective", + "prospects", + "prosper", + "prostrate", + "protagonist", + "protean", + "protract", + "protrude", + "protuberance", + "protuberant", + "provenance", + "provender", + "proverbially", + "provident", + "providential", + "provisory", + "provocative", + "prowess", + "prowl", + "proximate", + "proximity", + "prude", + "prudery", + "prudish", + "prune", + "prurient", + "psalm", + "psephology", + "pseudonym", + "psyche", + "psychiatrist", + "psychiatry", + "psychoanalysis", + "psychopathic", + "psychosis", + "psychotic", + "puberty", + "publicize", + "pucker", + "puckish", + "puddle", + "puerile", + "pugilism", + "pugilist", + "pugnacious", + "puissance", + "puissant", + "pulchritude", + "pullet", + "pullulate", + "pulpit", + "pulsate", + "pulsating", + "pulverize", + "pummel", + "punctilious", + "puncture", + "pundit", + "pungency", + "pungent", + "purblind", + "purebred", + "purgative", + "purgatory", + "purge", + "purification", + "puritanical", + "purlieu", + "purloin", + "purport", + "purported", + "purposively", + "purvey", + "pusillanimous", + "putative", + "putrefy", + "putrid", + "pygmy", + "pylon", + "pyromania", + "quack", + "quadrangle", + "quadruped", + "quaff", + "quagmire", + "quail", + "quaint", + "qualm", + "qualms", + "quandary", + "quantum", + "quarantine", + "quarry", + "quartet", + "quash", + "quaver", + "queasy", + "quell", + "querulous", + "quibble", + "quiescence", + "quiescent", + "quietude", + "quill", + "quintessence", + "quirk", + "quisling", + "quixotic", + "quorum", + "quotidian", + "rabble", + "rabid", + "rabies", + "raconteur", + "radiance", + "raffish", + "raffle", + "rafter", + "ragged", + "ragtime", + "raillery", + "raisin", + "rakish", + "rambunctious", + "ramify", + "rampage", + "rampant", + "rampart", + "ramshackle", + "rancid", + "rancor", + "rancorous", + "randomize", + "ranger", + "rankle", + "ransom", + "rapacious", + "rapids", + "rapport", + "rapprochement", + "rarefaction", + "rarefy", + "rarity", + "rashness", + "raspy", + "ratiocination", + "rationale", + "rationality", + "rationalize", + "raucous", + "ravel", + "ravenous", + "ravine", + "ravish", + "ravishing", + "rawhide", + "reactant", + "reactivate", + "reaffirm", + "reagent", + "realign", + "realized", + "reaper", + "reasoning", + "reassurance", + "reassuring", + "rebarbative", + "rebellious", + "rebuff", + "rebus", + "rebuttal", + "recalcitrant", + "recalibration", + "recant", + "recantation", + "recapitulate", + "recast", + "receptacle", + "receptive", + "recess", + "recessive", + "recidivism", + "reciprocate", + "reciprocating", + "reciprocity", + "recital", + "recline", + "recluse", + "reclusive", + "recoil", + "recombine", + "reconciliation", + "recondite", + "reconstitute", + "reconstruct", + "reconvene", + "recount", + "recreant", + "recriminate", + "rectangular", + "rectitude", + "recumbent", + "recuperate", + "recycle", + "redemption", + "redemptive", + "redirect", + "redistribution", + "redolent", + "redoubtable", + "redress", + "redundancy", + "redundant", + "reenact", + "refectory", + "reflective", + "reformulate", + "refraction", + "refractory", + "refulgent", + "refurbish", + "refutable", + "refutation", + "regal", + "regale", + "regenerate", + "regent", + "regimen", + "regimentation", + "regress", + "regressive", + "rehabilitate", + "reincarnate", + "reincarnation", + "reinstate", + "rejoicing", + "rejoin", + "rejoinder", + "rejuvenate", + "rekindle", + "relapse", + "relegate", + "relent", + "relenting", + "relentless", + "relevance", + "relic", + "relieved", + "relocate", + "remediable", + "reminder", + "reminisce", + "remiss", + "remission", + "remittent", + "remodel", + "remonstrate", + "remorse", + "remunerate", + "remunerative", + "renascent", + "rendering", + "rendezvous", + "rendition", + "renegade", + "renege", + "renounce", + "renovate", + "renown", + "renowned", + "reparable", + "reparation", + "repartee", + "repatriate", + "repellent", + "repercussion", + "repertoire", + "repine", + "replete", + "repletion", + "replica", + "replicate", + "reportorial", + "repose", + "repository", + "repossess", + "reprehend", + "reprehensible", + "repress", + "repressed", + "reprieve", + "reprimand", + "reprisal", + "reprise", + "reprobate", + "reproof", + "reprove", + "reptilian", + "repugnance", + "repugnant", + "repulse", + "repulsion", + "repulsive", + "reputed", + "requiem", + "requisition", + "requital", + "requite", + "rescission", + "rescript", + "reserved", + "reshuffle", + "residue", + "resigned", + "resilience", + "resilient", + "resin", + "resonant", + "resortto", + "resound", + "resourceful", + "respiration", + "respiratory", + "respite", + "resplendent", + "respondent", + "responsive", + "responsiveness", + "restate", + "restitution", + "restive", + "restiveness", + "restorative", + "restored", + "restrained", + "restricted", + "resumption", + "resurge", + "resurgence", + "resurgent", + "resurrect", + "resuscitate", + "retainer", + "retaliate", + "retaliation", + "retard", + "retention", + "retentive", + "reticent", + "reticulation", + "retinue", + "retiring", + "retouch", + "retrace", + "retract", + "retractability", + "retrench", + "retribution", + "retributive", + "retrieve", + "retrograde", + "retrogress", + "retrospect", + "retrospective", + "revealing", + "revelation", + "revelry", + "reverberate", + "revere", + "reverend", + "reverent", + "reverie", + "reversal", + "reversion", + "revile", + "revitalize", + "revue", + "revulsion", + "rhapsody", + "rhetoric", + "rhinestone", + "rhubarb", + "rhythmic", + "ribald", + "rickety", + "rider", + "ringlet", + "risible", + "ritual", + "riven", + "rivet", + "riveting", + "rivulet", + "roadway", + "rodent", + "roguish", + "roister", + "rollicking", + "rookie", + "roost", + "roster", + "rostrum", + "rotund", + "roughen", + "rowdy", + "rubble", + "rubicund", + "rucksack", + "rudder", + "ruddy", + "rudimentary", + "rudiments", + "rueful", + "ruffian", + "ruffle", + "rumble", + "ruminant", + "ruminate", + "rumple", + "runic", + "rupture", + "rustic", + "rustle", + "rustler", + "ruthlessness", + "sabbatical", + "saber", + "sabotage", + "saboteur", + "saccharin", + "sacrament", + "sacrilege", + "sacrilegious", + "sacrosanct", + "sadden", + "sadistic", + "safari", + "safeguard", + "sagacious", + "sagacity", + "saintly", + "salacious", + "salient", + "saliferous", + "saliva", + "salubrious", + "salutary", + "salutation", + "salvage", + "salvation", + "salve", + "sampler", + "sanatorium", + "sanctify", + "sanctimonious", + "sanction", + "sanctuary", + "sandal", + "sangfroid", + "sanguine", + "sanitation", + "sanity", + "sapient", + "sapless", + "sapling", + "sapphire", + "sardonic", + "sartorial", + "satanic", + "satiate", + "satiated", + "satiety", + "satiny", + "satirical", + "satirize", + "saturate", + "saturated", + "saturnine", + "saunter", + "savanna", + "savant", + "savor", + "savory", + "savvy", + "sawdust", + "scabbard", + "scabrous", + "scads", + "scaffold", + "scald", + "scalding", + "scalpel", + "scamper", + "scandalous", + "scant", + "scanty", + "scapegoat", + "scarp", + "scathe", + "scathing", + "scavenge", + "scenario", + "scepter", + "sceptical", + "schematic", + "schematize", + "schism", + "scintilla", + "scintillate", + "scintillating", + "scion", + "scissor", + "scoop", + "scorpion", + "scoundrel", + "scour", + "scourge", + "scowl", + "scrappy", + "scrawl", + "screed", + "scribble", + "scripture", + "scroll", + "scrumptious", + "scruple", + "scrupulous", + "scrutable", + "scrutinize", + "scuff", + "sculpt", + "scurrilous", + "scurry", + "scurvy", + "scuttle", + "scythe", + "seafaring", + "seamstress", + "seamy", + "seascape", + "seasoned", + "seasoning", + "secede", + "seclude", + "secluded", + "seclusion", + "secrete", + "secretive", + "sectarian", + "secular", + "securities", + "sedate", + "sedative", + "sedentary", + "sediment", + "sedition", + "seditious", + "seduce", + "seductive", + "sedulity", + "sedulous", + "seedling", + "seedy", + "seemly", + "seethe", + "segregate", + "seine", + "seismic", + "semblance", + "seminal", + "seminary", + "senile", + "sensibleness", + "sensitization", + "sensual", + "sententious", + "sentient", + "sentinel", + "sentry", + "septic", + "sepulchral", + "sequacious", + "sequential", + "sequester", + "sequestrate", + "seraphic", + "serenade", + "serendipity", + "serial", + "seriousness", + "sermonize", + "serpentine", + "serrate", + "serrated", + "serried", + "servile", + "servitude", + "setback", + "settled", + "sever", + "severity", + "sewer", + "sextant", + "shack", + "shackle", + "shale", + "shambles", + "shanty", + "shard", + "shattered", + "shavings", + "shawl", + "sheaf", + "sheath", + "sheathe", + "sheen", + "shelve", + "shibboleth", + "shiftiness", + "shiftless", + "shimmer", + "shingle", + "shipshape", + "shipwright", + "shirk", + "shoal", + "shoddy", + "shoplift", + "shopworn", + "showpiece", + "showy", + "shrew", + "shrivel", + "shuck", + "shudder", + "shunt", + "sibilant", + "sibling", + "sibyl", + "sidereal", + "sideshow", + "sidesplitting", + "sidestep", + "sidle", + "signatory", + "silversmith", + "simian", + "simile", + "simper", + "simpleton", + "simulation", + "sinecure", + "sinew", + "sinewy", + "singe", + "singularity", + "sinister", + "sinkhole", + "sinuous", + "sizzler", + "skein", + "skeptic", + "skeptical", + "skepticism", + "sketchy", + "skewer", + "skiff", + "skillet", + "skimp", + "skimpy", + "skinflint", + "skittish", + "skulduggery", + "skunk", + "slacken", + "slake", + "slanderous", + "slant", + "slapdash", + "slate", + "slaver", + "sleazy", + "sledge", + "sledgehammer", + "sleigh", + "sleight", + "slick", + "sling", + "slippage", + "slipshod", + "slither", + "sliver", + "slobber", + "sloppy", + "sloth", + "slouch", + "slough", + "sloven", + "slovenly", + "sluggard", + "sluggish", + "sluice", + "slurp", + "smarmy", + "smattering", + "smear", + "smelt", + "smirch", + "smirk", + "smolder", + "smother", + "smudge", + "snappish", + "snappy", + "snare", + "snarl", + "sneaking", + "snicker", + "snide", + "snitch", + "snowdrift", + "snuggle", + "sobriety", + "sodden", + "soggy", + "sojourn", + "solace", + "solder", + "solecism", + "solemnity", + "solicit", + "solicitous", + "solicitude", + "solidify", + "soliloquy", + "soluble", + "somatic", + "somber", + "somnolent", + "sonata", + "sonorous", + "sophism", + "sophistry", + "sophomoric", + "soporific", + "sopping", + "soprano", + "sorcery", + "sordid", + "souse", + "spackle", + "spangle", + "spank", + "sparing", + "sparring", + "sparse", + "spartan", + "spasm", + "spasmodic", + "spate", + "spatula", + "spawn", + "specifics", + "specious", + "speck", + "specter", + "spectral", + "speculative", + "speleology", + "spelunker", + "spendthrift", + "spike", + "spindly", + "spineless", + "spinster", + "spiny", + "spire", + "splashy", + "spleen", + "spleenish", + "splendor", + "splice", + "splint", + "splinter", + "splurge", + "spoke", + "spongy", + "spontaneity", + "spoof", + "spool", + "spoor", + "sporadic", + "spore", + "spout", + "sprawl", + "sprawling", + "sprig", + "sprightly", + "sprinkler", + "sprinkling", + "sprint", + "sprocket", + "spruce", + "spunk", + "spurious", + "spurn", + "squabble", + "squalid", + "squall", + "squalor", + "squander", + "squeamish", + "squelch", + "squint", + "stabilize", + "staccato", + "staggering", + "stagnant", + "stagy", + "staid", + "stalemate", + "stalwart", + "stamina", + "stance", + "stanch", + "stanza", + "starchy", + "stark", + "stash", + "stasis", + "statuary", + "statuette", + "stature", + "statutory", + "steadfast", + "stealth", + "steeple", + "stellar", + "stench", + "stenography", + "stentorian", + "stereotype", + "sterile", + "sterilize", + "stethoscope", + "stickler", + "stifle", + "stigma", + "stigmatize", + "stiletto", + "stilted", + "stimulant", + "stimulus", + "stinginess", + "stingy", + "stint", + "stipend", + "stipple", + "stockade", + "stocky", + "stodgy", + "stoic", + "stoke", + "stolid", + "stonewall", + "stouthearted", + "stowaway", + "straightforwardness", + "straits", + "stranded", + "strangulation", + "stratagem", + "stratify", + "stratosphere", + "stratum", + "strenuous", + "stressful", + "strew", + "striate", + "striated", + "stricture", + "strident", + "stringent", + "stripling", + "strut", + "studied", + "stultify", + "stunning", + "stunt", + "stupefy", + "stupendous", + "stupor", + "stutter", + "stygian", + "stylus", + "stymie", + "subdued", + "subjection", + "subjugate", + "sublimate", + "sublime", + "subliminal", + "submission", + "submissive", + "suborn", + "subpoena", + "subservient", + "subside", + "subsidize", + "subsidy", + "subsist", + "subsistence", + "substantive", + "substratum", + "subsume", + "subterfuge", + "subterranean", + "subtlety", + "subvention", + "subversive", + "subvert", + "successively", + "succinct", + "succinctness", + "succor", + "succulent", + "succumb", + "suede", + "suffocate", + "suffrage", + "suffragist", + "suffuse", + "suggestible", + "suggestive", + "sulky", + "sully", + "summarily", + "summation", + "sumptuous", + "sunder", + "sundry", + "superannuated", + "supercilious", + "superciliousness", + "superficiality", + "superfluity", + "superfluous", + "superimpose", + "superintend", + "superlative", + "supernatural", + "supernova", + "superstructure", + "supine", + "supplant", + "supple", + "suppliant", + "supplicant", + "supplicate", + "supposition", + "supremacy", + "surfeit", + "surly", + "surmount", + "surrealism", + "surreptitious", + "surrogate", + "surveillance", + "susceptibility", + "susceptible", + "suspended", + "sustained", + "sustenance", + "suture", + "svelte", + "swagger", + "swank", + "swarthy", + "sweltering", + "swerve", + "swill", + "swindle", + "swine", + "swipe", + "swirl", + "sybarite", + "sybaritic", + "sycophant", + "syllabus", + "syllogism", + "symbiosis", + "synchronize", + "synchronous", + "syncopate", + "syndrome", + "synergic", + "synonymous", + "synopsis", + "synoptic", + "syringe", + "systematize", + "tablecloth", + "tableland", + "taboo", + "tachometer", + "tacit", + "taciturn", + "taciturnity", + "tackiness", + "tactic", + "tactile", + "tactless", + "tadpole", + "taint", + "tainted", + "taking", + "talisman", + "talon", + "tambourine", + "tamper", + "tangent", + "tangential", + "tangible", + "tango", + "tangy", + "tanner", + "tantalize", + "tantamount", + "tantrum", + "taper", + "tapestry", + "tardy", + "tarnish", + "tarpaulin", + "tarry", + "tassel", + "tasty", + "tattered", + "tatty", + "taunt", + "tauten", + "tautological", + "tawdry", + "taxing", + "taxonomist", + "taxonomy", + "technocrat", + "tedium", + "teeter", + "teetotal", + "teetotaler", + "teetotalism", + "telling", + "temerity", + "temperamental", + "temperance", + "temperate", + "temperately", + "tempest", + "tempestuous", + "tempo", + "temporal", + "temporize", + "tenable", + "tenacious", + "tenacity", + "tendentious", + "tenet", + "tensile", + "tenuous", + "tenure", + "tepid", + "terminus", + "termite", + "terpsichorean", + "terrain", + "terrapin", + "terrestrial", + "terse", + "testament", + "testator", + "testimonial", + "testiness", + "testy", + "tether", + "texture", + "thatch", + "theism", + "thematic", + "theocracy", + "theologian", + "theology", + "therapeutic", + "therapy", + "thermal", + "thespian", + "thicket", + "thrall", + "threadbare", + "thresh", + "throes", + "throttle", + "throwback", + "thwart", + "tickler", + "ticklish", + "tightfisted", + "timbre", + "timidity", + "timorous", + "tinder", + "tined", + "tinge", + "tinker", + "tipple", + "tirade", + "titanic", + "titillate", + "titular", + "toady", + "tongs", + "tonic", + "tonsorial", + "topmost", + "topography", + "topple", + "topsoil", + "tornado", + "torpid", + "torpor", + "torque", + "torrential", + "torrid", + "torridness", + "torso", + "tortuous", + "totalitarian", + "totem", + "totter", + "touching", + "touchstone", + "touchy", + "toupee", + "tournament", + "tourniquet", + "tousle", + "towering", + "toxic", + "toxin", + "traceable", + "tract", + "tractability", + "tractable", + "traction", + "traduce", + "tragedian", + "tragedienne", + "trait", + "trajectory", + "trammel", + "trance", + "tranquility", + "tranquilizer", + "transcend", + "transcendent", + "transcendental", + "transcribe", + "transfigure", + "transfuse", + "transgress", + "transgression", + "transience", + "transient", + "transitory", + "translucent", + "transmute", + "transplantation", + "transpose", + "trapeze", + "trauma", + "traumatic", + "travail", + "travelogue", + "travesty", + "trawl", + "treacherous", + "treacherousness", + "treachery", + "treatise", + "tremor", + "tremulous", + "trenchant", + "trepidation", + "trespass", + "tresses", + "tribulation", + "tribunal", + "tributary", + "trickery", + "trickster", + "trident", + "trifling", + "trilogy", + "trinket", + "tripod", + "trite", + "trivia", + "trophy", + "troth", + "troupe", + "trowel", + "truancy", + "truce", + "truculence", + "truculent", + "trudge", + "truism", + "trumpery", + "truncate", + "truncated", + "truss", + "trustworthy", + "truthfulness", + "tuber", + "tugboat", + "tumbler", + "tumid", + "tundra", + "turbid", + "turbulence", + "turgid", + "turmoil", + "turncoat", + "turpitude", + "turquoise", + "turret", + "tussle", + "tutelage", + "tuxedo", + "twaddle", + "twinge", + "tycoon", + "typographical", + "ubiquitous", + "ulcerate", + "ulterior", + "ultramundane", + "umbrage", + "umpire", + "unabashed", + "unadorned", + "unadulterated", + "unadvised", + "unaffected", + "unalloyed", + "unalterable", + "unambiguous", + "unanimity", + "unanticipated", + "unapologetic", + "unarticulated", + "unascertained", + "unassailable", + "unassuming", + "unavailable", + "unavailing", + "unaware", + "unbecoming", + "unbend", + "unbiased", + "unbidden", + "unblemished", + "unbridled", + "uncanny", + "unchangeable", + "uncharitableness", + "uncharted", + "unchecked", + "uncommitted", + "uncommunicative", + "unconcern", + "unconscionable", + "unconventional", + "unconventionality", + "unconvincing", + "uncouth", + "unctuous", + "undaunted", + "undefined", + "undemanding", + "undeniable", + "underbid", + "undercut", + "underdog", + "underestimated", + "undergird", + "underhanded", + "underling", + "underplay", + "underrate", + "understate", + "understated", + "understatement", + "understudy", + "underutilized", + "underwrite", + "undeserved", + "undesirable", + "undirected", + "undisciplined", + "undistinguished", + "undrinkable", + "undulate", + "unearth", + "unearthly", + "unencumbered", + "unenlightened", + "unequivocal", + "unexceptionable", + "unfailing", + "unfasten", + "unfathomed", + "unfeigned", + "unfettered", + "unflappable", + "unfounded", + "ungainly", + "ungrudging", + "unguarded", + "unguent", + "unicorn", + "unidentified", + "unidimensional", + "unification", + "uniformity", + "unify", + "unilateral", + "unimpassioned", + "unimpeachable", + "unimpressive", + "uninhabitable", + "uninitiated", + "unison", + "univocal", + "unjustifiable", + "unjustified", + "unjustly", + "unkempt", + "unleash", + "unlettered", + "unmitigated", + "unmoved", + "unnoticed", + "unobjectionable", + "unobservable", + "unobstructed", + "unobtrusive", + "unorthodoxy", + "unpalatable", + "unpredictable", + "unpremeditated", + "unprepossessing", + "unpretentious", + "unprincipled", + "unproductive", + "unprovoked", + "unqualified", + "unravel", + "unregenerate", + "unregulated", + "unremitting", + "unrepentant", + "unrepressed", + "unrequited", + "unreserved", + "unresponsive", + "unrestrained", + "unruly", + "unscathed", + "unscented", + "unschooled", + "unscrupulous", + "unscrupulousness", + "unseemly", + "unsettle", + "unsettling", + "unsophisticated", + "unsound", + "unspoiled", + "unspotted", + "unstinting", + "unsubstantiated", + "untapped", + "untenable", + "unthreatening", + "untimely", + "untold", + "untoward", + "untutored", + "unversed", + "unwieldy", + "unwind", + "unwise", + "unwitting", + "unwonted", + "unworldly", + "unyielding", + "upbraid", + "upfront", + "upgrade", + "upheaval", + "upholstery", + "uproarious", + "upstage", + "upstart", + "upsurge", + "upswing", + "uptight", + "urbane", + "urchin", + "ursine", + "usher", + "usurp", + "usury", + "utilitarian", + "utopia", + "utopian", + "uxorious", + "vaccine", + "vacillate", + "vacillation", + "vacuous", + "vagabond", + "vagary", + "vagrancy", + "vagrant", + "vainglorious", + "valediction", + "valedictory", + "valetudinarian", + "valiant", + "validate", + "valor", + "valorous", + "vampire", + "vandalism", + "vandalize", + "vanguard", + "vanilla", + "vanquish", + "vantage", + "vapid", + "vaporization", + "vaporize", + "vaporous", + "variability", + "variegate", + "variegated", + "variegation", + "vascular", + "vaudeville", + "vaunt", + "vaunting", + "vegetate", + "vegetation", + "vehement", + "venal", + "vendetta", + "vendor", + "veneer", + "venerable", + "venerate", + "veneration", + "vengeful", + "venial", + "venison", + "venom", + "ventral", + "ventriloquist", + "venturesome", + "veracious", + "veracity", + "verbatim", + "verbiage", + "verbose", + "verbosity", + "verdant", + "verdict", + "verdigris", + "verified", + "verisimilar", + "verisimilitude", + "veritable", + "vermin", + "vernacular", + "vernal", + "versed", + "versemonger", + "vertebrate", + "vertex", + "vertiginous", + "vertigo", + "verve", + "vestige", + "vestigial", + "vestment", + "vesture", + "veterinary", + "vexation", + "viability", + "viable", + "viaduct", + "viands", + "vibrancy", + "vibrant", + "vicar", + "vicarious", + "vicissitudes", + "vicissitudinous", + "victimize", + "victor", + "vigilance", + "vigilant", + "vignette", + "vigorously", + "vilify", + "villainous", + "vindicate", + "vindication", + "vindictive", + "vinegared", + "vintner", + "vinyl", + "viola", + "viral", + "virile", + "virility", + "virtuosity", + "virtuoso", + "virtuous", + "virulent", + "visage", + "viscid", + "viscosity", + "visionary", + "vista", + "vitality", + "vitalize", + "vitiate", + "vitreous", + "vitrify", + "vitriolic", + "vituperate", + "vituperative", + "vivacious", + "vocal", + "vocalist", + "vociferous", + "volatile", + "volition", + "volubility", + "voluble", + "voluminous", + "voluptuous", + "voracious", + "voracity", + "vortex", + "votary", + "voyeur", + "vulpine", + "vulture", + "vying", + "waddle", + "waffle", + "waggish", + "wallop", + "wallow", + "walrus", + "wanderlust", + "wangle", + "wanton", + "warble", + "warden", + "warmonger", + "waspish", + "wasteland", + "wastrel", + "watershed", + "waylay", + "wearisome", + "weasel", + "weird", + "welsh", + "welter", + "wheedle", + "whelm", + "whelp", + "whetstone", + "whiff", + "whimsical", + "whimsy", + "whine", + "whirlpool", + "whittle", + "wholesomeness", + "wiggle", + "willful", + "willowy", + "wince", + "windbag", + "windfall", + "winnow", + "winsome", + "wistful", + "withdrawn", + "witticism", + "wizardry", + "wizened", + "wobble", + "woeful", + "woodcut", + "woodcutter", + "woodpile", + "wordsmith", + "worldly", + "wraith", + "wrangle", + "wrangler", + "wreak", + "wreathe", + "wreckage", + "wrongdoing", + "wrongheaded", + "wrought", + "xenophobe", + "xenophobia", + "xerophyte", + "yeoman", + "yielding", + "yokel", + "zealot", + "zealotry", + "zenith", + "zephyr", + "zigzag" +] \ No newline at end of file diff --git a/HD wallpaper.xcodeproj/project.pbxproj b/TallPaper.xcodeproj/project.pbxproj similarity index 99% rename from HD wallpaper.xcodeproj/project.pbxproj rename to TallPaper.xcodeproj/project.pbxproj index 4c26e2e..e1373e0 100644 --- a/HD wallpaper.xcodeproj/project.pbxproj +++ b/TallPaper.xcodeproj/project.pbxproj @@ -330,7 +330,7 @@ }; }; }; - buildConfigurationList = 057AF78B2BF1E86F00078C98 /* Build configuration list for PBXProject "HD wallpaper" */; + buildConfigurationList = 057AF78B2BF1E86F00078C98 /* Build configuration list for PBXProject "TallPaper" */; compatibilityVersion = "Xcode 14.0"; developmentRegion = en; hasScannedForEncodings = 0; @@ -652,7 +652,7 @@ /* End XCBuildConfiguration section */ /* Begin XCConfigurationList section */ - 057AF78B2BF1E86F00078C98 /* Build configuration list for PBXProject "HD wallpaper" */ = { + 057AF78B2BF1E86F00078C98 /* Build configuration list for PBXProject "TallPaper" */ = { isa = XCConfigurationList; buildConfigurations = ( 057AF7A72BF1E87100078C98 /* Debug */, diff --git a/HD wallpaper.xcodeproj/project.xcworkspace/contents.xcworkspacedata b/TallPaper.xcodeproj/project.xcworkspace/contents.xcworkspacedata similarity index 100% rename from HD wallpaper.xcodeproj/project.xcworkspace/contents.xcworkspacedata rename to TallPaper.xcodeproj/project.xcworkspace/contents.xcworkspacedata diff --git a/HD wallpaper.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/TallPaper.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist similarity index 100% rename from HD wallpaper.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist rename to TallPaper.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist diff --git a/HD wallpaper.xcodeproj/project.xcworkspace/xcuserdata/aaa.xcuserdatad/UserInterfaceState.xcuserstate b/TallPaper.xcodeproj/project.xcworkspace/xcuserdata/aaa.xcuserdatad/UserInterfaceState.xcuserstate similarity index 100% rename from HD wallpaper.xcodeproj/project.xcworkspace/xcuserdata/aaa.xcuserdatad/UserInterfaceState.xcuserstate rename to TallPaper.xcodeproj/project.xcworkspace/xcuserdata/aaa.xcuserdatad/UserInterfaceState.xcuserstate diff --git a/HD wallpaper.xcodeproj/project.xcworkspace/xcuserdata/deven.xcuserdatad/UserInterfaceState.xcuserstate b/TallPaper.xcodeproj/project.xcworkspace/xcuserdata/deven.xcuserdatad/UserInterfaceState.xcuserstate similarity index 100% rename from HD wallpaper.xcodeproj/project.xcworkspace/xcuserdata/deven.xcuserdatad/UserInterfaceState.xcuserstate rename to TallPaper.xcodeproj/project.xcworkspace/xcuserdata/deven.xcuserdatad/UserInterfaceState.xcuserstate diff --git a/HD wallpaper.xcodeproj/project.xcworkspace/xcuserdata/qifeile.xcuserdatad/UserInterfaceState.xcuserstate b/TallPaper.xcodeproj/project.xcworkspace/xcuserdata/qifeile.xcuserdatad/UserInterfaceState.xcuserstate similarity index 100% rename from HD wallpaper.xcodeproj/project.xcworkspace/xcuserdata/qifeile.xcuserdatad/UserInterfaceState.xcuserstate rename to TallPaper.xcodeproj/project.xcworkspace/xcuserdata/qifeile.xcuserdatad/UserInterfaceState.xcuserstate diff --git a/HD wallpaper.xcodeproj/xcshareddata/xcschemes/HD wallpaper.xcscheme b/TallPaper.xcodeproj/xcshareddata/xcschemes/HD wallpaper.xcscheme similarity index 92% rename from HD wallpaper.xcodeproj/xcshareddata/xcschemes/HD wallpaper.xcscheme rename to TallPaper.xcodeproj/xcshareddata/xcschemes/HD wallpaper.xcscheme index 1e02cbc..6a3e1e0 100644 --- a/HD wallpaper.xcodeproj/xcshareddata/xcschemes/HD wallpaper.xcscheme +++ b/TallPaper.xcodeproj/xcshareddata/xcschemes/HD wallpaper.xcscheme @@ -18,7 +18,7 @@ BlueprintIdentifier = "057AF78F2BF1E86F00078C98" BuildableName = "TallPaper.app" BlueprintName = "TallPaper" - ReferencedContainer = "container:HD wallpaper.xcodeproj"> + ReferencedContainer = "container:TallPaper.xcodeproj"> @@ -47,7 +47,7 @@ BlueprintIdentifier = "057AF78F2BF1E86F00078C98" BuildableName = "TallPaper.app" BlueprintName = "TallPaper" - ReferencedContainer = "container:HD wallpaper.xcodeproj"> + ReferencedContainer = "container:TallPaper.xcodeproj"> @@ -64,7 +64,7 @@ BlueprintIdentifier = "057AF78F2BF1E86F00078C98" BuildableName = "TallPaper.app" BlueprintName = "TallPaper" - ReferencedContainer = "container:HD wallpaper.xcodeproj"> + ReferencedContainer = "container:TallPaper.xcodeproj"> diff --git a/HD wallpaper.xcodeproj/xcuserdata/aaa.xcuserdatad/xcschemes/xcschememanagement.plist b/TallPaper.xcodeproj/xcuserdata/aaa.xcuserdatad/xcschemes/xcschememanagement.plist similarity index 100% rename from HD wallpaper.xcodeproj/xcuserdata/aaa.xcuserdatad/xcschemes/xcschememanagement.plist rename to TallPaper.xcodeproj/xcuserdata/aaa.xcuserdatad/xcschemes/xcschememanagement.plist diff --git a/HD wallpaper.xcodeproj/xcuserdata/deven.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist b/TallPaper.xcodeproj/xcuserdata/deven.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist similarity index 100% rename from HD wallpaper.xcodeproj/xcuserdata/deven.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist rename to TallPaper.xcodeproj/xcuserdata/deven.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist diff --git a/HD wallpaper.xcodeproj/xcuserdata/deven.xcuserdatad/xcschemes/xcschememanagement.plist b/TallPaper.xcodeproj/xcuserdata/deven.xcuserdatad/xcschemes/xcschememanagement.plist similarity index 100% rename from HD wallpaper.xcodeproj/xcuserdata/deven.xcuserdatad/xcschemes/xcschememanagement.plist rename to TallPaper.xcodeproj/xcuserdata/deven.xcuserdatad/xcschemes/xcschememanagement.plist diff --git a/HD wallpaper.xcodeproj/xcuserdata/qifeile.xcuserdatad/xcschemes/xcschememanagement.plist b/TallPaper.xcodeproj/xcuserdata/qifeile.xcuserdatad/xcschemes/xcschememanagement.plist similarity index 100% rename from HD wallpaper.xcodeproj/xcuserdata/qifeile.xcuserdatad/xcschemes/xcschememanagement.plist rename to TallPaper.xcodeproj/xcuserdata/qifeile.xcuserdatad/xcschemes/xcschememanagement.plist diff --git a/HD wallpaper.xcodeproj/xcuserdata/yihai16.xcuserdatad/xcschemes/xcschememanagement.plist b/TallPaper.xcodeproj/xcuserdata/yihai16.xcuserdatad/xcschemes/xcschememanagement.plist similarity index 100% rename from HD wallpaper.xcodeproj/xcuserdata/yihai16.xcuserdatad/xcschemes/xcschememanagement.plist rename to TallPaper.xcodeproj/xcuserdata/yihai16.xcuserdatad/xcschemes/xcschememanagement.plist