HEX
Server: LiteSpeed
System: Linux eko108.isimtescil.net 4.18.0-477.21.1.lve.1.el8.x86_64 #1 SMP Tue Sep 5 23:08:35 UTC 2023 x86_64
User: uyarreklamcomtr (11202)
PHP: 7.4.33
Disabled: opcache_get_status
Upload Files
File: /var/www/vhosts/uyarreklam.com.tr/httpdocs/PHPInsight.tar
Autoloader.php000064400000002265151556062030007364 0ustar00<?php

namespace PHPInsight;

class Autoloader {
	private $directory;
	private $prefix;
	private $prefixLength;

	/**
	 * @param string $baseDirectory Base directory where the source files are located.
	 */
	public function __construct( $baseDirectory = __DIR__ ) {
		$this->directory    = $baseDirectory;
		$this->prefix       = __NAMESPACE__ . '\\';
		$this->prefixLength = strlen( $this->prefix );
	}

	/**
	 * Registers the autoloader class with the PHP SPL autoloader.
	 *
	 * @param bool $prepend Prepend the autoloader on the stack instead of appending it.
	 */
	public static function register( $prepend = false ) {
		spl_autoload_register( array( new self, 'autoload' ), true, $prepend );
	}

	/**
	 * Loads a class from a file using its fully qualified name.
	 *
	 * @param string $className Fully qualified name of a class.
	 */
	public function autoload( $className ) {
		if ( 0 === strpos( $className, $this->prefix ) ) {
			$parts    = explode( '\\', substr( $className, $this->prefixLength ) );
			$filepath = $this->directory . DIRECTORY_SEPARATOR . implode( DIRECTORY_SEPARATOR, $parts ) . '.php';

			if ( is_file( $filepath ) ) {
				require( $filepath ); // phpcs:ignore
			}
		}
	}
}
Sentiment.php000064400000025774151556062030007245 0ustar00<?php
namespace PHPInsight;

/*
  phpInsight is a Naive Bayes classifier to calculate sentiment. The program
  uses a database of words categorised as positive, negative or neutral

  Copyright (C) 2012  James Hennessey
  Class modifications and improvements by Ismayil Khayredinov (ismayil.khayredinov@gmail.com)

  This program is free software: you can redistribute it and/or modify
  it under the terms of the GNU General Public License as published by
  the Free Software Foundation, either version 3 of the License, or
  (at your option) any later version.

  This program is distributed in the hope that it will be useful,
  but WITHOUT ANY WARRANTY; without even the implied warranty of
  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  GNU General Public License for more details.

  You should have received a copy of the GNU General Public License
  along with this program.  If not, see <http://www.gnu.org/licenses/>

 */

class Sentiment {

	/**
	 * Location of the dictionary files
	 * @var str
	 */
	private $dataFolder = '';

	/**
	 * List of tokens to ignore
	 * @var array
	 */
	private $ignoreList = array();

	/**
	 * List of words with negative prefixes, e.g. isn't, arent't
	 * @var array
	 */
	private $negPrefixList = array();

	/**
	 * Storage of cached dictionaries
	 * @var array
	 */
	private $dictionary = array();

	/**
	 * Min length of a token for it to be taken into consideration
	 * @var int
	 */
	private $minTokenLength = 1;

	/**
	 * Max length of a taken for it be taken into consideration
	 * @var int
	 */
	private $maxTokenLength = 15;

	/**
	 * Classification of opinions
	 * @var array
	 */
	private $classes = array( 'pos', 'neg', 'neu' );

	/**
	 * Token score per class
	 * @var array
	 */
	private $classTokCounts = array(
		'pos' => 0,
		'neg' => 0,
		'neu' => 0
	);

	/**
	 * Analyzed text score per class
	 * @var array
	 */
	private $classDocCounts = array(
		'pos' => 0,
		'neg' => 0,
		'neu' => 0
	);

	/**
	 * Number of tokens in a text
	 * @var int
	 */
	private $tokCount = 0;

	/**
	 * Number of analyzed texts
	 * @var int
	 */
	private $docCount = 0;

	/**
	 * Implication that the analyzed text has 1/3 chance of being in either of the 3 categories
	 * @var array
	 */
	private $prior = array(
		'pos' => 0.333,
		'neg' => 0.333,
		'neu' => 0.334,
	);

	/**
	 * Class constructor
	 *
	 * @param str $dataFolder base folder
	 * Sets defaults and loads/caches dictionaries
	 */
	public function __construct( $dataFolder = false ) {

		//set the base folder for the data models
		$this->setDataFolder( $dataFolder );

		//load and cache directories, get ignore and prefix lists
		$this->loadDefaults();
	}

	/**
	 * Get scores for each class
	 *
	 * @param str $sentence Text to analyze
	 *
	 * @return int Score
	 */
	public function score( $sentence ) {

		//For each negative prefix in the list
		foreach ( $this->negPrefixList as $negPrefix ) {

			//Search if that prefix is in the document
			if ( strpos( $sentence, $negPrefix ) !== false ) {
				//Reove the white space after the negative prefix
				$sentence = str_replace( $negPrefix . ' ', $negPrefix, $sentence );
			}
		}

		//Tokenise Document
		$tokens = $this->_getTokens( $sentence );
		// calculate the score in each category

		$total_score = 0;

		//Empty array for the scores for each of the possible categories
		$scores = array();

		//Loop through all of the different classes set in the $classes variable
		foreach ( $this->classes as $class ) {

			//In the scores array add another dimention for the class and set it's value to 1. EG $scores->neg->1
			$scores[ $class ] = 1;

			//For each of the individual words used loop through to see if they match anything in the $dictionary
			foreach ( $tokens as $token ) {

				//If statement so to ignore tokens which are either too long or too short or in the $ignoreList
				if ( strlen( $token ) > $this->minTokenLength && strlen( $token ) < $this->maxTokenLength && ! in_array( $token, $this->ignoreList ) ) {
					//If dictionary[token][class] is set
					if ( isset( $this->dictionary[ $token ][ $class ] ) ) {
						//Set count equal to it
						$count = $this->dictionary[ $token ][ $class ];
					} else {
						$count = 0;
					}

					//Score[class] is calcumeted by $scores[class] x $count +1 divided by the $classTokCounts[class] + $tokCount
					$scores[ $class ] *= ( $count + 1 );
				}
			}

			//Score for this class is the prior probability multiplyied by the score for this class
			$scores[ $class ] = $this->prior[ $class ] * $scores[ $class ];
		}

		//Makes the scores relative percents
		foreach ( $this->classes as $class ) {
			$total_score += $scores[ $class ];
		}

		foreach ( $this->classes as $class ) {
			$scores[ $class ] = round( $scores[ $class ] / $total_score, 3 );
		}

		//Sort array in reverse order
		arsort( $scores );

		return $scores;
	}

	/**
	 * Get the class of the text based on it's score
	 *
	 * @param str $sentence
	 *
	 * @return str pos|neu|neg
	 */
	public function categorise( $sentence ) {

		$scores = $this->score( $sentence );

		//Classification is the key to the scores array
		$classification = key( $scores );

		return $classification;
	}

	/**
	 * Load and cache dictionary
	 *
	 * @param str $class
	 *
	 * @return boolean
	 */
	public function setDictionary( $class ) {
		/**
		 *  For some people this file extention causes some problems!
		 */
		$fn = "{$this->dataFolder}data.{$class}.php";

		if ( file_exists( $fn ) && is_readable( $fn ) ) {
			$temp  = file_get_contents( $fn );
			$words = unserialize( trim( $temp ) );
		} else {
			echo 'File does not exist: ' . $fn; // phpcs:ignore
			$words = array();
		}

		// Bail early if $words is empty.
		if ( empty( $words ) ) {
			return true;
		}

		//Loop through all of the entries
		foreach ( (array) $words as $word ) {

			$this->docCount ++;
			$this->classDocCounts[ $class ] ++;

			//Trim word
			$word = trim( $word );

			//If this word isn't already in the dictionary with this class
			if ( ! isset( $this->dictionary[ $word ][ $class ] ) ) {

				//Add to this word to the dictionary and set counter value as one. This function ensures that if a word is in the text file more than once it still is only accounted for one in the array
				$this->dictionary[ $word ][ $class ] = 1;
			}//Close If statement

			$this->classTokCounts[ $class ] ++;
			$this->tokCount ++;
		}//Close while loop going through everyline in the text file

		return true;
	}

	/**
	 * Set the base folder for loading data models
	 *
	 * @param str $dataFolder base folder
	 * @param bool $loadDefaults true - load everything by default | false - just change the directory
	 */
	public function setDataFolder( $dataFolder = false, $loadDefaults = false ) {
		//if $dataFolder not provided, load default, else set the provided one
		if ( $dataFolder == false ) {
			$this->dataFolder = __DIR__ . '/data/';
		} else {
			if ( file_exists( $dataFolder ) ) {
				$this->dataFolder = $dataFolder;
			} else {
				echo 'Error: could not find the directory - ' . $dataFolder; // phpcs:ignore
			}
		}

		//load default directories, ignore and prefixe lists
		if ( $loadDefaults !== false ) {
			$this->loadDefaults();
		}
	}

	/**
	 * Load and cache directories, get ignore and prefix lists
	 */
	private function loadDefaults() {
		// Load and cache dictionaries
		foreach ( $this->classes as $class ) {
			if ( ! $this->setDictionary( $class ) ) {
				echo "Error: Dictionary for class '$class' could not be loaded"; // phpcs:ignore
			}
		}

		if ( ! isset( $this->dictionary ) || empty( $this->dictionary ) ) {
			echo 'Error: Dictionaries not set';
		}

		//Run function to get ignore list
		$this->ignoreList = $this->getList( 'ign' );

		//If ingnoreList not get give error message
		if ( ! isset( $this->ignoreList ) ) {
			echo 'Error: Ignore List not set';
		}

		//Get the list of negative prefixes
		$this->negPrefixList = $this->getList( 'prefix' );

		//If neg prefix list not set give error
		if ( ! isset( $this->negPrefixList ) ) {
			echo 'Error: Ignore List not set';
		}
	}

	/**
	 * Break text into tokens
	 *
	 * @param str $string String being broken up
	 *
	 * @return array An array of tokens
	 */
	private function _getTokens( $string ) {

		// Replace line endings with spaces
		$string = str_replace( "\r\n", " ", $string );

		//Clean the string so is free from accents
		$string = $this->_cleanString( $string );

		//Make all texts lowercase as the database of words in in lowercase
		$string = strtolower( $string );
		$string = preg_replace( '/[[:punct:]]+/', '', $string );

		//Break string into individual words using explode putting them into an array
		$matches = explode( ' ', $string );

		//Return array with each individual token
		return $matches;
	}

	/**
	 * Load and cache additional word lists
	 *
	 * @param str $type
	 *
	 * @return array
	 */
	public function getList( $type ) {
		//Set up empty word list array
		$wordList = array();

		$fn = "{$this->dataFolder}data.{$type}.php";;
		if ( file_exists( $fn ) ) {
			$temp  = file_get_contents( $fn );
			$words = unserialize( trim( $temp ) );
		} else {
			return 'File does not exist: ' . $fn;
		}

		//Loop through results
		foreach ( $words as $word ) {
			//remove any slashes
			$word = stripcslashes( $word );
			//Trim word
			$trimmed = trim( $word );

			//Push results into $wordList array
			array_push( $wordList, $trimmed );
		}

		//Return $wordList
		return $wordList;
	}

	/**
	 * Function to clean a string so all characters with accents are turned into ASCII characters. EG: ‡ = a
	 *
	 * @param str $string
	 *
	 * @return str
	 */
	private function _cleanString( $string ) {

		$diac =
			/* A */
			chr( 192 ) . chr( 193 ) . chr( 194 ) . chr( 195 ) . chr( 196 ) . chr( 197 ) .
			/* a */
			chr( 224 ) . chr( 225 ) . chr( 226 ) . chr( 227 ) . chr( 228 ) . chr( 229 ) .
			/* O */
			chr( 210 ) . chr( 211 ) . chr( 212 ) . chr( 213 ) . chr( 214 ) . chr( 216 ) .
			/* o */
			chr( 242 ) . chr( 243 ) . chr( 244 ) . chr( 245 ) . chr( 246 ) . chr( 248 ) .
			/* E */
			chr( 200 ) . chr( 201 ) . chr( 202 ) . chr( 203 ) .
			/* e */
			chr( 232 ) . chr( 233 ) . chr( 234 ) . chr( 235 ) .
			/* Cc */
			chr( 199 ) . chr( 231 ) .
			/* I */
			chr( 204 ) . chr( 205 ) . chr( 206 ) . chr( 207 ) .
			/* i */
			chr( 236 ) . chr( 237 ) . chr( 238 ) . chr( 239 ) .
			/* U */
			chr( 217 ) . chr( 218 ) . chr( 219 ) . chr( 220 ) .
			/* u */
			chr( 249 ) . chr( 250 ) . chr( 251 ) . chr( 252 ) .
			/* yNn */
			chr( 255 ) . chr( 209 ) . chr( 241 );

		return strtolower( strtr( $string, $diac, 'AAAAAAaaaaaaOOOOOOooooooEEEEeeeeCcIIIIiiiiUUUUuuuuyNn' ) );
	}

	/**
	 * Deletes old data/data.* files
	 * Creates new files from updated source fi
	 */
	public function reloadDictionaries() {

		foreach ( $this->classes as $class ) {
			$fn = "{$this->dataFolder}data.{$class}.php";
			if ( file_exists( $fn ) ) {
				unlink( $fn );
			}
		}

		$dictionaries = __DIR__ . '/dictionaries/';

		foreach ( $this->classes as $class ) {
			$dict = "{$dictionaries}source.{$class}.php";

			require_once( $dict );

			$data = $class;

			$fn = "{$this->dataFolder}data.{$class}.php";
			file_put_contents( $fn, serialize( $$data ) );
		}


	}

}


data/data.ign.php000064400000024533151556062030007665 0ustar00a:578:{i:0;s:6:"ccedil";i:1;s:5:"aelig";i:2;s:4:"much";i:3;s:6:"mostly";i:4;s:4:"most";i:5;s:8:"moreover";i:6;s:4:"more";i:7;s:5:"might";i:8;s:6:"merely";i:9;s:9:"meanwhile";i:10;s:4:"mean";i:11;s:2:"me";i:12;s:5:"maybe";i:13;s:3:"may";i:14;s:4:"many";i:15;s:6:"mainly";i:16;s:3:"ltd";i:17;s:5:"looks";i:18;s:7:"looking";i:19;s:4:"look";i:20;s:6:"little";i:21;s:6:"likely";i:22;s:5:"liked";i:23;s:5:"let's";i:24;s:3:"let";i:25;s:4:"lest";i:26;s:4:"less";i:27;s:5:"least";i:28;s:8:"latterly";i:29;s:6:"latter";i:30;s:5:"later";i:31;s:6:"lately";i:32;s:4:"last";i:33;s:5:"knows";i:34;s:5:"known";i:35;s:4:"know";i:36;s:4:"kept";i:37;s:5:"keeps";i:38;s:4:"keep";i:39;s:4:"just";i:40;s:6:"itself";i:41;s:3:"its";i:42;s:4:"it's";i:43;s:5:"it'll";i:44;s:4:"it'd";i:45;s:2:"it";i:46;s:2:"is";i:47;s:6:"inward";i:48;s:4:"into";i:49;s:7:"instead";i:50;s:7:"insofar";i:51;s:5:"inner";i:52;s:9:"indicates";i:53;s:9:"indicated";i:54;s:8:"indicate";i:55;s:6:"indeed";i:56;s:3:"inc";i:57;s:8:"inasmuch";i:58;s:2:"in";i:59;s:9:"immediate";i:60;s:7:"ignored";i:61;s:2:"if";i:62;s:2:"ie";i:63;s:4:"i've";i:64;s:3:"i'm";i:65;s:4:"i'll";i:66;s:3:"i'd";i:67;s:7:"however";i:68;s:7:"howbeit";i:69;s:3:"how";i:70;s:9:"hopefully";i:71;s:6:"hither";i:72;s:3:"his";i:73;s:7:"himself";i:74;s:3:"him";i:75;s:2:"hi";i:76;s:7:"herself";i:77;s:4:"hers";i:78;s:8:"hereupon";i:79;s:6:"herein";i:80;s:6:"hereby";i:81;s:9:"hereafter";i:82;s:6:"here's";i:83;s:4:"here";i:84;s:3:"her";i:85;s:5:"hence";i:86;s:4:"help";i:87;s:5:"hello";i:88;s:4:"he's";i:89;s:2:"he";i:90;s:6:"having";i:91;s:7:"haven't";i:92;s:4:"have";i:93;s:6:"hasn't";i:94;s:3:"has";i:95;s:6:"hardly";i:96;s:7:"happens";i:97;s:6:"hadn't";i:98;s:3:"had";i:99;s:9:"greetings";i:100;s:6:"gotten";i:101;s:3:"got";i:102;s:4:"gone";i:103;s:5:"going";i:104;s:4:"goes";i:105;s:2:"go";i:106;s:5:"gives";i:107;s:5:"given";i:108;s:7:"getting";i:109;s:4:"gets";i:110;s:3:"get";i:111;s:11:"furthermore";i:112;s:7:"further";i:113;s:4:"from";i:114;s:4:"four";i:115;s:5:"forth";i:116;s:8:"formerly";i:117;s:6:"former";i:118;s:3:"for";i:119;s:7:"follows";i:120;s:9:"following";i:121;s:8:"followed";i:122;s:4:"five";i:123;s:5:"first";i:124;s:5:"fifth";i:125;s:3:"few";i:126;s:3:"far";i:127;s:6:"except";i:128;s:7:"example";i:129;s:7:"exactly";i:130;s:2:"ex";i:131;s:10:"everywhere";i:132;s:10:"everything";i:133;s:8:"everyone";i:134;s:9:"everybody";i:135;s:5:"every";i:136;s:4:"ever";i:137;s:4:"even";i:138;s:3:"etc";i:139;s:2:"et";i:140;s:10:"especially";i:141;s:8:"entirely";i:142;s:6:"enough";i:143;s:9:"elsewhere";i:144;s:4:"else";i:145;s:6:"either";i:146;s:5:"eight";i:147;s:2:"eg";i:148;s:3:"edu";i:149;s:4:"each";i:150;s:6:"during";i:151;s:9:"downwards";i:152;s:4:"down";i:153;s:4:"done";i:154;s:5:"don't";i:155;s:5:"doing";i:156;s:7:"doesn't";i:157;s:4:"does";i:158;s:2:"do";i:159;s:9:"different";i:160;s:6:"didn't";i:161;s:3:"did";i:162;s:7:"despite";i:163;s:9:"described";i:164;s:10:"definitely";i:165;s:9:"currently";i:166;s:6:"course";i:167;s:8:"couldn't";i:168;s:5:"could";i:169;s:13:"corresponding";i:170;s:8:"contains";i:171;s:10:"containing";i:172;s:7:"contain";i:173;s:11:"considering";i:174;s:8:"consider";i:175;s:12:"consequently";i:176;s:10:"concerning";i:177;s:5:"comes";i:178;s:4:"come";i:179;s:3:"com";i:180;s:2:"co";i:181;s:7:"clearly";i:182;s:7:"changes";i:183;s:9:"certainly";i:184;s:7:"certain";i:185;s:6:"causes";i:186;s:5:"cause";i:187;s:4:"cant";i:188;s:6:"cannot";i:189;s:5:"can't";i:190;s:3:"can";i:191;s:4:"came";i:192;s:3:"c's";i:193;s:5:"c'mon";i:194;s:2:"by";i:195;s:3:"but";i:196;s:5:"brief";i:197;s:4:"both";i:198;s:6:"beyond";i:199;s:7:"between";i:200;s:6:"better";i:201;s:4:"best";i:202;s:7:"besides";i:203;s:6:"beside";i:204;s:5:"below";i:205;s:7:"believe";i:206;s:5:"being";i:207;s:6:"behind";i:208;s:10:"beforehand";i:209;s:6:"before";i:210;s:4:"been";i:211;s:8:"becoming";i:212;s:7:"becomes";i:213;s:6:"become";i:214;s:7:"because";i:215;s:6:"became";i:216;s:2:"be";i:217;s:7:"awfully";i:218;s:4:"away";i:219;s:9:"available";i:220;s:2:"at";i:221;s:10:"associated";i:222;s:6:"asking";i:223;s:3:"ask";i:224;s:5:"aside";i:225;s:2:"as";i:226;s:6:"around";i:227;s:3:"are";i:228;s:11:"appropriate";i:229;s:10:"appreciate";i:230;s:6:"appear";i:231;s:5:"apart";i:232;s:8:"anywhere";i:233;s:7:"anyways";i:234;s:6:"anyway";i:235;s:8:"anything";i:236;s:6:"anyone";i:237;s:6:"anyhow";i:238;s:7:"anybody";i:239;s:3:"any";i:240;s:7:"another";i:241;s:3:"and";i:242;s:2:"an";i:243;s:7:"amongst";i:244;s:5:"among";i:245;s:2:"am";i:246;s:6:"always";i:247;s:8:"although";i:248;s:4:"also";i:249;s:7:"already";i:250;s:5:"along";i:251;s:5:"alone";i:252;s:6:"almost";i:253;s:6:"allows";i:254;s:5:"allow";i:255;s:3:"all";i:256;s:7:"against";i:257;s:5:"again";i:258;s:10:"afterwards";i:259;s:5:"after";i:260;s:8:"actually";i:261;s:6:"across";i:262;s:11:"accordingly";i:263;s:9:"according";i:264;s:5:"above";i:265;s:5:"about";i:266;s:4:"able";i:267;s:5:"ain't";i:268;s:3:"bit";i:269;s:4:"para";i:270;s:5:"cedil";i:271;s:5:"https";i:272;s:5:"zynga";i:273;s:4:"must";i:274;s:2:"my";i:275;s:6:"myself";i:276;s:4:"name";i:277;s:6:"namely";i:278;s:2:"nd";i:279;s:4:"near";i:280;s:6:"nearly";i:281;s:9:"necessary";i:282;s:4:"need";i:283;s:5:"needs";i:284;s:7:"neither";i:285;s:5:"never";i:286;s:12:"nevertheless";i:287;s:3:"new";i:288;s:4:"next";i:289;s:4:"nine";i:290;s:2:"no";i:291;s:6:"nobody";i:292;s:3:"non";i:293;s:4:"none";i:294;s:5:"noone";i:295;s:3:"nor";i:296;s:8:"normally";i:297;s:7:"nothing";i:298;s:5:"novel";i:299;s:3:"now";i:300;s:7:"nowhere";i:301;s:9:"obviously";i:302;s:2:"of";i:303;s:3:"off";i:304;s:5:"often";i:305;s:2:"oh";i:306;s:2:"ok";i:307;s:4:"okay";i:308;s:3:"old";i:309;s:2:"on";i:310;s:4:"once";i:311;s:3:"one";i:312;s:4:"ones";i:313;s:4:"only";i:314;s:4:"onto";i:315;s:2:"or";i:316;s:5:"other";i:317;s:6:"others";i:318;s:9:"otherwise";i:319;s:5:"ought";i:320;s:3:"our";i:321;s:4:"ours";i:322;s:9:"ourselves";i:323;s:3:"out";i:324;s:7:"outside";i:325;s:4:"over";i:326;s:7:"overall";i:327;s:3:"own";i:328;s:10:"particular";i:329;s:12:"particularly";i:330;s:3:"per";i:331;s:7:"perhaps";i:332;s:6:"placed";i:333;s:6:"please";i:334;s:4:"plus";i:335;s:8:"possible";i:336;s:10:"presumably";i:337;s:8:"probably";i:338;s:8:"provides";i:339;s:3:"que";i:340;s:5:"quite";i:341;s:2:"qv";i:342;s:6:"rather";i:343;s:2:"rd";i:344;s:2:"re";i:345;s:6:"really";i:346;s:9:"regarding";i:347;s:10:"regardless";i:348;s:7:"regards";i:349;s:10:"relatively";i:350;s:12:"respectively";i:351;s:5:"right";i:352;s:4:"said";i:353;s:4:"same";i:354;s:3:"saw";i:355;s:3:"say";i:356;s:6:"saying";i:357;s:4:"says";i:358;s:6:"second";i:359;s:8:"secondly";i:360;s:3:"see";i:361;s:6:"seeing";i:362;s:4:"seem";i:363;s:6:"seemed";i:364;s:7:"seeming";i:365;s:5:"seems";i:366;s:4:"seen";i:367;s:4:"self";i:368;s:6:"selves";i:369;s:8:"sensible";i:370;s:4:"sent";i:371;s:7:"serious";i:372;s:9:"seriously";i:373;s:5:"seven";i:374;s:7:"several";i:375;s:5:"shall";i:376;s:3:"she";i:377;s:6:"should";i:378;s:9:"shouldn't";i:379;s:5:"since";i:380;s:3:"six";i:381;s:2:"so";i:382;s:4:"some";i:383;s:8:"somebody";i:384;s:7:"somehow";i:385;s:7:"someone";i:386;s:9:"something";i:387;s:8:"sometime";i:388;s:9:"sometimes";i:389;s:8:"somewhat";i:390;s:9:"somewhere";i:391;s:4:"soon";i:392;s:5:"sorry";i:393;s:9:"specified";i:394;s:7:"specify";i:395;s:10:"specifying";i:396;s:5:"still";i:397;s:3:"sub";i:398;s:4:"such";i:399;s:3:"sup";i:400;s:4:"sure";i:401;s:4:"take";i:402;s:5:"taken";i:403;s:4:"tell";i:404;s:5:"tends";i:405;s:2:"th";i:406;s:4:"than";i:407;s:5:"thank";i:408;s:6:"thanks";i:409;s:5:"thanx";i:410;s:4:"that";i:411;s:6:"that's";i:412;s:5:"thats";i:413;s:3:"the";i:414;s:5:"their";i:415;s:6:"theirs";i:416;s:4:"them";i:417;s:10:"themselves";i:418;s:4:"then";i:419;s:6:"thence";i:420;s:5:"there";i:421;s:7:"there's";i:422;s:10:"thereafter";i:423;s:7:"thereby";i:424;s:9:"therefore";i:425;s:7:"therein";i:426;s:6:"theres";i:427;s:9:"thereupon";i:428;s:5:"these";i:429;s:4:"they";i:430;s:6:"they'd";i:431;s:7:"they'll";i:432;s:7:"they're";i:433;s:7:"they've";i:434;s:5:"think";i:435;s:5:"third";i:436;s:4:"this";i:437;s:8:"thorough";i:438;s:10:"thoroughly";i:439;s:5:"those";i:440;s:6:"though";i:441;s:5:"three";i:442;s:7:"through";i:443;s:10:"throughout";i:444;s:4:"thru";i:445;s:4:"thus";i:446;s:2:"to";i:447;s:8:"together";i:448;s:3:"too";i:449;s:4:"took";i:450;s:6:"toward";i:451;s:7:"towards";i:452;s:5:"tried";i:453;s:5:"tries";i:454;s:5:"truly";i:455;s:3:"try";i:456;s:6:"trying";i:457;s:5:"twice";i:458;s:3:"two";i:459;s:2:"un";i:460;s:5:"under";i:461;s:13:"unfortunately";i:462;s:6:"unless";i:463;s:8:"unlikely";i:464;s:5:"until";i:465;s:4:"unto";i:466;s:2:"up";i:467;s:4:"upon";i:468;s:2:"us";i:469;s:3:"use";i:470;s:4:"used";i:471;s:4:"uses";i:472;s:5:"using";i:473;s:7:"usually";i:474;s:5:"value";i:475;s:7:"various";i:476;s:4:"very";i:477;s:3:"via";i:478;s:3:"viz";i:479;s:2:"vs";i:480;s:4:"want";i:481;s:5:"wants";i:482;s:3:"was";i:483;s:6:"wasn't";i:484;s:3:"way";i:485;s:2:"we";i:486;s:4:"we'd";i:487;s:5:"we'll";i:488;s:5:"we're";i:489;s:5:"we've";i:490;s:7:"welcome";i:491;s:4:"well";i:492;s:4:"went";i:493;s:4:"were";i:494;s:7:"weren't";i:495;s:4:"what";i:496;s:6:"what's";i:497;s:8:"whatever";i:498;s:4:"when";i:499;s:6:"whence";i:500;s:8:"whenever";i:501;s:5:"where";i:502;s:7:"where's";i:503;s:10:"whereafter";i:504;s:7:"whereas";i:505;s:7:"whereby";i:506;s:7:"wherein";i:507;s:9:"whereupon";i:508;s:8:"wherever";i:509;s:7:"whether";i:510;s:5:"which";i:511;s:5:"while";i:512;s:7:"whither";i:513;s:3:"who";i:514;s:5:"who's";i:515;s:7:"whoever";i:516;s:5:"whole";i:517;s:4:"whom";i:518;s:5:"whose";i:519;s:3:"why";i:520;s:4:"will";i:521;s:7:"willing";i:522;s:4:"wish";i:523;s:4:"with";i:524;s:6:"within";i:525;s:7:"without";i:526;s:5:"won't";i:527;s:6:"wonder";i:528;s:5:"would";i:529;s:8:"wouldn't";i:530;s:3:"yes";i:531;s:3:"yet";i:532;s:3:"you";i:533;s:5:"you'd";i:534;s:6:"you'll";i:535;s:6:"you're";i:536;s:6:"you've";i:537;s:4:"your";i:538;s:5:"yours";i:539;s:8:"yourself";i:540;s:10:"yourselves";i:541;s:4:"zero";i:542;s:6:"agrave";i:543;s:6:"atilde";i:544;s:4:"http";i:545;s:5:"acirc";i:546;s:5:"aring";i:547;s:4:"quot";i:548;s:6:"ntilde";i:549;s:3:"amp";i:550;s:4:"auml";i:551;s:4:"nbsp";i:552;s:5:"laquo";i:553;s:4:"iuml";i:554;s:6:"egrave";i:555;s:4:"macr";i:556;s:6:"brvbar";i:557;s:4:"ordm";i:558;s:6:"plusmn";i:559;s:3:"reg";i:560;s:3:"www";i:561;s:5:"acute";i:562;s:4:"cent";i:563;s:4:"ordf";i:564;s:6:"eacute";i:565;s:4:"frac";i:566;s:10:"sLZjpNxJtx";i:567;s:3:"ETH";i:568;s:5:"Icirc";i:569;s:4:"sect";i:570;s:3:"goo";i:571;s:3:"seu";i:572;s:4:"como";i:573;s:3:"ser";i:574;s:6:"filhos";i:575;s:4:"dlvr";i:576;s:5:"iexcl";i:577;s:6:"Ugrave";}data/data.neg.php000064400000705345151556062030007670 0ustar00a:9095:{i:0;s:7:"rubbish";i:1;s:3:"bad";i:2;s:4:"hate";i:3;s:9:"abandoned";i:4;s:6:"abused";i:5;s:7:"accused";i:6;s:8:"addicted";i:7;s:6:"afraid";i:8;s:10:"aggravated";i:9;s:10:"aggressive";i:10;s:5:"alone";i:11;s:5:"angry";i:12;s:7:"anguish";i:13;s:7:"annoyed";i:14;s:7:"anxious";i:15;s:12:"apprehensive";i:16;s:13:"argumentative";i:17;s:10:"artificial";i:18;s:7:"ashamed";i:19;s:9:"assaulted";i:20;s:9:"atrocious";i:21;s:8:"attacked";i:22;s:7:"avoided";i:23;s:5:"awful";i:24;s:7:"awkward";i:25;s:8:"badgered";i:26;s:7:"baffled";i:27;s:6:"banned";i:28;s:6:"barren";i:29;s:4:"beat";i:30;s:6:"beaten";i:31;s:9:"belittled";i:32;s:7:"berated";i:33;s:8:"betrayed";i:34;s:6:"bitter";i:35;s:7:"bizzare";i:36;s:11:"blacklisted";i:37;s:11:"blackmailed";i:38;s:6:"blamed";i:39;s:5:"bleak";i:40;s:4:"blur";i:41;s:5:"bored";i:42;s:6:"boring";i:43;s:15:"notveryadorable";i:44;s:8:"bothered";i:45;s:10:"bothersome";i:46;s:7:"bounded";i:47;s:11:"notadorable";i:48;s:6:"broken";i:49;s:7:"bruised";i:50;s:14:"notveryrefined";i:51;s:6:"bugged";i:52;s:7:"bullied";i:53;s:6:"bummed";i:54;s:8:"burdened";i:55;s:10:"burdensome";i:56;s:6:"burned";i:57;s:10:"notrefined";i:58;s:5:"caged";i:59;s:2:"in";i:60;s:8:"careless";i:61;s:7:"chaotic";i:62;s:6:"chased";i:63;s:7:"cheated";i:64;s:7:"chicken";i:65;s:14:"claustrophobic";i:66;s:6:"clingy";i:67;s:6:"closed";i:68;s:8:"clueless";i:69;s:6:"clumsy";i:70;s:6:"coaxed";i:71;s:11:"codependent";i:72;s:7:"coerced";i:73;s:4:"cold";i:74;s:13:"notverypoetic";i:75;s:9:"combative";i:76;s:9:"commanded";i:77;s:8:"compared";i:78;s:11:"competitive";i:79;s:10:"compulsive";i:80;s:9:"conceited";i:81;s:9:"concerned";i:82;s:8:"confined";i:83;s:10:"conflicted";i:84;s:10:"confronted";i:85;s:8:"confused";i:86;s:6:"conned";i:87;s:8:"consumed";i:88;s:13:"contemplative";i:89;s:8:"contempt";i:90;s:11:"contentious";i:91;s:10:"controlled";i:92;s:9:"convicted";i:93;s:8:"cornered";i:94;s:9:"corralled";i:95;s:8:"cowardly";i:96;s:6:"crabby";i:97;s:7:"cramped";i:98;s:6:"cranky";i:99;s:4:"crap";i:100;s:6:"crappy";i:101;s:5:"crazy";i:102;s:6:"creepy";i:103;s:8:"critical";i:104;s:10:"criticized";i:105;s:5:"cross";i:106;s:7:"crowded";i:107;s:6:"cruddy";i:108;s:6:"crummy";i:109;s:7:"crushed";i:110;s:9:"notpoetic";i:111;s:7:"cynical";i:112;s:7:"damaged";i:113;s:6:"damned";i:114;s:9:"dangerous";i:115;s:4:"dark";i:116;s:5:"dazed";i:117;s:4:"dead";i:118;s:8:"deceived";i:119;s:4:"deep";i:120;s:7:"defamed";i:121;s:8:"defeated";i:122;s:9:"defective";i:123;s:11:"defenseless";i:124;s:9:"defensive";i:125;s:7:"defiant";i:126;s:9:"deficient";i:127;s:8:"deflated";i:128;s:8:"degraded";i:129;s:11:"dehumanized";i:130;s:8:"dejected";i:131;s:8:"delicate";i:132;s:7:"deluded";i:133;s:9:"demanding";i:134;s:8:"demeaned";i:135;s:8:"demented";i:136;s:11:"demoralized";i:137;s:11:"demotivated";i:138;s:9:"dependent";i:139;s:8:"depleted";i:140;s:8:"depraved";i:141;s:9:"depressed";i:142;s:8:"deprived";i:143;s:8:"deserted";i:144;s:8:"desolate";i:145;s:7:"despair";i:146;s:10:"despairing";i:147;s:9:"desperate";i:148;s:10:"despicable";i:149;s:8:"despised";i:150;s:9:"destroyed";i:151;s:11:"destructive";i:152;s:8:"detached";i:153;s:6:"detest";i:154;s:10:"detestable";i:155;s:8:"detested";i:156;s:8:"devalued";i:157;s:10:"devastated";i:158;s:7:"deviant";i:159;s:6:"devoid";i:160;s:9:"diagnosed";i:161;s:9:"different";i:162;s:9:"difficult";i:163;s:13:"directionless";i:164;s:5:"dirty";i:165;s:8:"disabled";i:166;s:12:"disagreeable";i:167;s:12:"disappointed";i:168;s:13:"disappointing";i:169;s:11:"disbelieved";i:170;s:11:"discardable";i:171;s:9:"discarded";i:172;s:12:"disconnected";i:173;s:10:"discontent";i:174;s:11:"discouraged";i:175;s:13:"discriminated";i:176;s:7:"disdain";i:177;s:10:"disdainful";i:178;s:12:"disempowered";i:179;s:12:"disenchanted";i:180;s:9:"disgraced";i:181;s:11:"disgruntled";i:182;s:7:"disgust";i:183;s:9:"disgusted";i:184;s:12:"disheartened";i:185;s:9:"dishonest";i:186;s:12:"dishonorable";i:187;s:13:"disillusioned";i:188;s:7:"dislike";i:189;s:8:"disliked";i:190;s:6:"dismal";i:191;s:8:"dismayed";i:192;s:12:"disorganized";i:193;s:11:"disoriented";i:194;s:8:"disowned";i:195;s:10:"displeased";i:196;s:10:"disposable";i:197;s:11:"disregarded";i:198;s:12:"disrespected";i:199;s:12:"dissatisfied";i:200;s:7:"distant";i:201;s:10:"distracted";i:202;s:10:"distraught";i:203;s:10:"distressed";i:204;s:9:"disturbed";i:205;s:5:"dizzy";i:206;s:9:"dominated";i:207;s:6:"doomed";i:208;s:17:"notveryattractive";i:209;s:7:"doubted";i:210;s:8:"doubtful";i:211;s:4:"down";i:212;s:11:"downhearted";i:213;s:11:"downtrodden";i:214;s:7:"drained";i:215;s:8:"dramatic";i:216;s:5:"dread";i:217;s:8:"dreadful";i:218;s:6:"dreary";i:219;s:7:"dropped";i:220;s:5:"drunk";i:221;s:3:"dry";i:222;s:4:"dumb";i:223;s:6:"dumped";i:224;s:5:"duped";i:225;s:4:"edgy";i:226;s:10:"egocentric";i:227;s:9:"egotistic";i:228;s:11:"egotistical";i:229;s:7:"elusive";i:230;s:11:"emancipated";i:231;s:11:"emasculated";i:232;s:11:"embarrassed";i:233;s:9:"emotional";i:234;s:11:"emotionless";i:235;s:5:"empty";i:236;s:10:"encumbered";i:237;s:10:"endangered";i:238;s:7:"enraged";i:239;s:8:"enslaved";i:240;s:9:"entangled";i:241;s:6:"evaded";i:242;s:7:"evasive";i:243;s:7:"evicted";i:244;s:9:"excessive";i:245;s:8:"excluded";i:246;s:9:"exhausted";i:247;s:9:"notsprite";i:248;s:7:"failful";i:249;s:4:"fake";i:250;s:5:"false";i:251;s:4:"fear";i:252;s:7:"fearful";i:253;s:6:"flawed";i:254;s:6:"forced";i:255;s:9:"forgetful";i:256;s:11:"forgettable";i:257;s:9:"forgotten";i:258;s:7:"fragile";i:259;s:10:"frightened";i:260;s:6:"frigid";i:261;s:10:"frustrated";i:262;s:7:"furious";i:263;s:6:"gloomy";i:264;s:4:"glum";i:265;s:6:"gothic";i:266;s:4:"grey";i:267;s:5:"grief";i:268;s:4:"grim";i:269;s:5:"gross";i:270;s:13:"notattractive";i:271;s:9:"grotesque";i:272;s:7:"grouchy";i:273;s:8:"grounded";i:274;s:6:"grumpy";i:275;s:6:"guilty";i:276;s:7:"idiotic";i:277;s:8:"ignorant";i:278;s:7:"ignored";i:279;s:3:"ill";i:280;s:18:"notverysentimental";i:281;s:10:"imbalanced";i:282;s:8:"impotent";i:283;s:10:"imprisoned";i:284;s:9:"impulsive";i:285;s:8:"inactive";i:286;s:10:"inadequate";i:287;s:9:"incapable";i:288;s:15:"incommunicative";i:289;s:11:"incompetent";i:290;s:12:"incompatible";i:291;s:10:"incomplete";i:292;s:9:"incorrect";i:293;s:10:"indecisive";i:294;s:11:"indifferent";i:295;s:13:"indoctrinated";i:296;s:10:"inebriated";i:297;s:11:"ineffective";i:298;s:11:"inefficient";i:299;s:8:"inferior";i:300;s:10:"infuriated";i:301;s:9:"inhibited";i:302;s:8:"inhumane";i:303;s:7:"injured";i:304;s:10:"injusticed";i:305;s:6:"insane";i:306;s:8:"insecure";i:307;s:13:"insignificant";i:308;s:9:"insincere";i:309;s:12:"insufficient";i:310;s:8:"insulted";i:311;s:7:"intense";i:312;s:12:"interrogated";i:313;s:11:"interrupted";i:314;s:11:"intimidated";i:315;s:11:"intoxicated";i:316;s:11:"invalidated";i:317;s:9:"invisible";i:318;s:10:"irrational";i:319;s:9:"irritable";i:320;s:9:"irritated";i:321;s:8:"isolated";i:322;s:5:"jaded";i:323;s:7:"jealous";i:324;s:7:"joyless";i:325;s:6:"judged";i:326;s:7:"labeled";i:327;s:9:"laughable";i:328;s:4:"lazy";i:329;s:7:"limited";i:330;s:6:"lonely";i:331;s:8:"lonesome";i:332;s:7:"longing";i:333;s:4:"lost";i:334;s:5:"lousy";i:335;s:8:"loveless";i:336;s:3:"low";i:337;s:3:"mad";i:338;s:11:"manipulated";i:339;s:11:"masochistic";i:340;s:5:"messy";i:341;s:6:"miffed";i:342;s:9:"miserable";i:343;s:6:"misled";i:344;s:8:"mistaken";i:345;s:10:"mistreated";i:346;s:10:"mistrusted";i:347;s:13:"misunderstood";i:348;s:14:"notsentimental";i:349;s:6:"mocked";i:350;s:8:"molested";i:351;s:5:"moody";i:352;s:6:"nagged";i:353;s:5:"needy";i:354;s:8:"negative";i:355;s:7:"nervous";i:356;s:8:"neurotic";i:357;s:13:"nonconforming";i:358;s:4:"numb";i:359;s:4:"nuts";i:360;s:5:"nutty";i:361;s:11:"objectified";i:362;s:9:"obligated";i:363;s:8:"obsessed";i:364;s:9:"obsessive";i:365;s:10:"obstructed";i:366;s:3:"odd";i:367;s:8:"offended";i:368;s:7:"opposed";i:369;s:9:"oppressed";i:370;s:16:"notveryambitious";i:371;s:12:"notambitious";i:372;s:11:"overwhelmed";i:373;s:4:"pain";i:374;s:5:"panic";i:375;s:8:"paranoid";i:376;s:7:"passive";i:377;s:8:"pathetic";i:378;s:11:"pessimistic";i:379;s:9:"petrified";i:380;s:5:"phony";i:381;s:6:"pissed";i:382;s:5:"plain";i:383;s:6:"pooped";i:384;s:4:"poor";i:385;s:9:"powerless";i:386;s:11:"preoccupied";i:387;s:11:"predjudiced";i:388;s:9:"pressured";i:389;s:10:"prosecuted";i:390;s:8:"provoked";i:391;s:12:"psychopathic";i:392;s:9:"psychotic";i:393;s:8:"punished";i:394;s:6:"pushed";i:395;s:7:"puzzled";i:396;s:11:"quarrelsome";i:397;s:5:"queer";i:398;s:10:"questioned";i:399;s:5:"quiet";i:400;s:4:"rage";i:401;s:5:"raped";i:402;s:7:"rattled";i:403;s:6:"regret";i:404;s:8:"rejected";i:405;s:8:"resented";i:406;s:9:"resentful";i:407;s:11:"responsible";i:408;s:8:"retarded";i:409;s:10:"revengeful";i:410;s:9:"ridiculed";i:411;s:10:"ridiculous";i:412;s:6:"robbed";i:413;s:6:"rotten";i:414;s:3:"sad";i:415;s:8:"sadistic";i:416;s:9:"sarcastic";i:417;s:6:"scared";i:418;s:7:"scarred";i:419;s:7:"screwed";i:420;s:16:"notveryvisionary";i:421;s:12:"notvisionary";i:422;s:13:"notverylively";i:423;s:9:"notlively";i:424;s:7:"selfish";i:425;s:9:"sensitive";i:426;s:3:"shy";i:427;s:14:"notveryprudent";i:428;s:4:"slow";i:429;s:5:"small";i:430;s:9:"smothered";i:431;s:8:"spiteful";i:432;s:11:"stereotyped";i:433;s:7:"strange";i:434;s:8:"stressed";i:435;s:9:"stretched";i:436;s:5:"stuck";i:437;s:6:"stupid";i:438;s:10:"submissive";i:439;s:9:"suffering";i:440;s:10:"suffocated";i:441;s:8:"suicidal";i:442;s:11:"superficial";i:443;s:10:"suppressed";i:444;s:10:"suspicious";i:445;s:10:"notawesome";i:446;s:10:"notspecial";i:447;s:13:"notveryactive";i:448;s:18:"notveryresponsible";i:449;s:17:"notdiscriminating";i:450;s:21:"notverydiscriminating";i:451;s:14:"notresponsible";i:452;s:14:"notveryawesome";i:453;s:10:"notprudent";i:454;s:14:"notveryspecial";i:455;s:16:"notveryvivacious";i:456;s:12:"notvivacious";i:457;s:14:"notveryethical";i:458;s:10:"notethical";i:459;s:13:"notverytender";i:460;s:9:"nottender";i:461;s:16:"notverydignified";i:462;s:12:"notdignified";i:463;s:16:"notveryagreeable";i:464;s:12:"notagreeable";i:465;s:7:"notgood";i:466;s:5:"blame";i:467;s:13:"isn'tverygood";i:468;s:13:"notverythanks";i:469;s:9:"notthanks";i:470;s:12:"notverylovee";i:471;s:8:"notlovee";i:472;s:11:"notverygood";i:473;s:10:"aren'tgood";i:474;s:11:"notverynice";i:475;s:7:"notnice";i:476;s:14:"notveryamazing";i:477;s:11:"abandonment";i:478;s:11:"notverylike";i:479;s:7:"notlike";i:480;s:13:"notveryadmire";i:481;s:9:"notadmire";i:482;s:12:"notveryadore";i:483;s:8:"notadore";i:484;s:12:"notveryhappy";i:485;s:8:"nothappy";i:486;s:15:"notverygrateful";i:487;s:11:"notgrateful";i:488;s:17:"notverydetermined";i:489;s:13:"notdetermined";i:490;s:19:"notveryprofessional";i:491;s:15:"notprofessional";i:492;s:12:"notveryswell";i:493;s:8:"notswell";i:494;s:14:"notveryhelpful";i:495;s:10:"nothelpful";i:496;s:14:"notverysincere";i:497;s:10:"notsincere";i:498;s:16:"notveryauthentic";i:499;s:12:"notauthentic";i:500;s:14:"notverycontent";i:501;s:10:"notcontent";i:502;s:14:"notveryfocused";i:503;s:10:"notfocused";i:504;s:20:"notveryextraordinary";i:505;s:16:"notextraordinary";i:506;s:17:"notverydelightful";i:507;s:13:"notdelightful";i:508;s:18:"notveryimaginative";i:509;s:14:"notimaginative";i:510;s:15:"notveryreverent";i:511;s:11:"notreverent";i:512;s:17:"notverysuccessful";i:513;s:13:"notsuccessful";i:514;s:13:"notveryheroic";i:515;s:9:"notheroic";i:516;s:15:"notverycheerful";i:517;s:11:"notcheerful";i:518;s:16:"notveryinventive";i:519;s:12:"notinventive";i:520;s:13:"notveryunique";i:521;s:9:"notunique";i:522;s:14:"notveryupright";i:523;s:10:"notupright";i:524;s:11:"notverytidy";i:525;s:7:"nottidy";i:526;s:15:"notveryblissful";i:527;s:11:"notblissful";i:528;s:12:"notverytough";i:529;s:8:"nottough";i:530;s:11:"notveryglad";i:531;s:7:"notglad";i:532;s:14:"notveryreposed";i:533;s:10:"notreposed";i:534;s:16:"notverydesirable";i:535;s:12:"notdesirable";i:536;s:14:"notveryvaliant";i:537;s:10:"notvaliant";i:538;s:13:"notverymodest";i:539;s:9:"notmodest";i:540;s:16:"notveryingenious";i:541;s:12:"notingenious";i:542;s:12:"notverysolid";i:543;s:8:"notsolid";i:544;s:17:"notverycourageous";i:545;s:13:"notcourageous";i:546;s:15:"notveryprofound";i:547;s:11:"notprofound";i:548;s:16:"notveryadaptable";i:549;s:12:"notadaptable";i:550;s:13:"notveryworthy";i:551;s:9:"notworthy";i:552;s:15:"notverycolorful";i:553;s:11:"notcolorful";i:554;s:13:"notveryjoyful";i:555;s:9:"notjoyful";i:556;s:15:"notverylaudable";i:557;s:11:"notlaudable";i:558;s:11:"notverycute";i:559;s:7:"notcute";i:560;s:17:"notverydelectable";i:561;s:13:"notdelectable";i:562;s:17:"notverydependable";i:563;s:13:"notdependable";i:564;s:17:"notveryremarkable";i:565;s:13:"notremarkable";i:566;s:16:"notveryconfident";i:567;s:12:"notconfident";i:568;s:17:"notveryforbearing";i:569;s:13:"notforbearing";i:570;s:12:"notveryfunny";i:571;s:8:"notfunny";i:572;s:12:"notveryready";i:573;s:8:"notready";i:574;s:14:"notverylenient";i:575;s:10:"notlenient";i:576;s:15:"notverymagnetic";i:577;s:11:"notmagnetic";i:578;s:18:"notveryenlightened";i:579;s:14:"notenlightened";i:580;s:20:"notveryauthoritative";i:581;s:16:"notauthoritative";i:582;s:19:"notveryenterprising";i:583;s:15:"notenterprising";i:584;s:16:"notveryrighteous";i:585;s:12:"notrighteous";i:586;s:15:"notveryluminous";i:587;s:11:"notluminous";i:588;s:12:"notveryexact";i:589;s:8:"notexact";i:590;s:16:"notverycognizant";i:591;s:12:"notcognizant";i:592;s:15:"notveryecstatic";i:593;s:11:"notecstatic";i:594;s:13:"notverylovely";i:595;s:9:"notlovely";i:596;s:19:"notveryentertaining";i:597;s:15:"notentertaining";i:598;s:15:"notveryinspired";i:599;s:11:"notinspired";i:600;s:15:"notverythorough";i:601;s:11:"notthorough";i:602;s:13:"notverydecent";i:603;s:9:"notdecent";i:604;s:16:"notverypragmatic";i:605;s:12:"notpragmatic";i:606;s:12:"notverywitty";i:607;s:8:"notwitty";i:608;s:17:"notveryconvincing";i:609;s:13:"notconvincing";i:610;s:16:"notverybeautiful";i:611;s:12:"notbeautiful";i:612;s:18:"notveryresplendent";i:613;s:14:"notresplendent";i:614;s:11:"notverysexy";i:615;s:7:"notsexy";i:616;s:14:"notveryassured";i:617;s:10:"notassured";i:618;s:16:"notverycompetent";i:619;s:12:"notcompetent";i:620;s:18:"notveryprogressive";i:621;s:14:"notprogressive";i:622;s:14:"notverycomedic";i:623;s:10:"notcomedic";i:624;s:17:"notveryfelicitous";i:625;s:13:"notfelicitous";i:626;s:17:"notveryaccessible";i:627;s:13:"notaccessible";i:628;s:18:"notverycommendable";i:629;s:14:"notcommendable";i:630;s:14:"notverysensual";i:631;s:10:"notsensual";i:632;s:14:"notverysublime";i:633;s:10:"notsublime";i:634;s:18:"notverysympathetic";i:635;s:14:"notsympathetic";i:636;s:17:"notverycompatible";i:637;s:13:"notcompatible";i:638;s:15:"notverydiscrete";i:639;s:11:"notdiscrete";i:640;s:18:"notveryinfluential";i:641;s:14:"notinfluential";i:642;s:16:"notveryefficient";i:643;s:12:"notefficient";i:644;s:15:"notveryhumorous";i:645;s:11:"nothumorous";i:646;s:15:"notveryengaging";i:647;s:11:"notengaging";i:648;s:12:"notverycivil";i:649;s:8:"notcivil";i:650;s:15:"notverymerciful";i:651;s:11:"notmerciful";i:652;s:17:"notverybelievable";i:653;s:13:"notbelievable";i:654;s:13:"notverygentle";i:655;s:9:"notgentle";i:656;s:12:"notverylucky";i:657;s:8:"notlucky";i:658;s:20:"notveryknowledgeable";i:659;s:16:"notknowledgeable";i:660;s:13:"notveryserene";i:661;s:9:"notserene";i:662;s:14:"notveryearnest";i:663;s:10:"notearnest";i:664;s:13:"notveryadroit";i:665;s:9:"notadroit";i:666;s:15:"notveryfaithful";i:667;s:11:"notfaithful";i:668;s:15:"notveryexultant";i:669;s:11:"notexultant";i:670;s:17:"notveryhospitable";i:671;s:13:"nothospitable";i:672;s:14:"notverygleeful";i:673;s:10:"notgleeful";i:674;s:16:"notverysparkling";i:675;s:12:"notsparkling";i:676;s:14:"notverycordial";i:677;s:10:"notcordial";i:678;s:14:"notverysoulful";i:679;s:10:"notsoulful";i:680;s:19:"notveryappreciative";i:681;s:15:"notappreciative";i:682;s:18:"notveryspontaneous";i:683;s:14:"notspontaneous";i:684;s:18:"notveryfascinating";i:685;s:14:"notfascinating";i:686;s:16:"notverybrilliant";i:687;s:12:"notbrilliant";i:688;s:16:"notveryimpartial";i:689;s:12:"notimpartial";i:690;s:15:"notveryconstant";i:691;s:11:"notconstant";i:692;s:14:"notverynatural";i:693;s:10:"notnatural";i:694;s:11:"notverykeen";i:695;s:7:"notkeen";i:696;s:12:"notverymerry";i:697;s:8:"notmerry";i:698;s:15:"notveryeloquent";i:699;s:11:"noteloquent";i:700;s:15:"notverysensible";i:701;s:11:"notsensible";i:702;s:18:"notverycomfortable";i:703;s:14:"notcomfortable";i:704;s:14:"notveryrelaxed";i:705;s:10:"notrelaxed";i:706;s:13:"notverycasual";i:707;s:9:"notcasual";i:708;s:12:"notveryloyal";i:709;s:8:"notloyal";i:710;s:13:"notverystable";i:711;s:9:"notstable";i:712;s:12:"notveryalive";i:713;s:8:"notalive";i:714;s:15:"notverycharming";i:715;s:11:"notcharming";i:716;s:16:"notveryreceptive";i:717;s:12:"notreceptive";i:718;s:14:"notverylooking";i:719;s:10:"notlooking";i:720;s:9:"isn'tgood";i:721;s:15:"notverymannered";i:722;s:11:"notmannered";i:723;s:13:"notveryshrewd";i:724;s:9:"notshrewd";i:725;s:14:"notveryliberal";i:726;s:10:"notliberal";i:727;s:15:"notverygrounded";i:728;s:11:"notgrounded";i:729;s:15:"notverytruthful";i:730;s:11:"nottruthful";i:731;s:15:"notverygorgeous";i:732;s:11:"notgorgeous";i:733;s:16:"notverypractical";i:734;s:12:"notpractical";i:735;s:18:"notveryindustrious";i:736;s:14:"notindustrious";i:737;s:12:"notverybrave";i:738;s:8:"notbrave";i:739;s:14:"notveryperfect";i:740;s:10:"notperfect";i:741;s:12:"notveryhardy";i:742;s:8:"nothardy";i:743;s:15:"notveryinnocent";i:744;s:11:"notinnocent";i:745;s:16:"notveryenchanted";i:746;s:12:"notenchanted";i:747;s:15:"notveryathletic";i:748;s:11:"notathletic";i:749;s:12:"notverynoble";i:750;s:8:"notnoble";i:751;s:15:"notverydiligent";i:752;s:11:"notdiligent";i:753;s:17:"notverygregarious";i:754;s:13:"notgregarious";i:755;s:17:"notveryresponsive";i:756;s:13:"notresponsive";i:757;s:15:"notveryprecious";i:758;s:11:"notprecious";i:759;s:16:"notverysatisfied";i:760;s:12:"notsatisfied";i:761;s:11:"notverydeep";i:762;s:7:"notdeep";i:763;s:11:"notverycozy";i:764;s:7:"notcozy";i:765;s:12:"notveryagile";i:766;s:8:"notagile";i:767;s:17:"notveryrestrained";i:768;s:13:"notrestrained";i:769;s:14:"notveryhealthy";i:770;s:10:"nothealthy";i:771;s:11:"notveryjust";i:772;s:7:"notjust";i:773;s:15:"notverycreative";i:774;s:11:"notcreative";i:775;s:14:"notverygenteel";i:776;s:10:"notgenteel";i:777;s:18:"notverymeritorious";i:778;s:14:"notmeritorious";i:779;s:14:"notverylearned";i:780;s:10:"notlearned";i:781;s:12:"notveryright";i:782;s:8:"notright";i:783;s:19:"notveryapproachable";i:784;s:15:"notapproachable";i:785;s:17:"notveryharmonious";i:786;s:13:"notharmonious";i:787;s:15:"notverykissable";i:788;s:11:"notkissable";i:789;s:17:"notverybenevolent";i:790;s:13:"notbenevolent";i:791;s:12:"notverylucid";i:792;s:8:"notlucid";i:793;s:19:"notveryconciliatory";i:794;s:15:"notconciliatory";i:795;s:10:"notveryfun";i:796;s:6:"notfun";i:797;s:11:"notverybold";i:798;s:7:"notbold";i:799;s:11:"notveryrich";i:800;s:7:"notrich";i:801;s:20:"notveryaccommodating";i:802;s:16:"notaccommodating";i:803;s:16:"notveryfantastic";i:804;s:12:"notfantastic";i:805;s:12:"notveryjolly";i:806;s:8:"notjolly";i:807;s:16:"notverywhimsical";i:808;s:12:"notwhimsical";i:809;s:14:"notverydefined";i:810;s:10:"notdefined";i:811;s:17:"notveryimmaculate";i:812;s:13:"notimmaculate";i:813;s:17:"notverydiplomatic";i:814;s:13:"notdiplomatic";i:815;s:13:"notverybright";i:816;s:9:"notbright";i:817;s:13:"notverychatty";i:818;s:9:"notchatty";i:819;s:11:"notverymild";i:820;s:7:"notmild";i:821;s:13:"notveryproper";i:822;s:9:"notproper";i:823;s:15:"notveryvigorous";i:824;s:11:"notvigorous";i:825;s:16:"notverywonderful";i:826;s:12:"notwonderful";i:827;s:15:"notveryalluring";i:828;s:11:"notalluring";i:829;s:20:"notverycompanionable";i:830;s:16:"notcompanionable";i:831;s:17:"notveryreflective";i:832;s:13:"notreflective";i:833;s:15:"notverycredible";i:834;s:11:"notcredible";i:835;s:15:"notverypunctual";i:836;s:11:"notpunctual";i:837;s:13:"notveryelated";i:838;s:9:"notelated";i:839;s:17:"notveryimpressive";i:840;s:13:"notimpressive";i:841;s:14:"notveryplayful";i:842;s:10:"notplayful";i:843;s:18:"notveryintelligent";i:844;s:14:"notintelligent";i:845;s:13:"notverysuperb";i:846;s:9:"notsuperb";i:847;s:15:"notveryoriginal";i:848;s:11:"notoriginal";i:849;s:14:"notverydevoted";i:850;s:10:"notdevoted";i:851;s:15:"notverypleasant";i:852;s:11:"notpleasant";i:853;s:11:"notverywarm";i:854;s:7:"notwarm";i:855;s:15:"notverypowerful";i:856;s:11:"notpowerful";i:857;s:17:"notveryconvulsive";i:858;s:13:"notconvulsive";i:859;s:15:"notveryfabulous";i:860;s:11:"notfabulous";i:861;s:15:"notverygracious";i:862;s:11:"notgracious";i:863;s:17:"notveryaltruistic";i:864;s:13:"notaltruistic";i:865;s:18:"notveryaffirmative";i:866;s:14:"notaffirmative";i:867;s:13:"notverydirect";i:868;s:9:"notdirect";i:869;s:18:"notverygoodhearted";i:870;s:14:"notgoodhearted";i:871;s:13:"notverychaste";i:872;s:9:"notchaste";i:873;s:11:"notverywise";i:874;s:7:"notwise";i:875;s:20:"notveryphilanthropic";i:876;s:16:"notphilanthropic";i:877;s:13:"notveryrobust";i:878;s:9:"notrobust";i:879;s:16:"notveryconvivial";i:880;s:12:"notconvivial";i:881;s:17:"notveryconsistent";i:882;s:13:"notconsistent";i:883;s:16:"notverydedicated";i:884;s:12:"notdedicated";i:885;s:17:"notverypersuasive";i:886;s:13:"notpersuasive";i:887;s:10:"notamazing";i:888;s:11:"notverycalm";i:889;s:7:"notcalm";i:890;s:13:"notverynimble";i:891;s:9:"notnimble";i:892;s:15:"notverystudious";i:893;s:11:"notstudious";i:894;s:17:"notveryneighborly";i:895;s:13:"notneighborly";i:896;s:15:"notverydecisive";i:897;s:11:"notdecisive";i:898;s:13:"notverysubtle";i:899;s:9:"notsubtle";i:900;s:17:"notverypersonable";i:901;s:13:"notpersonable";i:902;s:15:"notverypeaceful";i:903;s:11:"notpeaceful";i:904;s:13:"notverybrainy";i:905;s:9:"notbrainy";i:906;s:14:"notverystylish";i:907;s:10:"notstylish";i:908;s:14:"notveryhopeful";i:909;s:10:"nothopeful";i:910;s:14:"notveryaffable";i:911;s:10:"notaffable";i:912;s:16:"notveryexcellent";i:913;s:12:"notexcellent";i:914;s:11:"notverychic";i:915;s:7:"notchic";i:916;s:16:"notveryintuitive";i:917;s:12:"notintuitive";i:918;s:14:"notveryheedful";i:919;s:10:"notheedful";i:920;s:16:"notverycourteous";i:921;s:12:"notcourteous";i:922;s:16:"notverydisarming";i:923;s:12:"notdisarming";i:924;s:13:"notverycaring";i:925;s:9:"notcaring";i:926;s:11:"notveryfine";i:927;s:7:"notfine";i:928;s:14:"notverylogical";i:929;s:10:"notlogical";i:930;s:15:"notverytranquil";i:931;s:11:"nottranquil";i:932;s:15:"notveryvirtuous";i:933;s:11:"notvirtuous";i:934;s:16:"notveryattentive";i:935;s:12:"notattentive";i:936;s:16:"notveryprovident";i:937;s:12:"notprovident";i:938;s:17:"notverythoughtful";i:939;s:13:"notthoughtful";i:940;s:15:"notverycerebral";i:941;s:11:"notcerebral";i:942;s:15:"notveryjubilant";i:943;s:11:"notjubilant";i:944;s:19:"notveryaffectionate";i:945;s:15:"notaffectionate";i:946;s:16:"notveryforgiving";i:947;s:12:"notforgiving";i:948;s:14:"notverymindful";i:949;s:10:"notmindful";i:950;s:20:"notveryunderstanding";i:951;s:16:"notunderstanding";i:952;s:15:"notveryfruitful";i:953;s:11:"notfruitful";i:954;s:14:"notverywinsome";i:955;s:10:"notwinsome";i:956;s:15:"notverysociable";i:957;s:11:"notsociable";i:958;s:14:"notveryelegant";i:959;s:10:"notelegant";i:960;s:15:"notverymasterly";i:961;s:11:"notmasterly";i:962;s:14:"notveryfertile";i:963;s:10:"notfertile";i:964;s:12:"notverygreat";i:965;s:8:"notgreat";i:966;s:15:"notverytolerant";i:967;s:11:"nottolerant";i:968;s:11:"notveryfree";i:969;s:7:"notfree";i:970;s:13:"notverydaring";i:971;s:9:"notdaring";i:972;s:16:"notverydeserving";i:973;s:12:"notdeserving";i:974;s:15:"notverypolished";i:975;s:11:"notpolished";i:976;s:11:"notveryreal";i:977;s:7:"notreal";i:978;s:16:"notveryadmirable";i:979;s:12:"notadmirable";i:980;s:14:"notveryblessed";i:981;s:10:"notblessed";i:982;s:16:"notverycongenial";i:983;s:12:"notcongenial";i:984;s:12:"notverygodly";i:985;s:8:"notgodly";i:986;s:17:"notveryopenhanded";i:987;s:13:"notopenhanded";i:988;s:18:"notveryindependent";i:989;s:14:"notindependent";i:990;s:20:"notverycompassionate";i:991;s:16:"notcompassionate";i:992;s:17:"notveryconsummate";i:993;s:13:"notconsummate";i:994;s:15:"notveryartistic";i:995;s:11:"notartistic";i:996;s:14:"notverygenuine";i:997;s:10:"notgenuine";i:998;s:14:"notveryamorous";i:999;s:10:"notamorous";i:1000;s:13:"notverysmooth";i:1001;s:9:"notsmooth";i:1002;s:11:"notveryspry";i:1003;s:7:"notspry";i:1004;s:14:"notverycomplex";i:1005;s:10:"notcomplex";i:1006;s:16:"notveryscholarly";i:1007;s:12:"notscholarly";i:1008;s:17:"notveryautonomous";i:1009;s:13:"notautonomous";i:1010;s:19:"notveryaccomplished";i:1011;s:15:"notaccomplished";i:1012;s:13:"notveryseemly";i:1013;s:9:"notseemly";i:1014;s:13:"notveryastute";i:1015;s:9:"notastute";i:1016;s:16:"notveryrejoicing";i:1017;s:12:"notrejoicing";i:1018;s:20:"notveryphilosophical";i:1019;s:16:"notphilosophical";i:1020;s:17:"notverybeneficent";i:1021;s:13:"notbeneficent";i:1022;s:17:"notveryprivileged";i:1023;s:13:"notprivileged";i:1024;s:18:"notveryestablished";i:1025;s:14:"notestablished";i:1026;s:16:"notverysagacious";i:1027;s:12:"notsagacious";i:1028;s:12:"notverygrand";i:1029;s:8:"notgrand";i:1030;s:16:"notveryimportant";i:1031;s:12:"notimportant";i:1032;s:15:"notveryresolute";i:1033;s:11:"notresolute";i:1034;s:14:"notveryradiant";i:1035;s:10:"notradiant";i:1036;s:13:"notverygenial";i:1037;s:9:"notgenial";i:1038;s:13:"notverycandid";i:1039;s:9:"notcandid";i:1040;s:17:"notverydeliberate";i:1041;s:13:"notdeliberate";i:1042;s:15:"notveryflexible";i:1043;s:11:"notflexible";i:1044;s:15:"notveryreliable";i:1045;s:11:"notreliable";i:1046;s:15:"notveryterrific";i:1047;s:11:"notterrific";i:1048;s:12:"notverysharp";i:1049;s:8:"notsharp";i:1050;s:17:"notverydemocratic";i:1051;s:13:"notdemocratic";i:1052;s:12:"notverysweet";i:1053;s:8:"notsweet";i:1054;s:17:"notverycharitable";i:1055;s:13:"notcharitable";i:1056;s:17:"notveryproductive";i:1057;s:13:"notproductive";i:1058;s:14:"notverysaintly";i:1059;s:10:"notsaintly";i:1060;s:14:"notverywilling";i:1061;s:10:"notwilling";i:1062;s:18:"notveryclearheaded";i:1063;s:14:"notclearheaded";i:1064;s:13:"notveryprompt";i:1065;s:9:"notprompt";i:1066;s:15:"notverysplendid";i:1067;s:11:"notsplendid";i:1068;s:20:"notverysophisticated";i:1069;s:16:"notsophisticated";i:1070;s:15:"notveryprolific";i:1071;s:11:"notprolific";i:1072;s:14:"notveryworldly";i:1073;s:10:"notworldly";i:1074;s:16:"notveryenergetic";i:1075;s:12:"notenergetic";i:1076;s:15:"notveryamicable";i:1077;s:11:"notamicable";i:1078;s:17:"notverydiscerning";i:1079;s:13:"notdiscerning";i:1080;s:15:"notverygenerous";i:1081;s:11:"notgenerous";i:1082;s:12:"notverysunny";i:1083;s:8:"notsunny";i:1084;s:18:"notveryfashionable";i:1085;s:14:"notfashionable";i:1086;s:13:"notverymature";i:1087;s:9:"notmature";i:1088;s:12:"notverylight";i:1089;s:8:"notlight";i:1090;s:17:"notveryreasonable";i:1091;s:13:"notreasonable";i:1092;s:16:"notverypriceless";i:1093;s:12:"notpriceless";i:1094;s:12:"notverysuave";i:1095;s:8:"notsuave";i:1096;s:17:"notveryforthright";i:1097;s:13:"notforthright";i:1098;s:16:"notveryhilarious";i:1099;s:12:"nothilarious";i:1100;s:17:"notveryrespectful";i:1101;s:13:"notrespectful";i:1102;s:13:"notverycomely";i:1103;s:9:"notcomely";i:1104;s:16:"notveryspiritual";i:1105;s:12:"notspiritual";i:1106;s:13:"notverysteady";i:1107;s:9:"notsteady";i:1108;s:15:"notveryspirited";i:1109;s:11:"notspirited";i:1110;s:17:"notverynourishing";i:1111;s:13:"notnourishing";i:1112;s:15:"notverythankful";i:1113;s:11:"notthankful";i:1114;s:15:"notverypositive";i:1115;s:11:"notpositive";i:1116;s:11:"notveryairy";i:1117;s:7:"notairy";i:1118;s:17:"notverysystematic";i:1119;s:13:"notsystematic";i:1120;s:12:"notveryhandy";i:1121;s:8:"nothandy";i:1122;s:18:"notveryconsiderate";i:1123;s:14:"notconsiderate";i:1124;s:15:"notveryromantic";i:1125;s:11:"notromantic";i:1126;s:15:"notverylikeable";i:1127;s:11:"notlikeable";i:1128;s:18:"notveryappropriate";i:1129;s:14:"notappropriate";i:1130;s:15:"notveryheavenly";i:1131;s:11:"notheavenly";i:1132;s:14:"notverydutiful";i:1133;s:10:"notdutiful";i:1134;s:18:"notveryencouraging";i:1135;s:14:"notencouraging";i:1136;s:11:"notveryrosy";i:1137;s:7:"notrosy";i:1138;s:14:"notverygallant";i:1139;s:10:"notgallant";i:1140;s:16:"notveryversatile";i:1141;s:12:"notversatile";i:1142;s:14:"notveryamiable";i:1143;s:10:"notamiable";i:1144;s:14:"notverythrifty";i:1145;s:10:"notthrifty";i:1146;s:12:"notverymoral";i:1147;s:8:"notmoral";i:1148;s:13:"notveryspeedy";i:1149;s:9:"notspeedy";i:1150;s:15:"notverybalanced";i:1151;s:11:"notbalanced";i:1152;s:14:"notveryconcise";i:1153;s:10:"notconcise";i:1154;s:17:"notverypurposeful";i:1155;s:9:"notactive";i:1156;s:18:"notverydistinctive";i:1157;s:14:"notdistinctive";i:1158;s:13:"notpurposeful";i:1159;s:19:"notveryenthusiastic";i:1160;s:15:"notenthusiastic";i:1161;s:17:"notverypassionate";i:1162;s:13:"notpassionate";i:1163;s:13:"notverybenign";i:1164;s:9:"notbenign";i:1165;s:18:"notveryaccountable";i:1166;s:14:"notaccountable";i:1167;s:15:"notverymoderate";i:1168;s:11:"notmoderate";i:1169;s:18:"notverycaptivating";i:1170;s:14:"notcaptivating";i:1171;s:13:"notverystrong";i:1172;s:9:"notstrong";i:1173;s:13:"notverysprite";i:1174;s:3:"%-(";i:1175;s:3:")-:";i:1176;s:2:"):";i:1177;s:2:":(";i:1178;s:3:")o:";i:1179;s:3:"38*";i:1180;s:3:"8-0";i:1181;s:2:"8/";i:1182;s:1:"8";i:1183;s:2:"8c";i:1184;s:2:":#";i:1185;s:3:":*(";i:1186;s:3:":,(";i:1187;s:3:":-&";i:1188;s:3:":-(";i:1189;s:5:":-(o)";i:1190;s:3:":-/";i:1191;s:3:":-s";i:1192;s:2:":-";i:1193;s:3:":-|";i:1194;s:2:":/";i:1195;s:2:":e";i:1196;s:2:":f";i:1197;s:2:":o";i:1198;s:2:":s";i:1199;s:2:":[";i:1200;s:1:":";i:1201;s:3:":_(";i:1202;s:3:":o(";i:1203;s:2:":|";i:1204;s:6:" " "=(";i:1205;s:2:"=[";i:1206;s:2:">/";i:1207;s:3:">:(";i:1208;s:3:">:l";i:1209;s:3:">:o";i:1210;s:2:">[";i:1211;s:1:">";i:1212;s:3:">o>";i:1213;s:2:"b(";i:1214;s:2:"bd";i:1215;s:2:"d:";i:1216;s:2:"x(";i:1217;s:3:"x-(";i:1218;s:2:"xo";i:1219;s:2:"xp";i:1220;s:3:"^o)";i:1221;s:3:"|8c";i:1222;s:7:"abandon";i:1223;s:5:"abase";i:1224;s:9:"abasement";i:1225;s:5:"abash";i:1226;s:5:"abate";i:1227;s:8:"abdicate";i:1228;s:10:"aberration";i:1229;s:5:"abhor";i:1230;s:8:"abhorred";i:1231;s:10:"abhorrence";i:1232;s:9:"abhorrent";i:1233;s:11:"abhorrently";i:1234;s:6:"abhors";i:1235;s:6:"abject";i:1236;s:8:"abjectly";i:1237;s:6:"abjure";i:1238;s:8:"abnormal";i:1239;s:7:"abolish";i:1240;s:10:"abominable";i:1241;s:10:"abominably";i:1242;s:9:"abominate";i:1243;s:11:"abomination";i:1244;s:6:"abrade";i:1245;s:8:"abrasive";i:1246;s:6:"abrupt";i:1247;s:7:"abscond";i:1248;s:7:"absence";i:1249;s:8:"absentee";i:1250;s:13:"absent-minded";i:1251;s:6:"absurd";i:1252;s:9:"absurdity";i:1253;s:8:"absurdly";i:1254;s:10:"absurdness";i:1255;s:5:"abuse";i:1256;s:6:"abuses";i:1257;s:7:"abusive";i:1258;s:7:"abysmal";i:1259;s:9:"abysmally";i:1260;s:5:"abyss";i:1261;s:10:"accidental";i:1262;s:6:"accost";i:1263;s:8:"accursed";i:1264;s:10:"accusation";i:1265;s:11:"accusations";i:1266;s:6:"accuse";i:1267;s:7:"accuses";i:1268;s:8:"accusing";i:1269;s:10:"accusingly";i:1270;s:8:"acerbate";i:1271;s:7:"acerbic";i:1272;s:11:"acerbically";i:1273;s:4:"ache";i:1274;s:5:"acrid";i:1275;s:7:"acridly";i:1276;s:9:"acridness";i:1277;s:11:"acrimonious";i:1278;s:13:"acrimoniously";i:1279;s:8:"acrimony";i:1280;s:7:"adamant";i:1281;s:9:"adamantly";i:1282;s:6:"addict";i:1283;s:9:"addiction";i:1284;s:8:"admonish";i:1285;s:10:"admonisher";i:1286;s:13:"admonishingly";i:1287;s:12:"admonishment";i:1288;s:10:"admonition";i:1289;s:6:"adrift";i:1290;s:10:"adulterate";i:1291;s:11:"adulterated";i:1292;s:12:"adulteration";i:1293;s:11:"adversarial";i:1294;s:9:"adversary";i:1295;s:7:"adverse";i:1296;s:9:"adversity";i:1297;s:11:"affectation";i:1298;s:7:"afflict";i:1299;s:10:"affliction";i:1300;s:10:"afflictive";i:1301;s:7:"affront";i:1302;s:9:"aggravate";i:1303;s:11:"aggravating";i:1304;s:11:"aggravation";i:1305;s:10:"aggression";i:1306;s:14:"aggressiveness";i:1307;s:9:"aggressor";i:1308;s:8:"aggrieve";i:1309;s:9:"aggrieved";i:1310;s:6:"aghast";i:1311;s:7:"agitate";i:1312;s:8:"agitated";i:1313;s:9:"agitation";i:1314;s:8:"agitator";i:1315;s:7:"agonies";i:1316;s:7:"agonize";i:1317;s:9:"agonizing";i:1318;s:11:"agonizingly";i:1319;s:5:"agony";i:1320;s:3:"ail";i:1321;s:7:"ailment";i:1322;s:7:"aimless";i:1323;s:4:"airs";i:1324;s:5:"alarm";i:1325;s:7:"alarmed";i:1326;s:8:"alarming";i:1327;s:10:"alarmingly";i:1328;s:4:"alas";i:1329;s:8:"alienate";i:1330;s:9:"alienated";i:1331;s:10:"alienation";i:1332;s:10:"allegation";i:1333;s:11:"allegations";i:1334;s:6:"allege";i:1335;s:8:"allergic";i:1336;s:5:"aloof";i:1337;s:11:"altercation";i:1338;s:9:"ambiguous";i:1339;s:9:"ambiguity";i:1340;s:11:"ambivalence";i:1341;s:10:"ambivalent";i:1342;s:6:"ambush";i:1343;s:5:"amiss";i:1344;s:8:"amputate";i:1345;s:9:"anarchism";i:1346;s:9:"anarchist";i:1347;s:11:"anarchistic";i:1348;s:7:"anarchy";i:1349;s:6:"anemic";i:1350;s:5:"anger";i:1351;s:7:"angrily";i:1352;s:9:"angriness";i:1353;s:10:"annihilate";i:1354;s:12:"annihilation";i:1355;s:9:"animosity";i:1356;s:5:"annoy";i:1357;s:9:"annoyance";i:1358;s:8:"annoying";i:1359;s:10:"annoyingly";i:1360;s:9:"anomalous";i:1361;s:7:"anomaly";i:1362;s:10:"antagonism";i:1363;s:10:"antagonist";i:1364;s:12:"antagonistic";i:1365;s:10:"antagonize";i:1366;s:5:"anti-";i:1367;s:13:"anti-american";i:1368;s:12:"anti-israeli";i:1369;s:12:"anti-semites";i:1370;s:7:"anti-us";i:1371;s:15:"anti-occupation";i:1372;s:18:"anti-proliferation";i:1373;s:11:"anti-social";i:1374;s:10:"anti-white";i:1375;s:9:"antipathy";i:1376;s:10:"antiquated";i:1377;s:12:"antithetical";i:1378;s:9:"anxieties";i:1379;s:7:"anxiety";i:1380;s:9:"anxiously";i:1381;s:11:"anxiousness";i:1382;s:9:"apathetic";i:1383;s:13:"apathetically";i:1384;s:6:"apathy";i:1385;s:3:"ape";i:1386;s:10:"apocalypse";i:1387;s:11:"apocalyptic";i:1388;s:9:"apologist";i:1389;s:10:"apologists";i:1390;s:5:"appal";i:1391;s:6:"appall";i:1392;s:8:"appalled";i:1393;s:9:"appalling";i:1394;s:11:"appallingly";i:1395;s:12:"apprehension";i:1396;s:13:"apprehensions";i:1397;s:14:"apprehensively";i:1398;s:9:"arbitrary";i:1399;s:6:"arcane";i:1400;s:7:"archaic";i:1401;s:7:"arduous";i:1402;s:9:"arduously";i:1403;s:5:"argue";i:1404;s:8:"argument";i:1405;s:9:"arguments";i:1406;s:9:"arrogance";i:1407;s:8:"arrogant";i:1408;s:10:"arrogantly";i:1409;s:7:"asinine";i:1410;s:9:"asininely";i:1411;s:11:"asinininity";i:1412;s:7:"askance";i:1413;s:7:"asperse";i:1414;s:9:"aspersion";i:1415;s:10:"aspersions";i:1416;s:6:"assail";i:1417;s:11:"assassinate";i:1418;s:8:"assassin";i:1419;s:7:"assault";i:1420;s:6:"astray";i:1421;s:7:"asunder";i:1422;s:10:"atrocities";i:1423;s:8:"atrocity";i:1424;s:7:"atrophy";i:1425;s:6:"attack";i:1426;s:9:"audacious";i:1427;s:11:"audaciously";i:1428;s:13:"audaciousness";i:1429;s:8:"audacity";i:1430;s:7:"austere";i:1431;s:13:"authoritarian";i:1432;s:8:"autocrat";i:1433;s:10:"autocratic";i:1434;s:9:"avalanche";i:1435;s:7:"avarice";i:1436;s:10:"avaricious";i:1437;s:12:"avariciously";i:1438;s:6:"avenge";i:1439;s:6:"averse";i:1440;s:8:"aversion";i:1441;s:5:"avoid";i:1442;s:9:"avoidance";i:1443;s:9:"awfulness";i:1444;s:11:"awkwardness";i:1445;s:2:"ax";i:1446;s:6:"babble";i:1447;s:8:"backbite";i:1448;s:10:"backbiting";i:1449;s:8:"backward";i:1450;s:12:"backwardness";i:1451;s:5:"badly";i:1452;s:6:"baffle";i:1453;s:10:"bafflement";i:1454;s:8:"baffling";i:1455;s:4:"bait";i:1456;s:4:"balk";i:1457;s:5:"banal";i:1458;s:8:"banalize";i:1459;s:4:"bane";i:1460;s:6:"banish";i:1461;s:10:"banishment";i:1462;s:8:"bankrupt";i:1463;s:3:"bar";i:1464;s:9:"barbarian";i:1465;s:8:"barbaric";i:1466;s:12:"barbarically";i:1467;s:9:"barbarity";i:1468;s:9:"barbarous";i:1469;s:11:"barbarously";i:1470;s:6:"barely";i:1471;s:8:"baseless";i:1472;s:7:"bashful";i:1473;s:7:"bastard";i:1474;s:8:"battered";i:1475;s:9:"battering";i:1476;s:6:"battle";i:1477;s:12:"battle-lines";i:1478;s:11:"battlefield";i:1479;s:12:"battleground";i:1480;s:5:"batty";i:1481;s:7:"bearish";i:1482;s:5:"beast";i:1483;s:7:"beastly";i:1484;s:6:"bedlam";i:1485;s:9:"bedlamite";i:1486;s:6:"befoul";i:1487;s:3:"beg";i:1488;s:6:"beggar";i:1489;s:8:"beggarly";i:1490;s:7:"begging";i:1491;s:7:"beguile";i:1492;s:7:"belated";i:1493;s:7:"belabor";i:1494;s:9:"beleaguer";i:1495;s:5:"belie";i:1496;s:8:"belittle";i:1497;s:10:"belittling";i:1498;s:9:"bellicose";i:1499;s:12:"belligerence";i:1500;s:11:"belligerent";i:1501;s:13:"belligerently";i:1502;s:6:"bemoan";i:1503;s:9:"bemoaning";i:1504;s:7:"bemused";i:1505;s:4:"bent";i:1506;s:6:"berate";i:1507;s:7:"bereave";i:1508;s:11:"bereavement";i:1509;s:6:"bereft";i:1510;s:7:"berserk";i:1511;s:7:"beseech";i:1512;s:5:"beset";i:1513;s:7:"besiege";i:1514;s:8:"besmirch";i:1515;s:7:"bestial";i:1516;s:6:"betray";i:1517;s:8:"betrayal";i:1518;s:9:"betrayals";i:1519;s:8:"betrayer";i:1520;s:6:"bewail";i:1521;s:6:"beware";i:1522;s:8:"bewilder";i:1523;s:10:"bewildered";i:1524;s:11:"bewildering";i:1525;s:13:"bewilderingly";i:1526;s:12:"bewilderment";i:1527;s:7:"bewitch";i:1528;s:4:"bias";i:1529;s:6:"biased";i:1530;s:6:"biases";i:1531;s:6:"bicker";i:1532;s:9:"bickering";i:1533;s:11:"bid-rigging";i:1534;s:5:"bitch";i:1535;s:6:"bitchy";i:1536;s:6:"biting";i:1537;s:8:"bitingly";i:1538;s:8:"bitterly";i:1539;s:10:"bitterness";i:1540;s:7:"bizarre";i:1541;s:4:"blab";i:1542;s:7:"blabber";i:1543;s:5:"black";i:1544;s:9:"blackmail";i:1545;s:4:"blah";i:1546;s:11:"blameworthy";i:1547;s:5:"bland";i:1548;s:8:"blandish";i:1549;s:9:"blaspheme";i:1550;s:11:"blasphemous";i:1551;s:9:"blasphemy";i:1552;s:5:"blast";i:1553;s:7:"blasted";i:1554;s:7:"blatant";i:1555;s:9:"blatantly";i:1556;s:7:"blather";i:1557;s:7:"bleakly";i:1558;s:9:"bleakness";i:1559;s:5:"bleed";i:1560;s:7:"blemish";i:1561;s:5:"blind";i:1562;s:8:"blinding";i:1563;s:10:"blindingly";i:1564;s:9:"blindness";i:1565;s:9:"blindside";i:1566;s:7:"blister";i:1567;s:10:"blistering";i:1568;s:7:"bloated";i:1569;s:5:"block";i:1570;s:9:"blockhead";i:1571;s:5:"blood";i:1572;s:9:"bloodshed";i:1573;s:12:"bloodthirsty";i:1574;s:6:"bloody";i:1575;s:4:"blow";i:1576;s:7:"blunder";i:1577;s:10:"blundering";i:1578;s:8:"blunders";i:1579;s:5:"blunt";i:1580;s:5:"blurt";i:1581;s:5:"boast";i:1582;s:8:"boastful";i:1583;s:6:"boggle";i:1584;s:5:"bogus";i:1585;s:4:"boil";i:1586;s:7:"boiling";i:1587;s:10:"boisterous";i:1588;s:7:"bombard";i:1589;s:4:"bomb";i:1590;s:11:"bombardment";i:1591;s:9:"bombastic";i:1592;s:7:"bondage";i:1593;s:7:"bonkers";i:1594;s:4:"bore";i:1595;s:7:"boredom";i:1596;s:5:"botch";i:1597;s:6:"bother";i:1598;s:10:"bowdlerize";i:1599;s:7:"boycott";i:1600;s:8:"braggart";i:1601;s:7:"bragger";i:1602;s:9:"brainwash";i:1603;s:5:"brash";i:1604;s:7:"brashly";i:1605;s:9:"brashness";i:1606;s:4:"brat";i:1607;s:7:"bravado";i:1608;s:6:"brazen";i:1609;s:8:"brazenly";i:1610;s:10:"brazenness";i:1611;s:6:"breach";i:1612;s:5:"break";i:1613;s:11:"break-point";i:1614;s:9:"breakdown";i:1615;s:9:"brimstone";i:1616;s:7:"bristle";i:1617;s:7:"brittle";i:1618;s:5:"broke";i:1619;s:14:"broken-hearted";i:1620;s:5:"brood";i:1621;s:8:"browbeat";i:1622;s:6:"bruise";i:1623;s:7:"brusque";i:1624;s:6:"brutal";i:1625;s:11:"brutalising";i:1626;s:11:"brutalities";i:1627;s:9:"brutality";i:1628;s:9:"brutalize";i:1629;s:11:"brutalizing";i:1630;s:8:"brutally";i:1631;s:5:"brute";i:1632;s:7:"brutish";i:1633;s:3:"bug";i:1634;s:6:"buckle";i:1635;s:5:"bulky";i:1636;s:7:"bullies";i:1637;s:5:"bully";i:1638;s:10:"bullyingly";i:1639;s:3:"bum";i:1640;s:5:"bumpy";i:1641;s:6:"bungle";i:1642;s:7:"bungler";i:1643;s:4:"bunk";i:1644;s:6:"burden";i:1645;s:12:"burdensomely";i:1646;s:4:"burn";i:1647;s:4:"busy";i:1648;s:8:"busybody";i:1649;s:7:"butcher";i:1650;s:8:"butchery";i:1651;s:9:"byzantine";i:1652;s:6:"cackle";i:1653;s:6:"cajole";i:1654;s:10:"calamities";i:1655;s:10:"calamitous";i:1656;s:12:"calamitously";i:1657;s:8:"calamity";i:1658;s:7:"callous";i:1659;s:10:"calumniate";i:1660;s:12:"calumniation";i:1661;s:9:"calumnies";i:1662;s:10:"calumnious";i:1663;s:12:"calumniously";i:1664;s:7:"calumny";i:1665;s:6:"cancer";i:1666;s:9:"cancerous";i:1667;s:8:"cannibal";i:1668;s:11:"cannibalize";i:1669;s:10:"capitulate";i:1670;s:10:"capricious";i:1671;s:12:"capriciously";i:1672;s:14:"capriciousness";i:1673;s:7:"capsize";i:1674;s:7:"captive";i:1675;s:12:"carelessness";i:1676;s:10:"caricature";i:1677;s:7:"carnage";i:1678;s:4:"carp";i:1679;s:7:"cartoon";i:1680;s:10:"cartoonish";i:1681;s:13:"cash-strapped";i:1682;s:9:"castigate";i:1683;s:8:"casualty";i:1684;s:9:"cataclysm";i:1685;s:11:"cataclysmal";i:1686;s:11:"cataclysmic";i:1687;s:15:"cataclysmically";i:1688;s:11:"catastrophe";i:1689;s:12:"catastrophes";i:1690;s:12:"catastrophic";i:1691;s:16:"catastrophically";i:1692;s:7:"caustic";i:1693;s:11:"caustically";i:1694;s:10:"cautionary";i:1695;s:8:"cautious";i:1696;s:4:"cave";i:1697;s:7:"censure";i:1698;s:5:"chafe";i:1699;s:5:"chaff";i:1700;s:7:"chagrin";i:1701;s:9:"challenge";i:1702;s:11:"challenging";i:1703;s:5:"chaos";i:1704;s:8:"charisma";i:1705;s:7:"chasten";i:1706;s:8:"chastise";i:1707;s:12:"chastisement";i:1708;s:7:"chatter";i:1709;s:10:"chatterbox";i:1710;s:7:"cheapen";i:1711;s:5:"cheap";i:1712;s:5:"cheat";i:1713;s:7:"cheater";i:1714;s:9:"cheerless";i:1715;s:5:"chide";i:1716;s:8:"childish";i:1717;s:5:"chill";i:1718;s:6:"chilly";i:1719;s:4:"chit";i:1720;s:6:"choppy";i:1721;s:5:"choke";i:1722;s:5:"chore";i:1723;s:7:"chronic";i:1724;s:6:"clamor";i:1725;s:9:"clamorous";i:1726;s:5:"clash";i:1727;s:6:"cliche";i:1728;s:7:"cliched";i:1729;s:6:"clique";i:1730;s:4:"clog";i:1731;s:5:"close";i:1732;s:5:"cloud";i:1733;s:6:"coarse";i:1734;s:5:"cocky";i:1735;s:6:"coerce";i:1736;s:8:"coercion";i:1737;s:8:"coercive";i:1738;s:6:"coldly";i:1739;s:8:"collapse";i:1740;s:7:"collide";i:1741;s:7:"collude";i:1742;s:9:"collusion";i:1743;s:6:"comedy";i:1744;s:7:"comical";i:1745;s:11:"commiserate";i:1746;s:11:"commonplace";i:1747;s:9:"commotion";i:1748;s:6:"compel";i:1749;s:10:"complacent";i:1750;s:8:"complain";i:1751;s:11:"complaining";i:1752;s:9:"complaint";i:1753;s:10:"complaints";i:1754;s:10:"complicate";i:1755;s:11:"complicated";i:1756;s:12:"complication";i:1757;s:9:"complicit";i:1758;s:10:"compulsion";i:1759;s:10:"compulsory";i:1760;s:7:"concede";i:1761;s:7:"conceit";i:1762;s:7:"concern";i:1763;s:8:"concerns";i:1764;s:10:"concession";i:1765;s:11:"concessions";i:1766;s:10:"condescend";i:1767;s:13:"condescending";i:1768;s:15:"condescendingly";i:1769;s:13:"condescension";i:1770;s:7:"condemn";i:1771;s:11:"condemnable";i:1772;s:12:"condemnation";i:1773;s:10:"condolence";i:1774;s:11:"condolences";i:1775;s:7:"confess";i:1776;s:10:"confession";i:1777;s:11:"confessions";i:1778;s:8:"conflict";i:1779;s:8:"confound";i:1780;s:10:"confounded";i:1781;s:11:"confounding";i:1782;s:8:"confront";i:1783;s:13:"confrontation";i:1784;s:15:"confrontational";i:1785;s:7:"confuse";i:1786;s:9:"confusing";i:1787;s:9:"confusion";i:1788;s:9:"congested";i:1789;s:10:"congestion";i:1790;s:11:"conspicuous";i:1791;s:13:"conspicuously";i:1792;s:12:"conspiracies";i:1793;s:10:"conspiracy";i:1794;s:11:"conspirator";i:1795;s:14:"conspiratorial";i:1796;s:8:"conspire";i:1797;s:13:"consternation";i:1798;s:9:"constrain";i:1799;s:10:"constraint";i:1800;s:7:"consume";i:1801;s:10:"contagious";i:1802;s:11:"contaminate";i:1803;s:13:"contamination";i:1804;s:12:"contemptible";i:1805;s:12:"contemptuous";i:1806;s:14:"contemptuously";i:1807;s:7:"contend";i:1808;s:10:"contention";i:1809;s:7:"contort";i:1810;s:11:"contortions";i:1811;s:10:"contradict";i:1812;s:13:"contradiction";i:1813;s:13:"contradictory";i:1814;s:12:"contrariness";i:1815;s:8:"contrary";i:1816;s:10:"contravene";i:1817;s:8:"contrive";i:1818;s:9:"contrived";i:1819;s:13:"controversial";i:1820;s:11:"controversy";i:1821;s:10:"convoluted";i:1822;s:6:"coping";i:1823;s:7:"corrode";i:1824;s:9:"corrosion";i:1825;s:9:"corrosive";i:1826;s:7:"corrupt";i:1827;s:10:"corruption";i:1828;s:6:"costly";i:1829;s:17:"counterproductive";i:1830;s:8:"coupists";i:1831;s:8:"covetous";i:1832;s:3:"cow";i:1833;s:6:"coward";i:1834;s:9:"crackdown";i:1835;s:6:"crafty";i:1836;s:5:"crass";i:1837;s:6:"craven";i:1838;s:8:"cravenly";i:1839;s:5:"craze";i:1840;s:7:"crazily";i:1841;s:9:"craziness";i:1842;s:9:"credulous";i:1843;s:5:"crime";i:1844;s:8:"criminal";i:1845;s:6:"cringe";i:1846;s:7:"cripple";i:1847;s:9:"crippling";i:1848;s:6:"crisis";i:1849;s:6:"critic";i:1850;s:9:"criticism";i:1851;s:10:"criticisms";i:1852;s:9:"criticize";i:1853;s:7:"critics";i:1854;s:5:"crook";i:1855;s:7:"crooked";i:1856;s:5:"crude";i:1857;s:5:"cruel";i:1858;s:9:"cruelties";i:1859;s:7:"cruelty";i:1860;s:7:"crumble";i:1861;s:7:"crumple";i:1862;s:5:"crush";i:1863;s:8:"crushing";i:1864;s:3:"cry";i:1865;s:8:"culpable";i:1866;s:7:"cuplrit";i:1867;s:10:"cumbersome";i:1868;s:5:"curse";i:1869;s:6:"cursed";i:1870;s:6:"curses";i:1871;s:7:"cursory";i:1872;s:4:"curt";i:1873;s:4:"cuss";i:1874;s:3:"cut";i:1875;s:9:"cutthroat";i:1876;s:8:"cynicism";i:1877;s:6:"damage";i:1878;s:8:"damaging";i:1879;s:4:"damn";i:1880;s:8:"damnable";i:1881;s:8:"damnably";i:1882;s:9:"damnation";i:1883;s:7:"damning";i:1884;s:6:"danger";i:1885;s:13:"dangerousness";i:1886;s:6:"dangle";i:1887;s:6:"darken";i:1888;s:8:"darkness";i:1889;s:4:"darn";i:1890;s:4:"dash";i:1891;s:7:"dastard";i:1892;s:9:"dastardly";i:1893;s:5:"daunt";i:1894;s:8:"daunting";i:1895;s:10:"dauntingly";i:1896;s:6:"dawdle";i:1897;s:4:"daze";i:1898;s:8:"deadbeat";i:1899;s:8:"deadlock";i:1900;s:6:"deadly";i:1901;s:10:"deadweight";i:1902;s:4:"deaf";i:1903;s:6:"dearth";i:1904;s:5:"death";i:1905;s:7:"debacle";i:1906;s:6:"debase";i:1907;s:10:"debasement";i:1908;s:7:"debaser";i:1909;s:9:"debatable";i:1910;s:6:"debate";i:1911;s:7:"debauch";i:1912;s:9:"debaucher";i:1913;s:10:"debauchery";i:1914;s:10:"debilitate";i:1915;s:12:"debilitating";i:1916;s:8:"debility";i:1917;s:9:"decadence";i:1918;s:8:"decadent";i:1919;s:5:"decay";i:1920;s:7:"decayed";i:1921;s:6:"deceit";i:1922;s:9:"deceitful";i:1923;s:11:"deceitfully";i:1924;s:13:"deceitfulness";i:1925;s:9:"deceiving";i:1926;s:7:"deceive";i:1927;s:8:"deceiver";i:1928;s:9:"deceivers";i:1929;s:9:"deception";i:1930;s:9:"deceptive";i:1931;s:11:"deceptively";i:1932;s:7:"declaim";i:1933;s:7:"decline";i:1934;s:9:"declining";i:1935;s:8:"decrease";i:1936;s:10:"decreasing";i:1937;s:9:"decrement";i:1938;s:8:"decrepit";i:1939;s:11:"decrepitude";i:1940;s:5:"decry";i:1941;s:9:"deepening";i:1942;s:10:"defamation";i:1943;s:11:"defamations";i:1944;s:10:"defamatory";i:1945;s:6:"defame";i:1946;s:6:"defeat";i:1947;s:6:"defect";i:1948;s:8:"defiance";i:1949;s:9:"defiantly";i:1950;s:10:"deficiency";i:1951;s:6:"defile";i:1952;s:7:"defiler";i:1953;s:6:"deform";i:1954;s:8:"deformed";i:1955;s:10:"defrauding";i:1956;s:7:"defunct";i:1957;s:4:"defy";i:1958;s:10:"degenerate";i:1959;s:12:"degenerately";i:1960;s:12:"degeneration";i:1961;s:11:"degradation";i:1962;s:7:"degrade";i:1963;s:9:"degrading";i:1964;s:11:"degradingly";i:1965;s:14:"dehumanization";i:1966;s:10:"dehumanize";i:1967;s:5:"deign";i:1968;s:6:"deject";i:1969;s:10:"dejectedly";i:1970;s:9:"dejection";i:1971;s:11:"delinquency";i:1972;s:10:"delinquent";i:1973;s:9:"delirious";i:1974;s:8:"delirium";i:1975;s:6:"delude";i:1976;s:6:"deluge";i:1977;s:8:"delusion";i:1978;s:10:"delusional";i:1979;s:9:"delusions";i:1980;s:6:"demean";i:1981;s:9:"demeaning";i:1982;s:6:"demise";i:1983;s:8:"demolish";i:1984;s:10:"demolisher";i:1985;s:5:"demon";i:1986;s:7:"demonic";i:1987;s:8:"demonize";i:1988;s:10:"demoralize";i:1989;s:12:"demoralizing";i:1990;s:14:"demoralizingly";i:1991;s:6:"denial";i:1992;s:9:"denigrate";i:1993;s:4:"deny";i:1994;s:8:"denounce";i:1995;s:10:"denunciate";i:1996;s:12:"denunciation";i:1997;s:13:"denunciations";i:1998;s:7:"deplete";i:1999;s:10:"deplorable";i:2000;s:10:"deplorably";i:2001;s:7:"deplore";i:2002;s:9:"deploring";i:2003;s:11:"deploringly";i:2004;s:7:"deprave";i:2005;s:10:"depravedly";i:2006;s:9:"deprecate";i:2007;s:7:"depress";i:2008;s:10:"depressing";i:2009;s:12:"depressingly";i:2010;s:10:"depression";i:2011;s:7:"deprive";i:2012;s:6:"deride";i:2013;s:8:"derision";i:2014;s:8:"derisive";i:2015;s:10:"derisively";i:2016;s:12:"derisiveness";i:2017;s:10:"derogatory";i:2018;s:9:"desecrate";i:2019;s:6:"desert";i:2020;s:9:"desertion";i:2021;s:9:"desiccate";i:2022;s:10:"desiccated";i:2023;s:10:"desolately";i:2024;s:10:"desolation";i:2025;s:12:"despairingly";i:2026;s:11:"desperately";i:2027;s:11:"desperation";i:2028;s:10:"despicably";i:2029;s:7:"despise";i:2030;s:7:"despoil";i:2031;s:9:"despoiler";i:2032;s:11:"despondence";i:2033;s:11:"despondency";i:2034;s:10:"despondent";i:2035;s:12:"despondently";i:2036;s:6:"despot";i:2037;s:8:"despotic";i:2038;s:9:"despotism";i:2039;s:15:"destabilisation";i:2040;s:9:"destitute";i:2041;s:11:"destitution";i:2042;s:7:"destroy";i:2043;s:9:"destroyer";i:2044;s:11:"destruction";i:2045;s:9:"desultory";i:2046;s:5:"deter";i:2047;s:11:"deteriorate";i:2048;s:13:"deteriorating";i:2049;s:13:"deterioration";i:2050;s:9:"deterrent";i:2051;s:10:"detestably";i:2052;s:7:"detract";i:2053;s:10:"detraction";i:2054;s:9:"detriment";i:2055;s:11:"detrimental";i:2056;s:9:"devastate";i:2057;s:11:"devastating";i:2058;s:13:"devastatingly";i:2059;s:11:"devastation";i:2060;s:7:"deviate";i:2061;s:9:"deviation";i:2062;s:5:"devil";i:2063;s:8:"devilish";i:2064;s:10:"devilishly";i:2065;s:9:"devilment";i:2066;s:7:"devilry";i:2067;s:7:"devious";i:2068;s:9:"deviously";i:2069;s:11:"deviousness";i:2070;s:8:"diabolic";i:2071;s:10:"diabolical";i:2072;s:12:"diabolically";i:2073;s:13:"diametrically";i:2074;s:8:"diatribe";i:2075;s:9:"diatribes";i:2076;s:8:"dictator";i:2077;s:11:"dictatorial";i:2078;s:6:"differ";i:2079;s:12:"difficulties";i:2080;s:10:"difficulty";i:2081;s:10:"diffidence";i:2082;s:3:"dig";i:2083;s:7:"digress";i:2084;s:11:"dilapidated";i:2085;s:7:"dilemma";i:2086;s:11:"dilly-dally";i:2087;s:3:"dim";i:2088;s:8:"diminish";i:2089;s:11:"diminishing";i:2090;s:3:"din";i:2091;s:5:"dinky";i:2092;s:4:"dire";i:2093;s:6:"direly";i:2094;s:8:"direness";i:2095;s:4:"dirt";i:2096;s:7:"disable";i:2097;s:9:"disaccord";i:2098;s:12:"disadvantage";i:2099;s:13:"disadvantaged";i:2100;s:15:"disadvantageous";i:2101;s:9:"disaffect";i:2102;s:11:"disaffected";i:2103;s:9:"disaffirm";i:2104;s:8:"disagree";i:2105;s:12:"disagreeably";i:2106;s:12:"disagreement";i:2107;s:8:"disallow";i:2108;s:10:"disappoint";i:2109;s:15:"disappointingly";i:2110;s:14:"disappointment";i:2111;s:14:"disapprobation";i:2112;s:11:"disapproval";i:2113;s:10:"disapprove";i:2114;s:12:"disapproving";i:2115;s:6:"disarm";i:2116;s:8:"disarray";i:2117;s:8:"disaster";i:2118;s:10:"disastrous";i:2119;s:12:"disastrously";i:2120;s:7:"disavow";i:2121;s:9:"disavowal";i:2122;s:9:"disbelief";i:2123;s:10:"disbelieve";i:2124;s:11:"disbeliever";i:2125;s:8:"disclaim";i:2126;s:14:"discombobulate";i:2127;s:9:"discomfit";i:2128;s:14:"discomfititure";i:2129;s:10:"discomfort";i:2130;s:10:"discompose";i:2131;s:10:"disconcert";i:2132;s:12:"disconcerted";i:2133;s:13:"disconcerting";i:2134;s:15:"disconcertingly";i:2135;s:12:"disconsolate";i:2136;s:14:"disconsolately";i:2137;s:14:"disconsolation";i:2138;s:12:"discontented";i:2139;s:14:"discontentedly";i:2140;s:13:"discontinuity";i:2141;s:7:"discord";i:2142;s:11:"discordance";i:2143;s:10:"discordant";i:2144;s:14:"discountenance";i:2145;s:10:"discourage";i:2146;s:14:"discouragement";i:2147;s:12:"discouraging";i:2148;s:14:"discouragingly";i:2149;s:12:"discourteous";i:2150;s:14:"discourteously";i:2151;s:9:"discredit";i:2152;s:10:"discrepant";i:2153;s:12:"discriminate";i:2154;s:14:"discrimination";i:2155;s:14:"discriminatory";i:2156;s:12:"disdainfully";i:2157;s:7:"disease";i:2158;s:8:"diseased";i:2159;s:8:"disfavor";i:2160;s:8:"disgrace";i:2161;s:11:"disgraceful";i:2162;s:13:"disgracefully";i:2163;s:10:"disgruntle";i:2164;s:11:"disgustedly";i:2165;s:10:"disgustful";i:2166;s:12:"disgustfully";i:2167;s:10:"disgusting";i:2168;s:12:"disgustingly";i:2169;s:10:"dishearten";i:2170;s:13:"disheartening";i:2171;s:15:"dishearteningly";i:2172;s:11:"dishonestly";i:2173;s:10:"dishonesty";i:2174;s:8:"dishonor";i:2175;s:14:"dishonorablely";i:2176;s:11:"disillusion";i:2177;s:14:"disinclination";i:2178;s:11:"disinclined";i:2179;s:12:"disingenuous";i:2180;s:14:"disingenuously";i:2181;s:12:"disintegrate";i:2182;s:13:"disinterested";i:2183;s:14:"disintegration";i:2184;s:11:"disinterest";i:2185;s:10:"dislocated";i:2186;s:8:"disloyal";i:2187;s:10:"disloyalty";i:2188;s:8:"dismally";i:2189;s:10:"dismalness";i:2190;s:6:"dismay";i:2191;s:9:"dismaying";i:2192;s:11:"dismayingly";i:2193;s:10:"dismissive";i:2194;s:12:"dismissively";i:2195;s:12:"disobedience";i:2196;s:11:"disobedient";i:2197;s:7:"disobey";i:2198;s:6:"disown";i:2199;s:8:"disorder";i:2200;s:10:"disordered";i:2201;s:10:"disorderly";i:2202;s:9:"disorient";i:2203;s:9:"disparage";i:2204;s:11:"disparaging";i:2205;s:13:"disparagingly";i:2206;s:11:"dispensable";i:2207;s:8:"dispirit";i:2208;s:10:"dispirited";i:2209;s:12:"dispiritedly";i:2210;s:11:"dispiriting";i:2211;s:8:"displace";i:2212;s:9:"displaced";i:2213;s:9:"displease";i:2214;s:11:"displeasing";i:2215;s:11:"displeasure";i:2216;s:16:"disproportionate";i:2217;s:8:"disprove";i:2218;s:10:"disputable";i:2219;s:7:"dispute";i:2220;s:8:"disputed";i:2221;s:8:"disquiet";i:2222;s:11:"disquieting";i:2223;s:13:"disquietingly";i:2224;s:11:"disquietude";i:2225;s:9:"disregard";i:2226;s:12:"disregardful";i:2227;s:12:"disreputable";i:2228;s:9:"disrepute";i:2229;s:10:"disrespect";i:2230;s:14:"disrespectable";i:2231;s:16:"disrespectablity";i:2232;s:13:"disrespectful";i:2233;s:15:"disrespectfully";i:2234;s:17:"disrespectfulness";i:2235;s:13:"disrespecting";i:2236;s:7:"disrupt";i:2237;s:10:"disruption";i:2238;s:10:"disruptive";i:2239;s:15:"dissatisfaction";i:2240;s:15:"dissatisfactory";i:2241;s:10:"dissatisfy";i:2242;s:13:"dissatisfying";i:2243;s:9:"dissemble";i:2244;s:10:"dissembler";i:2245;s:10:"dissension";i:2246;s:7:"dissent";i:2247;s:9:"dissenter";i:2248;s:10:"dissention";i:2249;s:10:"disservice";i:2250;s:10:"dissidence";i:2251;s:9:"dissident";i:2252;s:10:"dissidents";i:2253;s:9:"dissocial";i:2254;s:9:"dissolute";i:2255;s:11:"dissolution";i:2256;s:10:"dissonance";i:2257;s:9:"dissonant";i:2258;s:11:"dissonantly";i:2259;s:8:"dissuade";i:2260;s:10:"dissuasive";i:2261;s:8:"distaste";i:2262;s:11:"distasteful";i:2263;s:13:"distastefully";i:2264;s:7:"distort";i:2265;s:10:"distortion";i:2266;s:8:"distract";i:2267;s:11:"distracting";i:2268;s:11:"distraction";i:2269;s:12:"distraughtly";i:2270;s:14:"distraughtness";i:2271;s:8:"distress";i:2272;s:11:"distressing";i:2273;s:13:"distressingly";i:2274;s:8:"distrust";i:2275;s:11:"distrustful";i:2276;s:11:"distrusting";i:2277;s:7:"disturb";i:2278;s:13:"disturbed-let";i:2279;s:10:"disturbing";i:2280;s:12:"disturbingly";i:2281;s:8:"disunity";i:2282;s:8:"disvalue";i:2283;s:9:"divergent";i:2284;s:6:"divide";i:2285;s:7:"divided";i:2286;s:8:"division";i:2287;s:8:"divisive";i:2288;s:10:"divisively";i:2289;s:12:"divisiveness";i:2290;s:7:"divorce";i:2291;s:8:"divorced";i:2292;s:7:"dizzing";i:2293;s:9:"dizzingly";i:2294;s:9:"doddering";i:2295;s:6:"dodgey";i:2296;s:6:"dogged";i:2297;s:8:"doggedly";i:2298;s:8:"dogmatic";i:2299;s:8:"doldrums";i:2300;s:9:"dominance";i:2301;s:8:"dominate";i:2302;s:10:"domination";i:2303;s:8:"domineer";i:2304;s:11:"domineering";i:2305;s:4:"doom";i:2306;s:8:"doomsday";i:2307;s:4:"dope";i:2308;s:5:"doubt";i:2309;s:10:"doubtfully";i:2310;s:6:"doubts";i:2311;s:8:"downbeat";i:2312;s:8:"downcast";i:2313;s:6:"downer";i:2314;s:8:"downfall";i:2315;s:10:"downfallen";i:2316;s:9:"downgrade";i:2317;s:13:"downheartedly";i:2318;s:8:"downside";i:2319;s:4:"drab";i:2320;s:9:"draconian";i:2321;s:8:"draconic";i:2322;s:6:"dragon";i:2323;s:7:"dragons";i:2324;s:7:"dragoon";i:2325;s:5:"drain";i:2326;s:5:"drama";i:2327;s:7:"drastic";i:2328;s:11:"drastically";i:2329;s:10:"dreadfully";i:2330;s:12:"dreadfulness";i:2331;s:6:"drones";i:2332;s:5:"droop";i:2333;s:7:"drought";i:2334;s:8:"drowning";i:2335;s:8:"drunkard";i:2336;s:7:"drunken";i:2337;s:7:"dubious";i:2338;s:9:"dubiously";i:2339;s:9:"dubitable";i:2340;s:3:"dud";i:2341;s:4:"dull";i:2342;s:7:"dullard";i:2343;s:9:"dumbfound";i:2344;s:11:"dumbfounded";i:2345;s:5:"dummy";i:2346;s:4:"dump";i:2347;s:5:"dunce";i:2348;s:7:"dungeon";i:2349;s:8:"dungeons";i:2350;s:4:"dupe";i:2351;s:5:"dusty";i:2352;s:7:"dwindle";i:2353;s:9:"dwindling";i:2354;s:5:"dying";i:2355;s:12:"earsplitting";i:2356;s:9:"eccentric";i:2357;s:12:"eccentricity";i:2358;s:6:"effigy";i:2359;s:10:"effrontery";i:2360;s:3:"ego";i:2361;s:8:"egomania";i:2362;s:7:"egotism";i:2363;s:13:"egotistically";i:2364;s:9:"egregious";i:2365;s:11:"egregiously";i:2366;s:9:"ejaculate";i:2367;s:15:"election-rigger";i:2368;s:9:"eliminate";i:2369;s:11:"elimination";i:2370;s:9:"emaciated";i:2371;s:10:"emasculate";i:2372;s:9:"embarrass";i:2373;s:12:"embarrassing";i:2374;s:14:"embarrassingly";i:2375;s:13:"embarrassment";i:2376;s:9:"embattled";i:2377;s:7:"embroil";i:2378;s:9:"embroiled";i:2379;s:11:"embroilment";i:2380;s:9:"empathize";i:2381;s:7:"empathy";i:2382;s:8:"emphatic";i:2383;s:12:"emphatically";i:2384;s:9:"emptiness";i:2385;s:8:"encroach";i:2386;s:12:"encroachment";i:2387;s:8:"endanger";i:2388;s:7:"endless";i:2389;s:7:"enemies";i:2390;s:5:"enemy";i:2391;s:8:"enervate";i:2392;s:8:"enfeeble";i:2393;s:7:"enflame";i:2394;s:6:"engulf";i:2395;s:6:"enjoin";i:2396;s:6:"enmity";i:2397;s:10:"enormities";i:2398;s:8:"enormity";i:2399;s:8:"enormous";i:2400;s:10:"enormously";i:2401;s:6:"enrage";i:2402;s:7:"enslave";i:2403;s:8:"entangle";i:2404;s:12:"entanglement";i:2405;s:6:"entrap";i:2406;s:10:"entrapment";i:2407;s:7:"envious";i:2408;s:9:"enviously";i:2409;s:11:"enviousness";i:2410;s:4:"envy";i:2411;s:8:"epidemic";i:2412;s:9:"equivocal";i:2413;s:9:"eradicate";i:2414;s:5:"erase";i:2415;s:5:"erode";i:2416;s:7:"erosion";i:2417;s:3:"err";i:2418;s:6:"errant";i:2419;s:7:"erratic";i:2420;s:11:"erratically";i:2421;s:9:"erroneous";i:2422;s:11:"erroneously";i:2423;s:5:"error";i:2424;s:8:"escapade";i:2425;s:6:"eschew";i:2426;s:8:"esoteric";i:2427;s:9:"estranged";i:2428;s:7:"eternal";i:2429;s:5:"evade";i:2430;s:7:"evasion";i:2431;s:4:"evil";i:2432;s:8:"evildoer";i:2433;s:5:"evils";i:2434;s:10:"eviscerate";i:2435;s:10:"exacerbate";i:2436;s:8:"exacting";i:2437;s:10:"exaggerate";i:2438;s:12:"exaggeration";i:2439;s:10:"exasperate";i:2440;s:12:"exasperation";i:2441;s:12:"exasperating";i:2442;s:14:"exasperatingly";i:2443;s:11:"excessively";i:2444;s:7:"exclaim";i:2445;s:7:"exclude";i:2446;s:9:"exclusion";i:2447;s:9:"excoriate";i:2448;s:12:"excruciating";i:2449;s:14:"excruciatingly";i:2450;s:6:"excuse";i:2451;s:7:"excuses";i:2452;s:8:"execrate";i:2453;s:7:"exhaust";i:2454;s:10:"exhaustion";i:2455;s:6:"exhort";i:2456;s:5:"exile";i:2457;s:10:"exorbitant";i:2458;s:14:"exorbitantance";i:2459;s:12:"exorbitantly";i:2460;s:9:"expedient";i:2461;s:12:"expediencies";i:2462;s:5:"expel";i:2463;s:9:"expensive";i:2464;s:6:"expire";i:2465;s:7:"explode";i:2466;s:7:"exploit";i:2467;s:12:"exploitation";i:2468;s:6:"expose";i:2469;s:7:"exposed";i:2470;s:9:"explosive";i:2471;s:11:"expropriate";i:2472;s:13:"expropriation";i:2473;s:7:"expulse";i:2474;s:7:"expunge";i:2475;s:11:"exterminate";i:2476;s:13:"extermination";i:2477;s:10:"extinguish";i:2478;s:6:"extort";i:2479;s:9:"extortion";i:2480;s:10:"extraneous";i:2481;s:12:"extravagance";i:2482;s:11:"extravagant";i:2483;s:13:"extravagantly";i:2484;s:7:"extreme";i:2485;s:9:"extremely";i:2486;s:9:"extremism";i:2487;s:9:"extremist";i:2488;s:10:"extremists";i:2489;s:9:"fabricate";i:2490;s:11:"fabrication";i:2491;s:9:"facetious";i:2492;s:11:"facetiously";i:2493;s:6:"fading";i:2494;s:4:"fail";i:2495;s:7:"failing";i:2496;s:7:"failure";i:2497;s:8:"failures";i:2498;s:5:"faint";i:2499;s:12:"fainthearted";i:2500;s:9:"faithless";i:2501;s:4:"fall";i:2502;s:9:"fallacies";i:2503;s:10:"fallacious";i:2504;s:12:"fallaciously";i:2505;s:14:"fallaciousness";i:2506;s:7:"fallacy";i:2507;s:7:"fallout";i:2508;s:9:"falsehood";i:2509;s:7:"falsely";i:2510;s:7:"falsify";i:2511;s:6:"falter";i:2512;s:6:"famine";i:2513;s:8:"famished";i:2514;s:7:"fanatic";i:2515;s:9:"fanatical";i:2516;s:11:"fanatically";i:2517;s:10:"fanaticism";i:2518;s:8:"fanatics";i:2519;s:8:"fanciful";i:2520;s:11:"far-fetched";i:2521;s:10:"farfetched";i:2522;s:5:"farce";i:2523;s:8:"farcical";i:2524;s:24:"farcical-yet-provocative";i:2525;s:10:"farcically";i:2526;s:7:"fascism";i:2527;s:7:"fascist";i:2528;s:10:"fastidious";i:2529;s:12:"fastidiously";i:2530;s:8:"fastuous";i:2531;s:3:"fat";i:2532;s:5:"fatal";i:2533;s:10:"fatalistic";i:2534;s:14:"fatalistically";i:2535;s:7:"fatally";i:2536;s:7:"fateful";i:2537;s:9:"fatefully";i:2538;s:10:"fathomless";i:2539;s:7:"fatigue";i:2540;s:5:"fatty";i:2541;s:7:"fatuity";i:2542;s:7:"fatuous";i:2543;s:9:"fatuously";i:2544;s:5:"fault";i:2545;s:6:"faulty";i:2546;s:9:"fawningly";i:2547;s:4:"faze";i:2548;s:9:"fearfully";i:2549;s:5:"fears";i:2550;s:8:"fearsome";i:2551;s:8:"feckless";i:2552;s:6:"feeble";i:2553;s:8:"feeblely";i:2554;s:12:"feebleminded";i:2555;s:5:"feign";i:2556;s:5:"feint";i:2557;s:4:"fell";i:2558;s:5:"felon";i:2559;s:9:"felonious";i:2560;s:9:"ferocious";i:2561;s:11:"ferociously";i:2562;s:8:"ferocity";i:2563;s:8:"feverish";i:2564;s:5:"fetid";i:2565;s:5:"fever";i:2566;s:6:"fiasco";i:2567;s:4:"fiat";i:2568;s:3:"fib";i:2569;s:6:"fibber";i:2570;s:6:"fickle";i:2571;s:7:"fiction";i:2572;s:9:"fictional";i:2573;s:10:"fictitious";i:2574;s:6:"fidget";i:2575;s:7:"fidgety";i:2576;s:5:"fiend";i:2577;s:8:"fiendish";i:2578;s:6:"fierce";i:2579;s:5:"fight";i:2580;s:10:"figurehead";i:2581;s:5:"filth";i:2582;s:6:"filthy";i:2583;s:7:"finagle";i:2584;s:8:"fissures";i:2585;s:4:"fist";i:2586;s:11:"flabbergast";i:2587;s:13:"flabbergasted";i:2588;s:8:"flagging";i:2589;s:8:"flagrant";i:2590;s:10:"flagrantly";i:2591;s:4:"flak";i:2592;s:5:"flake";i:2593;s:6:"flakey";i:2594;s:5:"flaky";i:2595;s:5:"flash";i:2596;s:6:"flashy";i:2597;s:8:"flat-out";i:2598;s:6:"flaunt";i:2599;s:4:"flaw";i:2600;s:5:"flaws";i:2601;s:5:"fleer";i:2602;s:8:"fleeting";i:2603;s:7:"flighty";i:2604;s:8:"flimflam";i:2605;s:6:"flimsy";i:2606;s:5:"flirt";i:2607;s:6:"flirty";i:2608;s:7:"floored";i:2609;s:8:"flounder";i:2610;s:11:"floundering";i:2611;s:5:"flout";i:2612;s:7:"fluster";i:2613;s:3:"foe";i:2614;s:4:"fool";i:2615;s:9:"foolhardy";i:2616;s:7:"foolish";i:2617;s:9:"foolishly";i:2618;s:11:"foolishness";i:2619;s:6:"forbid";i:2620;s:9:"forbidden";i:2621;s:10:"forbidding";i:2622;s:5:"force";i:2623;s:8:"forceful";i:2624;s:10:"foreboding";i:2625;s:12:"forebodingly";i:2626;s:7:"forfeit";i:2627;s:6:"forged";i:2628;s:6:"forget";i:2629;s:11:"forgetfully";i:2630;s:13:"forgetfulness";i:2631;s:7:"forlorn";i:2632;s:9:"forlornly";i:2633;s:10:"formidable";i:2634;s:7:"forsake";i:2635;s:8:"forsaken";i:2636;s:8:"forswear";i:2637;s:4:"foul";i:2638;s:6:"foully";i:2639;s:8:"foulness";i:2640;s:9:"fractious";i:2641;s:11:"fractiously";i:2642;s:8:"fracture";i:2643;s:10:"fragmented";i:2644;s:5:"frail";i:2645;s:7:"frantic";i:2646;s:11:"frantically";i:2647;s:9:"franticly";i:2648;s:10:"fraternize";i:2649;s:5:"fraud";i:2650;s:10:"fraudulent";i:2651;s:7:"fraught";i:2652;s:5:"freak";i:2653;s:8:"freakish";i:2654;s:10:"freakishly";i:2655;s:7:"frazzle";i:2656;s:8:"frazzled";i:2657;s:8:"frenetic";i:2658;s:12:"frenetically";i:2659;s:8:"frenzied";i:2660;s:6:"frenzy";i:2661;s:4:"fret";i:2662;s:7:"fretful";i:2663;s:8:"friction";i:2664;s:9:"frictions";i:2665;s:7:"friggin";i:2666;s:6:"fright";i:2667;s:8:"frighten";i:2668;s:11:"frightening";i:2669;s:13:"frighteningly";i:2670;s:9:"frightful";i:2671;s:11:"frightfully";i:2672;s:9:"frivolous";i:2673;s:5:"frown";i:2674;s:6:"frozen";i:2675;s:9:"fruitless";i:2676;s:11:"fruitlessly";i:2677;s:6:"fumble";i:2678;s:9:"frustrate";i:2679;s:11:"frustrating";i:2680;s:13:"frustratingly";i:2681;s:11:"frustration";i:2682;s:5:"fudge";i:2683;s:8:"fugitive";i:2684;s:10:"full-blown";i:2685;s:9:"fulminate";i:2686;s:4:"fume";i:2687;s:14:"fundamentalism";i:2688;s:9:"furiously";i:2689;s:5:"furor";i:2690;s:4:"fury";i:2691;s:4:"fuss";i:2692;s:9:"fustigate";i:2693;s:5:"fussy";i:2694;s:5:"fusty";i:2695;s:6:"futile";i:2696;s:8:"futilely";i:2697;s:8:"futility";i:2698;s:5:"fuzzy";i:2699;s:6:"gabble";i:2700;s:4:"gaff";i:2701;s:5:"gaffe";i:2702;s:7:"gainsay";i:2703;s:9:"gainsayer";i:2704;s:4:"gaga";i:2705;s:6:"gaggle";i:2706;s:4:"gall";i:2707;s:7:"galling";i:2708;s:9:"gallingly";i:2709;s:6:"gamble";i:2710;s:4:"game";i:2711;s:4:"gape";i:2712;s:7:"garbage";i:2713;s:6:"garish";i:2714;s:4:"gasp";i:2715;s:6:"gauche";i:2716;s:5:"gaudy";i:2717;s:4:"gawk";i:2718;s:5:"gawky";i:2719;s:6:"geezer";i:2720;s:8:"genocide";i:2721;s:8:"get-rich";i:2722;s:7:"ghastly";i:2723;s:6:"ghetto";i:2724;s:6:"gibber";i:2725;s:9:"gibberish";i:2726;s:4:"gibe";i:2727;s:5:"glare";i:2728;s:7:"glaring";i:2729;s:9:"glaringly";i:2730;s:4:"glib";i:2731;s:6:"glibly";i:2732;s:6:"glitch";i:2733;s:10:"gloatingly";i:2734;s:5:"gloom";i:2735;s:5:"gloss";i:2736;s:6:"glower";i:2737;s:4:"glut";i:2738;s:7:"gnawing";i:2739;s:4:"goad";i:2740;s:7:"goading";i:2741;s:9:"god-awful";i:2742;s:6:"goddam";i:2743;s:7:"goddamn";i:2744;s:4:"goof";i:2745;s:6:"gossip";i:2746;s:9:"graceless";i:2747;s:11:"gracelessly";i:2748;s:5:"graft";i:2749;s:9:"grandiose";i:2750;s:7:"grapple";i:2751;s:5:"grate";i:2752;s:7:"grating";i:2753;s:10:"gratuitous";i:2754;s:12:"gratuitously";i:2755;s:5:"grave";i:2756;s:7:"gravely";i:2757;s:5:"greed";i:2758;s:6:"greedy";i:2759;s:9:"grievance";i:2760;s:10:"grievances";i:2761;s:6:"grieve";i:2762;s:8:"grieving";i:2763;s:8:"grievous";i:2764;s:10:"grievously";i:2765;s:5:"grill";i:2766;s:7:"grimace";i:2767;s:5:"grind";i:2768;s:5:"gripe";i:2769;s:6:"grisly";i:2770;s:6:"gritty";i:2771;s:7:"grossly";i:2772;s:6:"grouch";i:2773;s:10:"groundless";i:2774;s:6:"grouse";i:2775;s:5:"growl";i:2776;s:6:"grudge";i:2777;s:7:"grudges";i:2778;s:8:"grudging";i:2779;s:10:"grudgingly";i:2780;s:8:"gruesome";i:2781;s:10:"gruesomely";i:2782;s:5:"gruff";i:2783;s:7:"grumble";i:2784;s:5:"guile";i:2785;s:5:"guilt";i:2786;s:8:"guiltily";i:2787;s:8:"gullible";i:2788;s:7:"haggard";i:2789;s:6:"haggle";i:2790;s:11:"halfhearted";i:2791;s:13:"halfheartedly";i:2792;s:11:"hallucinate";i:2793;s:13:"hallucination";i:2794;s:6:"hamper";i:2795;s:9:"hamstring";i:2796;s:9:"hamstrung";i:2797;s:11:"handicapped";i:2798;s:7:"hapless";i:2799;s:9:"haphazard";i:2800;s:8:"harangue";i:2801;s:6:"harass";i:2802;s:10:"harassment";i:2803;s:9:"harboring";i:2804;s:7:"harbors";i:2805;s:4:"hard";i:2806;s:8:"hard-hit";i:2807;s:9:"hard-line";i:2808;s:10:"hard-liner";i:2809;s:8:"hardball";i:2810;s:6:"harden";i:2811;s:8:"hardened";i:2812;s:10:"hardheaded";i:2813;s:11:"hardhearted";i:2814;s:9:"hardliner";i:2815;s:10:"hardliners";i:2816;s:8:"hardship";i:2817;s:9:"hardships";i:2818;s:4:"harm";i:2819;s:7:"harmful";i:2820;s:5:"harms";i:2821;s:5:"harpy";i:2822;s:8:"harridan";i:2823;s:7:"harried";i:2824;s:6:"harrow";i:2825;s:5:"harsh";i:2826;s:7:"harshly";i:2827;s:6:"hassle";i:2828;s:5:"haste";i:2829;s:5:"hasty";i:2830;s:5:"hater";i:2831;s:7:"hateful";i:2832;s:9:"hatefully";i:2833;s:11:"hatefulness";i:2834;s:9:"haughtily";i:2835;s:7:"haughty";i:2836;s:6:"hatred";i:2837;s:5:"haunt";i:2838;s:8:"haunting";i:2839;s:5:"havoc";i:2840;s:7:"hawkish";i:2841;s:6:"hazard";i:2842;s:9:"hazardous";i:2843;s:4:"hazy";i:2844;s:8:"headache";i:2845;s:9:"headaches";i:2846;s:10:"heartbreak";i:2847;s:12:"heartbreaker";i:2848;s:13:"heartbreaking";i:2849;s:15:"heartbreakingly";i:2850;s:9:"heartless";i:2851;s:12:"heartrending";i:2852;s:7:"heathen";i:2853;s:7:"heavily";i:2854;s:12:"heavy-handed";i:2855;s:12:"heavyhearted";i:2856;s:4:"heck";i:2857;s:6:"heckle";i:2858;s:6:"hectic";i:2859;s:5:"hedge";i:2860;s:10:"hedonistic";i:2861;s:8:"heedless";i:2862;s:10:"hegemonism";i:2863;s:12:"hegemonistic";i:2864;s:8:"hegemony";i:2865;s:7:"heinous";i:2866;s:4:"hell";i:2867;s:9:"hell-bent";i:2868;s:7:"hellion";i:2869;s:8:"helpless";i:2870;s:10:"helplessly";i:2871;s:12:"helplessness";i:2872;s:6:"heresy";i:2873;s:7:"heretic";i:2874;s:9:"heretical";i:2875;s:8:"hesitant";i:2876;s:7:"hideous";i:2877;s:9:"hideously";i:2878;s:11:"hideousness";i:2879;s:6:"hinder";i:2880;s:9:"hindrance";i:2881;s:5:"hoard";i:2882;s:4:"hoax";i:2883;s:6:"hobble";i:2884;s:4:"hole";i:2885;s:6:"hollow";i:2886;s:8:"hoodwink";i:2887;s:8:"hopeless";i:2888;s:10:"hopelessly";i:2889;s:12:"hopelessness";i:2890;s:5:"horde";i:2891;s:10:"horrendous";i:2892;s:12:"horrendously";i:2893;s:8:"horrible";i:2894;s:8:"horribly";i:2895;s:6:"horrid";i:2896;s:8:"horrific";i:2897;s:12:"horrifically";i:2898;s:7:"horrify";i:2899;s:10:"horrifying";i:2900;s:12:"horrifyingly";i:2901;s:6:"horror";i:2902;s:7:"horrors";i:2903;s:7:"hostage";i:2904;s:7:"hostile";i:2905;s:11:"hostilities";i:2906;s:9:"hostility";i:2907;s:7:"hothead";i:2908;s:9:"hotheaded";i:2909;s:7:"hotbeds";i:2910;s:8:"hothouse";i:2911;s:6:"hubris";i:2912;s:8:"huckster";i:2913;s:8:"humbling";i:2914;s:9:"humiliate";i:2915;s:11:"humiliating";i:2916;s:11:"humiliation";i:2917;s:6:"hunger";i:2918;s:6:"hungry";i:2919;s:4:"hurt";i:2920;s:7:"hurtful";i:2921;s:7:"hustler";i:2922;s:9:"hypocrisy";i:2923;s:9:"hypocrite";i:2924;s:10:"hypocrites";i:2925;s:12:"hypocritical";i:2926;s:14:"hypocritically";i:2927;s:8:"hysteria";i:2928;s:8:"hysteric";i:2929;s:10:"hysterical";i:2930;s:12:"hysterically";i:2931;s:9:"hysterics";i:2932;s:3:"icy";i:2933;s:8:"idiocies";i:2934;s:6:"idiocy";i:2935;s:5:"idiot";i:2936;s:11:"idiotically";i:2937;s:6:"idiots";i:2938;s:4:"idle";i:2939;s:7:"ignoble";i:2940;s:11:"ignominious";i:2941;s:13:"ignominiously";i:2942;s:8:"ignominy";i:2943;s:6:"ignore";i:2944;s:9:"ignorance";i:2945;s:11:"ill-advised";i:2946;s:13:"ill-conceived";i:2947;s:9:"ill-fated";i:2948;s:11:"ill-favored";i:2949;s:12:"ill-mannered";i:2950;s:11:"ill-natured";i:2951;s:10:"ill-sorted";i:2952;s:12:"ill-tempered";i:2953;s:11:"ill-treated";i:2954;s:13:"ill-treatment";i:2955;s:9:"ill-usage";i:2956;s:8:"ill-used";i:2957;s:7:"illegal";i:2958;s:9:"illegally";i:2959;s:12:"illegitimate";i:2960;s:7:"illicit";i:2961;s:8:"illiquid";i:2962;s:10:"illiterate";i:2963;s:7:"illness";i:2964;s:7:"illogic";i:2965;s:9:"illogical";i:2966;s:11:"illogically";i:2967;s:8:"illusion";i:2968;s:9:"illusions";i:2969;s:8:"illusory";i:2970;s:9:"imaginary";i:2971;s:9:"imbalance";i:2972;s:8:"imbecile";i:2973;s:9:"imbroglio";i:2974;s:10:"immaterial";i:2975;s:8:"immature";i:2976;s:9:"imminence";i:2977;s:8:"imminent";i:2978;s:10:"imminently";i:2979;s:11:"immobilized";i:2980;s:10:"immoderate";i:2981;s:12:"immoderately";i:2982;s:8:"immodest";i:2983;s:7:"immoral";i:2984;s:10:"immorality";i:2985;s:9:"immorally";i:2986;s:9:"immovable";i:2987;s:6:"impair";i:2988;s:8:"impaired";i:2989;s:7:"impasse";i:2990;s:9:"impassive";i:2991;s:10:"impatience";i:2992;s:9:"impatient";i:2993;s:11:"impatiently";i:2994;s:7:"impeach";i:2995;s:6:"impede";i:2996;s:9:"impedance";i:2997;s:10:"impediment";i:2998;s:9:"impending";i:2999;s:10:"impenitent";i:3000;s:9:"imperfect";i:3001;s:11:"imperfectly";i:3002;s:11:"imperialist";i:3003;s:7:"imperil";i:3004;s:9:"imperious";i:3005;s:11:"imperiously";i:3006;s:13:"impermissible";i:3007;s:10:"impersonal";i:3008;s:11:"impertinent";i:3009;s:9:"impetuous";i:3010;s:11:"impetuously";i:3011;s:7:"impiety";i:3012;s:7:"impinge";i:3013;s:7:"impious";i:3014;s:10:"implacable";i:3015;s:11:"implausible";i:3016;s:11:"implausibly";i:3017;s:9:"implicate";i:3018;s:11:"implication";i:3019;s:7:"implode";i:3020;s:8:"impolite";i:3021;s:10:"impolitely";i:3022;s:9:"impolitic";i:3023;s:11:"importunate";i:3024;s:9:"importune";i:3025;s:6:"impose";i:3026;s:8:"imposers";i:3027;s:8:"imposing";i:3028;s:10:"imposition";i:3029;s:10:"impossible";i:3030;s:12:"impossiblity";i:3031;s:10:"impossibly";i:3032;s:10:"impoverish";i:3033;s:12:"impoverished";i:3034;s:11:"impractical";i:3035;s:9:"imprecate";i:3036;s:9:"imprecise";i:3037;s:11:"imprecisely";i:3038;s:11:"imprecision";i:3039;s:8:"imprison";i:3040;s:12:"imprisonment";i:3041;s:13:"improbability";i:3042;s:10:"improbable";i:3043;s:10:"improbably";i:3044;s:8:"improper";i:3045;s:10:"improperly";i:3046;s:11:"impropriety";i:3047;s:10:"imprudence";i:3048;s:9:"imprudent";i:3049;s:9:"impudence";i:3050;s:8:"impudent";i:3051;s:10:"impudently";i:3052;s:6:"impugn";i:3053;s:11:"impulsively";i:3054;s:8:"impunity";i:3055;s:6:"impure";i:3056;s:8:"impurity";i:3057;s:9:"inability";i:3058;s:12:"inaccessible";i:3059;s:10:"inaccuracy";i:3060;s:12:"inaccuracies";i:3061;s:10:"inaccurate";i:3062;s:12:"inaccurately";i:3063;s:8:"inaction";i:3064;s:10:"inadequacy";i:3065;s:12:"inadequately";i:3066;s:10:"inadverent";i:3067;s:12:"inadverently";i:3068;s:11:"inadvisable";i:3069;s:11:"inadvisably";i:3070;s:5:"inane";i:3071;s:7:"inanely";i:3072;s:13:"inappropriate";i:3073;s:15:"inappropriately";i:3074;s:5:"inapt";i:3075;s:10:"inaptitude";i:3076;s:12:"inarticulate";i:3077;s:11:"inattentive";i:3078;s:9:"incapably";i:3079;s:10:"incautious";i:3080;s:10:"incendiary";i:3081;s:7:"incense";i:3082;s:9:"incessant";i:3083;s:11:"incessantly";i:3084;s:6:"incite";i:3085;s:10:"incitement";i:3086;s:10:"incivility";i:3087;s:9:"inclement";i:3088;s:11:"incognizant";i:3089;s:11:"incoherence";i:3090;s:10:"incoherent";i:3091;s:12:"incoherently";i:3092;s:14:"incommensurate";i:3093;s:12:"incomparable";i:3094;s:12:"incomparably";i:3095;s:15:"incompatibility";i:3096;s:12:"incompetence";i:3097;s:13:"incompetently";i:3098;s:11:"incompliant";i:3099;s:16:"incomprehensible";i:3100;s:15:"incomprehension";i:3101;s:13:"inconceivable";i:3102;s:13:"inconceivably";i:3103;s:12:"inconclusive";i:3104;s:11:"incongruous";i:3105;s:13:"incongruously";i:3106;s:12:"inconsequent";i:3107;s:14:"inconsequently";i:3108;s:15:"inconsequential";i:3109;s:17:"inconsequentially";i:3110;s:13:"inconsiderate";i:3111;s:15:"inconsiderately";i:3112;s:13:"inconsistence";i:3113;s:15:"inconsistencies";i:3114;s:13:"inconsistency";i:3115;s:12:"inconsistent";i:3116;s:12:"inconsolable";i:3117;s:12:"inconsolably";i:3118;s:10:"inconstant";i:3119;s:13:"inconvenience";i:3120;s:12:"inconvenient";i:3121;s:14:"inconveniently";i:3122;s:11:"incorrectly";i:3123;s:12:"incorrigible";i:3124;s:12:"incorrigibly";i:3125;s:11:"incredulous";i:3126;s:13:"incredulously";i:3127;s:9:"inculcate";i:3128;s:9:"indecency";i:3129;s:8:"indecent";i:3130;s:10:"indecently";i:3131;s:10:"indecision";i:3132;s:12:"indecisively";i:3133;s:9:"indecorum";i:3134;s:12:"indefensible";i:3135;s:10:"indefinite";i:3136;s:12:"indefinitely";i:3137;s:10:"indelicate";i:3138;s:14:"indeterminable";i:3139;s:14:"indeterminably";i:3140;s:13:"indeterminate";i:3141;s:12:"indifference";i:3142;s:8:"indigent";i:3143;s:9:"indignant";i:3144;s:11:"indignantly";i:3145;s:11:"indignation";i:3146;s:9:"indignity";i:3147;s:13:"indiscernible";i:3148;s:10:"indiscreet";i:3149;s:12:"indiscreetly";i:3150;s:12:"indiscretion";i:3151;s:14:"indiscriminate";i:3152;s:16:"indiscriminating";i:3153;s:16:"indiscriminately";i:3154;s:10:"indisposed";i:3155;s:10:"indistinct";i:3156;s:13:"indistinctive";i:3157;s:12:"indoctrinate";i:3158;s:14:"indoctrination";i:3159;s:8:"indolent";i:3160;s:7:"indulge";i:3161;s:13:"ineffectively";i:3162;s:15:"ineffectiveness";i:3163;s:11:"ineffectual";i:3164;s:13:"ineffectually";i:3165;s:15:"ineffectualness";i:3166;s:13:"inefficacious";i:3167;s:10:"inefficacy";i:3168;s:12:"inefficiency";i:3169;s:13:"inefficiently";i:3170;s:10:"ineligible";i:3171;s:10:"inelegance";i:3172;s:9:"inelegant";i:3173;s:10:"ineloquent";i:3174;s:12:"ineloquently";i:3175;s:5:"inept";i:3176;s:10:"ineptitude";i:3177;s:7:"ineptly";i:3178;s:12:"inequalities";i:3179;s:10:"inequality";i:3180;s:11:"inequitable";i:3181;s:11:"inequitably";i:3182;s:10:"inequities";i:3183;s:7:"inertia";i:3184;s:11:"inescapable";i:3185;s:11:"inescapably";i:3186;s:11:"inessential";i:3187;s:10:"inevitable";i:3188;s:10:"inevitably";i:3189;s:7:"inexact";i:3190;s:11:"inexcusable";i:3191;s:11:"inexcusably";i:3192;s:10:"inexorable";i:3193;s:10:"inexorably";i:3194;s:12:"inexperience";i:3195;s:13:"inexperienced";i:3196;s:8:"inexpert";i:3197;s:10:"inexpertly";i:3198;s:10:"inexpiable";i:3199;s:13:"inexplainable";i:3200;s:12:"inexplicable";i:3201;s:12:"inextricable";i:3202;s:12:"inextricably";i:3203;s:8:"infamous";i:3204;s:10:"infamously";i:3205;s:6:"infamy";i:3206;s:8:"infected";i:3207;s:11:"inferiority";i:3208;s:8:"infernal";i:3209;s:6:"infest";i:3210;s:8:"infested";i:3211;s:7:"infidel";i:3212;s:8:"infidels";i:3213;s:11:"infiltrator";i:3214;s:12:"infiltrators";i:3215;s:6:"infirm";i:3216;s:7:"inflame";i:3217;s:12:"inflammatory";i:3218;s:8:"inflated";i:3219;s:12:"inflationary";i:3220;s:10:"inflexible";i:3221;s:7:"inflict";i:3222;s:10:"infraction";i:3223;s:8:"infringe";i:3224;s:12:"infringement";i:3225;s:13:"infringements";i:3226;s:9:"infuriate";i:3227;s:11:"infuriating";i:3228;s:13:"infuriatingly";i:3229;s:10:"inglorious";i:3230;s:7:"ingrate";i:3231;s:11:"ingratitude";i:3232;s:7:"inhibit";i:3233;s:10:"inhibition";i:3234;s:12:"inhospitable";i:3235;s:13:"inhospitality";i:3236;s:7:"inhuman";i:3237;s:10:"inhumanity";i:3238;s:8:"inimical";i:3239;s:10:"inimically";i:3240;s:10:"iniquitous";i:3241;s:8:"iniquity";i:3242;s:11:"injudicious";i:3243;s:6:"injure";i:3244;s:9:"injurious";i:3245;s:6:"injury";i:3246;s:9:"injustice";i:3247;s:10:"injustices";i:3248;s:8:"innuendo";i:3249;s:11:"inopportune";i:3250;s:10:"inordinate";i:3251;s:12:"inordinately";i:3252;s:8:"insanely";i:3253;s:8:"insanity";i:3254;s:10:"insatiable";i:3255;s:10:"insecurity";i:3256;s:10:"insensible";i:3257;s:11:"insensitive";i:3258;s:13:"insensitively";i:3259;s:13:"insensitivity";i:3260;s:9:"insidious";i:3261;s:11:"insidiously";i:3262;s:14:"insignificance";i:3263;s:15:"insignificantly";i:3264;s:11:"insincerely";i:3265;s:11:"insincerity";i:3266;s:9:"insinuate";i:3267;s:11:"insinuating";i:3268;s:11:"insinuation";i:3269;s:10:"insociable";i:3270;s:9:"isolation";i:3271;s:9:"insolence";i:3272;s:8:"insolent";i:3273;s:10:"insolently";i:3274;s:9:"insolvent";i:3275;s:11:"insouciance";i:3276;s:11:"instability";i:3277;s:8:"instable";i:3278;s:9:"instigate";i:3279;s:10:"instigator";i:3280;s:11:"instigators";i:3281;s:13:"insubordinate";i:3282;s:13:"insubstantial";i:3283;s:15:"insubstantially";i:3284;s:12:"insufferable";i:3285;s:12:"insufferably";i:3286;s:13:"insufficiency";i:3287;s:14:"insufficiently";i:3288;s:7:"insular";i:3289;s:6:"insult";i:3290;s:9:"insulting";i:3291;s:11:"insultingly";i:3292;s:13:"insupportable";i:3293;s:13:"insupportably";i:3294;s:14:"insurmountable";i:3295;s:14:"insurmountably";i:3296;s:12:"insurrection";i:3297;s:9:"interfere";i:3298;s:12:"interference";i:3299;s:12:"intermittent";i:3300;s:9:"interrupt";i:3301;s:12:"interruption";i:3302;s:10:"intimidate";i:3303;s:12:"intimidating";i:3304;s:14:"intimidatingly";i:3305;s:12:"intimidation";i:3306;s:11:"intolerable";i:3307;s:13:"intolerablely";i:3308;s:11:"intolerance";i:3309;s:10:"intolerant";i:3310;s:10:"intoxicate";i:3311;s:11:"intractable";i:3312;s:13:"intransigence";i:3313;s:12:"intransigent";i:3314;s:7:"intrude";i:3315;s:9:"intrusion";i:3316;s:9:"intrusive";i:3317;s:8:"inundate";i:3318;s:9:"inundated";i:3319;s:7:"invader";i:3320;s:7:"invalid";i:3321;s:10:"invalidate";i:3322;s:10:"invalidity";i:3323;s:8:"invasive";i:3324;s:9:"invective";i:3325;s:8:"inveigle";i:3326;s:9:"invidious";i:3327;s:11:"invidiously";i:3328;s:13:"invidiousness";i:3329;s:13:"involuntarily";i:3330;s:11:"involuntary";i:3331;s:5:"irate";i:3332;s:7:"irately";i:3333;s:3:"ire";i:3334;s:3:"irk";i:3335;s:7:"irksome";i:3336;s:6:"ironic";i:3337;s:7:"ironies";i:3338;s:5:"irony";i:3339;s:13:"irrationality";i:3340;s:12:"irrationally";i:3341;s:14:"irreconcilable";i:3342;s:12:"irredeemable";i:3343;s:12:"irredeemably";i:3344;s:12:"irreformable";i:3345;s:9:"irregular";i:3346;s:12:"irregularity";i:3347;s:11:"irrelevance";i:3348;s:10:"irrelevant";i:3349;s:11:"irreparable";i:3350;s:12:"irreplacible";i:3351;s:13:"irrepressible";i:3352;s:10:"irresolute";i:3353;s:12:"irresolvable";i:3354;s:13:"irresponsible";i:3355;s:13:"irresponsibly";i:3356;s:13:"irretrievable";i:3357;s:11:"irreverence";i:3358;s:10:"irreverent";i:3359;s:12:"irreverently";i:3360;s:12:"irreversible";i:3361;s:9:"irritably";i:3362;s:8:"irritant";i:3363;s:8:"irritate";i:3364;s:10:"irritating";i:3365;s:10:"irritation";i:3366;s:7:"isolate";i:3367;s:4:"itch";i:3368;s:6:"jabber";i:3369;s:3:"jam";i:3370;s:3:"jar";i:3371;s:9:"jaundiced";i:3372;s:9:"jealously";i:3373;s:11:"jealousness";i:3374;s:8:"jealousy";i:3375;s:4:"jeer";i:3376;s:7:"jeering";i:3377;s:9:"jeeringly";i:3378;s:5:"jeers";i:3379;s:10:"jeopardize";i:3380;s:8:"jeopardy";i:3381;s:4:"jerk";i:3382;s:7:"jittery";i:3383;s:7:"jobless";i:3384;s:5:"joker";i:3385;s:4:"jolt";i:3386;s:5:"jumpy";i:3387;s:4:"junk";i:3388;s:5:"junky";i:3389;s:8:"juvenile";i:3390;s:5:"kaput";i:3391;s:4:"kick";i:3392;s:4:"kill";i:3393;s:6:"killer";i:3394;s:7:"killjoy";i:3395;s:5:"knave";i:3396;s:5:"knife";i:3397;s:5:"knock";i:3398;s:4:"kook";i:3399;s:5:"kooky";i:3400;s:4:"lack";i:3401;s:13:"lackadaisical";i:3402;s:6:"lackey";i:3403;s:7:"lackeys";i:3404;s:7:"lacking";i:3405;s:10:"lackluster";i:3406;s:7:"laconic";i:3407;s:3:"lag";i:3408;s:7:"lambast";i:3409;s:8:"lambaste";i:3410;s:4:"lame";i:3411;s:9:"lame-duck";i:3412;s:6:"lament";i:3413;s:10:"lamentable";i:3414;s:10:"lamentably";i:3415;s:7:"languid";i:3416;s:8:"languish";i:3417;s:5:"lanky";i:3418;s:7:"languor";i:3419;s:10:"languorous";i:3420;s:12:"languorously";i:3421;s:5:"lapse";i:3422;s:10:"lascivious";i:3423;s:10:"last-ditch";i:3424;s:5:"laugh";i:3425;s:9:"laughably";i:3426;s:13:"laughingstock";i:3427;s:8:"laughter";i:3428;s:10:"lawbreaker";i:3429;s:11:"lawbreaking";i:3430;s:7:"lawless";i:3431;s:11:"lawlessness";i:3432;s:3:"lax";i:3433;s:4:"leak";i:3434;s:7:"leakage";i:3435;s:5:"leaky";i:3436;s:4:"lech";i:3437;s:6:"lecher";i:3438;s:9:"lecherous";i:3439;s:7:"lechery";i:3440;s:7:"lecture";i:3441;s:5:"leech";i:3442;s:4:"leer";i:3443;s:5:"leery";i:3444;s:12:"left-leaning";i:3445;s:14:"less-developed";i:3446;s:6:"lessen";i:3447;s:6:"lesser";i:3448;s:12:"lesser-known";i:3449;s:5:"letch";i:3450;s:6:"lethal";i:3451;s:9:"lethargic";i:3452;s:8:"lethargy";i:3453;s:4:"lewd";i:3454;s:6:"lewdly";i:3455;s:8:"lewdness";i:3456;s:6:"liable";i:3457;s:9:"liability";i:3458;s:4:"liar";i:3459;s:5:"liars";i:3460;s:10:"licentious";i:3461;s:12:"licentiously";i:3462;s:14:"licentiousness";i:3463;s:3:"lie";i:3464;s:4:"lier";i:3465;s:4:"lies";i:3466;s:16:"life-threatening";i:3467;s:8:"lifeless";i:3468;s:5:"limit";i:3469;s:10:"limitation";i:3470;s:4:"limp";i:3471;s:8:"listless";i:3472;s:9:"litigious";i:3473;s:12:"little-known";i:3474;s:5:"livid";i:3475;s:7:"lividly";i:3476;s:5:"loath";i:3477;s:6:"loathe";i:3478;s:8:"loathing";i:3479;s:7:"loathly";i:3480;s:9:"loathsome";i:3481;s:11:"loathsomely";i:3482;s:4:"lone";i:3483;s:10:"loneliness";i:3484;s:4:"long";i:3485;s:9:"longingly";i:3486;s:8:"loophole";i:3487;s:9:"loopholes";i:3488;s:4:"loot";i:3489;s:4:"lorn";i:3490;s:6:"losing";i:3491;s:4:"lose";i:3492;s:5:"loser";i:3493;s:4:"loss";i:3494;s:8:"lovelorn";i:3495;s:9:"low-rated";i:3496;s:5:"lowly";i:3497;s:9:"ludicrous";i:3498;s:11:"ludicrously";i:3499;s:10:"lugubrious";i:3500;s:8:"lukewarm";i:3501;s:4:"lull";i:3502;s:7:"lunatic";i:3503;s:10:"lunaticism";i:3504;s:5:"lurch";i:3505;s:4:"lure";i:3506;s:5:"lurid";i:3507;s:4:"lurk";i:3508;s:7:"lurking";i:3509;s:5:"lying";i:3510;s:7:"macabre";i:3511;s:6:"madden";i:3512;s:9:"maddening";i:3513;s:11:"maddeningly";i:3514;s:6:"madder";i:3515;s:5:"madly";i:3516;s:6:"madman";i:3517;s:7:"madness";i:3518;s:11:"maladjusted";i:3519;s:13:"maladjustment";i:3520;s:6:"malady";i:3521;s:7:"malaise";i:3522;s:10:"malcontent";i:3523;s:12:"malcontented";i:3524;s:8:"maledict";i:3525;s:11:"malevolence";i:3526;s:10:"malevolent";i:3527;s:12:"malevolently";i:3528;s:6:"malice";i:3529;s:9:"malicious";i:3530;s:11:"maliciously";i:3531;s:13:"maliciousness";i:3532;s:6:"malign";i:3533;s:9:"malignant";i:3534;s:10:"malodorous";i:3535;s:12:"maltreatment";i:3536;s:8:"maneuver";i:3537;s:6:"mangle";i:3538;s:5:"mania";i:3539;s:6:"maniac";i:3540;s:8:"maniacal";i:3541;s:5:"manic";i:3542;s:10:"manipulate";i:3543;s:12:"manipulation";i:3544;s:12:"manipulative";i:3545;s:12:"manipulators";i:3546;s:3:"mar";i:3547;s:8:"marginal";i:3548;s:10:"marginally";i:3549;s:9:"martyrdom";i:3550;s:17:"martyrdom-seeking";i:3551;s:8:"massacre";i:3552;s:9:"massacres";i:3553;s:8:"maverick";i:3554;s:7:"mawkish";i:3555;s:9:"mawkishly";i:3556;s:11:"mawkishness";i:3557;s:16:"maxi-devaluation";i:3558;s:6:"meager";i:3559;s:11:"meaningless";i:3560;s:8:"meanness";i:3561;s:6:"meddle";i:3562;s:10:"meddlesome";i:3563;s:10:"mediocrity";i:3564;s:10:"melancholy";i:3565;s:12:"melodramatic";i:3566;s:16:"melodramatically";i:3567;s:6:"menace";i:3568;s:8:"menacing";i:3569;s:10:"menacingly";i:3570;s:10:"mendacious";i:3571;s:9:"mendacity";i:3572;s:6:"menial";i:3573;s:9:"merciless";i:3574;s:11:"mercilessly";i:3575;s:4:"mere";i:3576;s:4:"mess";i:3577;s:6:"midget";i:3578;s:4:"miff";i:3579;s:9:"militancy";i:3580;s:4:"mind";i:3581;s:8:"mindless";i:3582;s:10:"mindlessly";i:3583;s:6:"mirage";i:3584;s:4:"mire";i:3585;s:12:"misapprehend";i:3586;s:11:"misbecoming";i:3587;s:9:"misbecome";i:3588;s:11:"misbegotten";i:3589;s:9:"misbehave";i:3590;s:11:"misbehavior";i:3591;s:12:"miscalculate";i:3592;s:14:"miscalculation";i:3593;s:8:"mischief";i:3594;s:11:"mischievous";i:3595;s:13:"mischievously";i:3596;s:13:"misconception";i:3597;s:14:"misconceptions";i:3598;s:9:"miscreant";i:3599;s:10:"miscreants";i:3600;s:12:"misdirection";i:3601;s:5:"miser";i:3602;s:7:"miserly";i:3603;s:13:"miserableness";i:3604;s:9:"miserably";i:3605;s:8:"miseries";i:3606;s:6:"misery";i:3607;s:6:"misfit";i:3608;s:10:"misfortune";i:3609;s:9:"misgiving";i:3610;s:10:"misgivings";i:3611;s:11:"misguidance";i:3612;s:8:"misguide";i:3613;s:9:"misguided";i:3614;s:9:"mishandle";i:3615;s:6:"mishap";i:3616;s:9:"misinform";i:3617;s:11:"misinformed";i:3618;s:12:"misinterpret";i:3619;s:8:"misjudge";i:3620;s:11:"misjudgment";i:3621;s:7:"mislead";i:3622;s:10:"misleading";i:3623;s:12:"misleadingly";i:3624;s:7:"mislike";i:3625;s:9:"mismanage";i:3626;s:7:"misread";i:3627;s:10:"misreading";i:3628;s:12:"misrepresent";i:3629;s:17:"misrepresentation";i:3630;s:4:"miss";i:3631;s:12:"misstatement";i:3632;s:7:"mistake";i:3633;s:10:"mistakenly";i:3634;s:8:"mistakes";i:3635;s:8:"mistrust";i:3636;s:11:"mistrustful";i:3637;s:13:"mistrustfully";i:3638;s:13:"misunderstand";i:3639;s:16:"misunderstanding";i:3640;s:17:"misunderstandings";i:3641;s:6:"misuse";i:3642;s:4:"moan";i:3643;s:4:"mock";i:3644;s:9:"mockeries";i:3645;s:7:"mockery";i:3646;s:7:"mocking";i:3647;s:9:"mockingly";i:3648;s:6:"molest";i:3649;s:11:"molestation";i:3650;s:10:"monotonous";i:3651;s:8:"monotony";i:3652;s:7:"monster";i:3653;s:13:"monstrosities";i:3654;s:11:"monstrosity";i:3655;s:9:"monstrous";i:3656;s:11:"monstrously";i:3657;s:4:"moon";i:3658;s:4:"moot";i:3659;s:4:"mope";i:3660;s:6:"morbid";i:3661;s:8:"morbidly";i:3662;s:7:"mordant";i:3663;s:9:"mordantly";i:3664;s:8:"moribund";i:3665;s:13:"mortification";i:3666;s:9:"mortified";i:3667;s:7:"mortify";i:3668;s:10:"mortifying";i:3669;s:10:"motionless";i:3670;s:6:"motley";i:3671;s:5:"mourn";i:3672;s:7:"mourner";i:3673;s:8:"mournful";i:3674;s:10:"mournfully";i:3675;s:6:"muddle";i:3676;s:5:"muddy";i:3677;s:10:"mudslinger";i:3678;s:11:"mudslinging";i:3679;s:6:"mulish";i:3680;s:18:"multi-polarization";i:3681;s:7:"mundane";i:3682;s:6:"murder";i:3683;s:9:"murderous";i:3684;s:11:"murderously";i:3685;s:5:"murky";i:3686;s:14:"muscle-flexing";i:3687;s:10:"mysterious";i:3688;s:12:"mysteriously";i:3689;s:7:"mystery";i:3690;s:7:"mystify";i:3691;s:9:"mistified";i:3692;s:4:"myth";i:3693;s:3:"nag";i:3694;s:7:"nagging";i:3695;s:5:"naive";i:3696;s:7:"naively";i:3697;s:6:"narrow";i:3698;s:8:"narrower";i:3699;s:7:"nastily";i:3700;s:9:"nastiness";i:3701;s:5:"nasty";i:3702;s:11:"nationalism";i:3703;s:7:"naughty";i:3704;s:8:"nauseate";i:3705;s:10:"nauseating";i:3706;s:12:"nauseatingly";i:3707;s:8:"nebulous";i:3708;s:10:"nebulously";i:3709;s:8:"needless";i:3710;s:10:"needlessly";i:3711;s:9:"nefarious";i:3712;s:11:"nefariously";i:3713;s:6:"negate";i:3714;s:8:"negation";i:3715;s:7:"neglect";i:3716;s:9:"neglected";i:3717;s:9:"negligent";i:3718;s:10:"negligence";i:3719;s:10:"negligible";i:3720;s:7:"nemesis";i:3721;s:6:"nettle";i:3722;s:10:"nettlesome";i:3723;s:9:"nervously";i:3724;s:11:"nervousness";i:3725;s:12:"neurotically";i:3726;s:6:"niggle";i:3727;s:9:"nightmare";i:3728;s:11:"nightmarish";i:3729;s:13:"nightmarishly";i:3730;s:3:"nix";i:3731;s:5:"noisy";i:3732;s:14:"non-confidence";i:3733;s:11:"nonexistent";i:3734;s:8:"nonsense";i:3735;s:5:"nosey";i:3736;s:9:"notorious";i:3737;s:11:"notoriously";i:3738;s:8:"nuisance";i:3739;s:5:"obese";i:3740;s:6:"object";i:3741;s:9:"objection";i:3742;s:13:"objectionable";i:3743;s:10:"objections";i:3744;s:7:"oblique";i:3745;s:10:"obliterate";i:3746;s:11:"obliterated";i:3747;s:9:"oblivious";i:3748;s:9:"obnoxious";i:3749;s:11:"obnoxiously";i:3750;s:7:"obscene";i:3751;s:9:"obscenely";i:3752;s:9:"obscenity";i:3753;s:7:"obscure";i:3754;s:9:"obscurity";i:3755;s:6:"obsess";i:3756;s:9:"obsession";i:3757;s:10:"obsessions";i:3758;s:11:"obsessively";i:3759;s:13:"obsessiveness";i:3760;s:8:"obsolete";i:3761;s:8:"obstacle";i:3762;s:9:"obstinate";i:3763;s:11:"obstinately";i:3764;s:8:"obstruct";i:3765;s:11:"obstruction";i:3766;s:9:"obtrusive";i:3767;s:6:"obtuse";i:3768;s:5:"odder";i:3769;s:6:"oddest";i:3770;s:8:"oddities";i:3771;s:6:"oddity";i:3772;s:5:"oddly";i:3773;s:7:"offence";i:3774;s:6:"offend";i:3775;s:9:"offending";i:3776;s:8:"offenses";i:3777;s:9:"offensive";i:3778;s:11:"offensively";i:3779;s:13:"offensiveness";i:3780;s:9:"officious";i:3781;s:7:"ominous";i:3782;s:9:"ominously";i:3783;s:8:"omission";i:3784;s:4:"omit";i:3785;s:8:"one-side";i:3786;s:9:"one-sided";i:3787;s:7:"onerous";i:3788;s:9:"onerously";i:3789;s:9:"onslaught";i:3790;s:11:"opinionated";i:3791;s:8:"opponent";i:3792;s:13:"opportunistic";i:3793;s:6:"oppose";i:3794;s:10:"opposition";i:3795;s:11:"oppositions";i:3796;s:7:"oppress";i:3797;s:10:"oppression";i:3798;s:10:"oppressive";i:3799;s:12:"oppressively";i:3800;s:14:"oppressiveness";i:3801;s:10:"oppressors";i:3802;s:6:"ordeal";i:3803;s:6:"orphan";i:3804;s:9:"ostracize";i:3805;s:8:"outbreak";i:3806;s:8:"outburst";i:3807;s:9:"outbursts";i:3808;s:7:"outcast";i:3809;s:6:"outcry";i:3810;s:8:"outdated";i:3811;s:6:"outlaw";i:3812;s:8:"outmoded";i:3813;s:7:"outrage";i:3814;s:8:"outraged";i:3815;s:10:"outrageous";i:3816;s:12:"outrageously";i:3817;s:14:"outrageousness";i:3818;s:8:"outrages";i:3819;s:8:"outsider";i:3820;s:10:"over-acted";i:3821;s:14:"over-valuation";i:3822;s:7:"overact";i:3823;s:9:"overacted";i:3824;s:7:"overawe";i:3825;s:11:"overbalance";i:3826;s:12:"overbalanced";i:3827;s:11:"overbearing";i:3828;s:13:"overbearingly";i:3829;s:9:"overblown";i:3830;s:8:"overcome";i:3831;s:6:"overdo";i:3832;s:8:"overdone";i:3833;s:7:"overdue";i:3834;s:13:"overemphasize";i:3835;s:8:"overkill";i:3836;s:8:"overlook";i:3837;s:8:"overplay";i:3838;s:9:"overpower";i:3839;s:9:"overreach";i:3840;s:7:"overrun";i:3841;s:10:"overshadow";i:3842;s:9:"oversight";i:3843;s:18:"oversimplification";i:3844;s:14:"oversimplified";i:3845;s:12:"oversimplify";i:3846;s:9:"oversized";i:3847;s:9:"overstate";i:3848;s:13:"overstatement";i:3849;s:14:"overstatements";i:3850;s:9:"overtaxed";i:3851;s:9:"overthrow";i:3852;s:8:"overturn";i:3853;s:9:"overwhelm";i:3854;s:12:"overwhelming";i:3855;s:14:"overwhelmingly";i:3856;s:10:"overworked";i:3857;s:11:"overzealous";i:3858;s:13:"overzealously";i:3859;s:7:"painful";i:3860;s:9:"painfully";i:3861;s:5:"pains";i:3862;s:4:"pale";i:3863;s:6:"paltry";i:3864;s:3:"pan";i:3865;s:11:"pandemonium";i:3866;s:7:"panicky";i:3867;s:11:"paradoxical";i:3868;s:13:"paradoxically";i:3869;s:8:"paralize";i:3870;s:9:"paralyzed";i:3871;s:8:"paranoia";i:3872;s:8:"parasite";i:3873;s:6:"pariah";i:3874;s:6:"parody";i:3875;s:10:"partiality";i:3876;s:8:"partisan";i:3877;s:9:"partisans";i:3878;s:5:"passe";i:3879;s:11:"passiveness";i:3880;s:12:"pathetically";i:3881;s:9:"patronize";i:3882;s:7:"paucity";i:3883;s:6:"pauper";i:3884;s:7:"paupers";i:3885;s:7:"payback";i:3886;s:8:"peculiar";i:3887;s:10:"peculiarly";i:3888;s:8:"pedantic";i:3889;s:10:"pedestrian";i:3890;s:5:"peeve";i:3891;s:6:"peeved";i:3892;s:7:"peevish";i:3893;s:9:"peevishly";i:3894;s:8:"penalize";i:3895;s:7:"penalty";i:3896;s:10:"perfidious";i:3897;s:9:"perfidity";i:3898;s:11:"perfunctory";i:3899;s:5:"peril";i:3900;s:8:"perilous";i:3901;s:10:"perilously";i:3902;s:10:"peripheral";i:3903;s:6:"perish";i:3904;s:10:"pernicious";i:3905;s:7:"perplex";i:3906;s:9:"perplexed";i:3907;s:10:"perplexing";i:3908;s:10:"perplexity";i:3909;s:9:"persecute";i:3910;s:11:"persecution";i:3911;s:12:"pertinacious";i:3912;s:14:"pertinaciously";i:3913;s:11:"pertinacity";i:3914;s:7:"perturb";i:3915;s:9:"perturbed";i:3916;s:8:"perverse";i:3917;s:10:"perversely";i:3918;s:10:"perversion";i:3919;s:10:"perversity";i:3920;s:7:"pervert";i:3921;s:9:"perverted";i:3922;s:9:"pessimism";i:3923;s:15:"pessimistically";i:3924;s:4:"pest";i:3925;s:9:"pestilent";i:3926;s:7:"petrify";i:3927;s:8:"pettifog";i:3928;s:5:"petty";i:3929;s:6:"phobia";i:3930;s:6:"phobic";i:3931;s:5:"picky";i:3932;s:7:"pillage";i:3933;s:7:"pillory";i:3934;s:5:"pinch";i:3935;s:4:"pine";i:3936;s:5:"pique";i:3937;s:8:"pitiable";i:3938;s:7:"pitiful";i:3939;s:9:"pitifully";i:3940;s:8:"pitiless";i:3941;s:10:"pitilessly";i:3942;s:8:"pittance";i:3943;s:4:"pity";i:3944;s:10:"plagiarize";i:3945;s:6:"plague";i:3946;s:9:"plaything";i:3947;s:4:"plea";i:3948;s:5:"pleas";i:3949;s:8:"plebeian";i:3950;s:6:"plight";i:3951;s:4:"plot";i:3952;s:8:"plotters";i:3953;s:4:"ploy";i:3954;s:7:"plunder";i:3955;s:9:"plunderer";i:3956;s:9:"pointless";i:3957;s:11:"pointlessly";i:3958;s:6:"poison";i:3959;s:9:"poisonous";i:3960;s:11:"poisonously";i:3961;s:12:"polarisation";i:3962;s:8:"polemize";i:3963;s:7:"pollute";i:3964;s:8:"polluter";i:3965;s:9:"polluters";i:3966;s:8:"polution";i:3967;s:7:"pompous";i:3968;s:6:"poorly";i:3969;s:9:"posturing";i:3970;s:4:"pout";i:3971;s:7:"poverty";i:3972;s:5:"prate";i:3973;s:8:"pratfall";i:3974;s:7:"prattle";i:3975;s:10:"precarious";i:3976;s:12:"precariously";i:3977;s:11:"precipitate";i:3978;s:11:"precipitous";i:3979;s:9:"predatory";i:3980;s:11:"predicament";i:3981;s:8:"prejudge";i:3982;s:9:"prejudice";i:3983;s:11:"prejudicial";i:3984;s:12:"premeditated";i:3985;s:9:"preoccupy";i:3986;s:12:"preposterous";i:3987;s:14:"preposterously";i:3988;s:8:"pressing";i:3989;s:7:"presume";i:3990;s:12:"presumptuous";i:3991;s:14:"presumptuously";i:3992;s:8:"pretence";i:3993;s:7:"pretend";i:3994;s:8:"pretense";i:3995;s:11:"pretentious";i:3996;s:13:"pretentiously";i:3997;s:11:"prevaricate";i:3998;s:6:"pricey";i:3999;s:7:"prickle";i:4000;s:8:"prickles";i:4001;s:8:"prideful";i:4002;s:9:"primitive";i:4003;s:6:"prison";i:4004;s:8:"prisoner";i:4005;s:7:"problem";i:4006;s:11:"problematic";i:4007;s:8:"problems";i:4008;s:13:"procrastinate";i:4009;s:15:"procrastination";i:4010;s:7:"profane";i:4011;s:9:"profanity";i:4012;s:8:"prohibit";i:4013;s:11:"prohibitive";i:4014;s:13:"prohibitively";i:4015;s:10:"propaganda";i:4016;s:12:"propagandize";i:4017;s:12:"proscription";i:4018;s:13:"proscriptions";i:4019;s:9:"prosecute";i:4020;s:7:"protest";i:4021;s:8:"protests";i:4022;s:10:"protracted";i:4023;s:11:"provocation";i:4024;s:11:"provocative";i:4025;s:7:"provoke";i:4026;s:3:"pry";i:4027;s:10:"pugnacious";i:4028;s:12:"pugnaciously";i:4029;s:9:"pugnacity";i:4030;s:5:"punch";i:4031;s:6:"punish";i:4032;s:10:"punishable";i:4033;s:8:"punitive";i:4034;s:4:"puny";i:4035;s:6:"puppet";i:4036;s:7:"puppets";i:4037;s:6:"puzzle";i:4038;s:10:"puzzlement";i:4039;s:8:"puzzling";i:4040;s:5:"quack";i:4041;s:6:"qualms";i:4042;s:8:"quandary";i:4043;s:7:"quarrel";i:4044;s:11:"quarrellous";i:4045;s:13:"quarrellously";i:4046;s:8:"quarrels";i:4047;s:5:"quash";i:4048;s:12:"questionable";i:4049;s:7:"quibble";i:4050;s:4:"quit";i:4051;s:7:"quitter";i:4052;s:6:"racism";i:4053;s:6:"racist";i:4054;s:7:"racists";i:4055;s:4:"rack";i:4056;s:7:"radical";i:4057;s:14:"radicalization";i:4058;s:9:"radically";i:4059;s:8:"radicals";i:4060;s:6:"ragged";i:4061;s:6:"raging";i:4062;s:4:"rail";i:4063;s:7:"rampage";i:4064;s:7:"rampant";i:4065;s:10:"ramshackle";i:4066;s:6:"rancor";i:4067;s:4:"rank";i:4068;s:6:"rankle";i:4069;s:4:"rant";i:4070;s:7:"ranting";i:4071;s:9:"rantingly";i:4072;s:6:"rascal";i:4073;s:4:"rash";i:4074;s:3:"rat";i:4075;s:11:"rationalize";i:4076;s:6:"rattle";i:4077;s:6:"ravage";i:4078;s:6:"raving";i:4079;s:11:"reactionary";i:4080;s:10:"rebellious";i:4081;s:6:"rebuff";i:4082;s:6:"rebuke";i:4083;s:12:"recalcitrant";i:4084;s:6:"recant";i:4085;s:9:"recession";i:4086;s:12:"recessionary";i:4087;s:8:"reckless";i:4088;s:10:"recklessly";i:4089;s:12:"recklessness";i:4090;s:6:"recoil";i:4091;s:9:"recourses";i:4092;s:10:"redundancy";i:4093;s:9:"redundant";i:4094;s:7:"refusal";i:4095;s:6:"refuse";i:4096;s:10:"refutation";i:4097;s:6:"refute";i:4098;s:7:"regress";i:4099;s:10:"regression";i:4100;s:10:"regressive";i:4101;s:9:"regretful";i:4102;s:11:"regretfully";i:4103;s:11:"regrettable";i:4104;s:11:"regrettably";i:4105;s:6:"reject";i:4106;s:9:"rejection";i:4107;s:7:"relapse";i:4108;s:10:"relentless";i:4109;s:12:"relentlessly";i:4110;s:14:"relentlessness";i:4111;s:10:"reluctance";i:4112;s:9:"reluctant";i:4113;s:11:"reluctantly";i:4114;s:7:"remorse";i:4115;s:10:"remorseful";i:4116;s:12:"remorsefully";i:4117;s:11:"remorseless";i:4118;s:13:"remorselessly";i:4119;s:15:"remorselessness";i:4120;s:8:"renounce";i:4121;s:12:"renunciation";i:4122;s:5:"repel";i:4123;s:10:"repetitive";i:4124;s:13:"reprehensible";i:4125;s:13:"reprehensibly";i:4126;s:12:"reprehension";i:4127;s:12:"reprehensive";i:4128;s:7:"repress";i:4129;s:10:"repression";i:4130;s:10:"repressive";i:4131;s:9:"reprimand";i:4132;s:8:"reproach";i:4133;s:11:"reproachful";i:4134;s:7:"reprove";i:4135;s:11:"reprovingly";i:4136;s:9:"repudiate";i:4137;s:11:"repudiation";i:4138;s:6:"repugn";i:4139;s:10:"repugnance";i:4140;s:9:"repugnant";i:4141;s:11:"repugnantly";i:4142;s:7:"repulse";i:4143;s:8:"repulsed";i:4144;s:9:"repulsing";i:4145;s:9:"repulsive";i:4146;s:11:"repulsively";i:4147;s:13:"repulsiveness";i:4148;s:6:"resent";i:4149;s:10:"resentment";i:4150;s:12:"reservations";i:4151;s:11:"resignation";i:4152;s:8:"resigned";i:4153;s:10:"resistance";i:4154;s:9:"resistant";i:4155;s:8:"restless";i:4156;s:12:"restlessness";i:4157;s:8:"restrict";i:4158;s:10:"restricted";i:4159;s:11:"restriction";i:4160;s:11:"restrictive";i:4161;s:9:"retaliate";i:4162;s:11:"retaliatory";i:4163;s:6:"retard";i:4164;s:8:"reticent";i:4165;s:6:"retire";i:4166;s:7:"retract";i:4167;s:7:"retreat";i:4168;s:7:"revenge";i:4169;s:12:"revengefully";i:4170;s:6:"revert";i:4171;s:6:"revile";i:4172;s:7:"reviled";i:4173;s:6:"revoke";i:4174;s:6:"revolt";i:4175;s:9:"revolting";i:4176;s:11:"revoltingly";i:4177;s:9:"revulsion";i:4178;s:9:"revulsive";i:4179;s:10:"rhapsodize";i:4180;s:8:"rhetoric";i:4181;s:10:"rhetorical";i:4182;s:3:"rid";i:4183;s:8:"ridicule";i:4184;s:12:"ridiculously";i:4185;s:4:"rife";i:4186;s:4:"rift";i:4187;s:5:"rifts";i:4188;s:5:"rigid";i:4189;s:5:"rigor";i:4190;s:8:"rigorous";i:4191;s:4:"rile";i:4192;s:5:"riled";i:4193;s:4:"risk";i:4194;s:5:"risky";i:4195;s:5:"rival";i:4196;s:7:"rivalry";i:4197;s:10:"roadblocks";i:4198;s:5:"rocky";i:4199;s:5:"rogue";i:4200;s:13:"rollercoaster";i:4201;s:3:"rot";i:4202;s:5:"rough";i:4203;s:4:"rude";i:4204;s:3:"rue";i:4205;s:7:"ruffian";i:4206;s:6:"ruffle";i:4207;s:4:"ruin";i:4208;s:7:"ruinous";i:4209;s:8:"rumbling";i:4210;s:5:"rumor";i:4211;s:6:"rumors";i:4212;s:7:"rumours";i:4213;s:6:"rumple";i:4214;s:8:"run-down";i:4215;s:7:"runaway";i:4216;s:7:"rupture";i:4217;s:5:"rusty";i:4218;s:8:"ruthless";i:4219;s:10:"ruthlessly";i:4220;s:12:"ruthlessness";i:4221;s:8:"sabotage";i:4222;s:9:"sacrifice";i:4223;s:6:"sadden";i:4224;s:5:"sadly";i:4225;s:7:"sadness";i:4226;s:3:"sag";i:4227;s:9:"salacious";i:4228;s:13:"sanctimonious";i:4229;s:3:"sap";i:4230;s:7:"sarcasm";i:4231;s:13:"sarcastically";i:4232;s:8:"sardonic";i:4233;s:12:"sardonically";i:4234;s:4:"sass";i:4235;s:9:"satirical";i:4236;s:8:"satirize";i:4237;s:6:"savage";i:4238;s:7:"savaged";i:4239;s:8:"savagely";i:4240;s:8:"savagery";i:4241;s:7:"savages";i:4242;s:7:"scandal";i:4243;s:10:"scandalize";i:4244;s:11:"scandalized";i:4245;s:10:"scandalous";i:4246;s:12:"scandalously";i:4247;s:8:"scandals";i:4248;s:5:"scant";i:4249;s:9:"scapegoat";i:4250;s:4:"scar";i:4251;s:6:"scarce";i:4252;s:8:"scarcely";i:4253;s:8:"scarcity";i:4254;s:5:"scare";i:4255;s:7:"scarier";i:4256;s:8:"scariest";i:4257;s:7:"scarily";i:4258;s:5:"scars";i:4259;s:5:"scary";i:4260;s:8:"scathing";i:4261;s:10:"scathingly";i:4262;s:6:"scheme";i:4263;s:8:"scheming";i:4264;s:5:"scoff";i:4265;s:10:"scoffingly";i:4266;s:5:"scold";i:4267;s:8:"scolding";i:4268;s:10:"scoldingly";i:4269;s:9:"scorching";i:4270;s:11:"scorchingly";i:4271;s:5:"scorn";i:4272;s:8:"scornful";i:4273;s:10:"scornfully";i:4274;s:9:"scoundrel";i:4275;s:7:"scourge";i:4276;s:5:"scowl";i:4277;s:6:"scream";i:4278;s:7:"screech";i:4279;s:5:"screw";i:4280;s:4:"scum";i:4281;s:6:"scummy";i:4282;s:12:"second-class";i:4283;s:11:"second-tier";i:4284;s:9:"secretive";i:4285;s:9:"sedentary";i:4286;s:5:"seedy";i:4287;s:6:"seethe";i:4288;s:8:"seething";i:4289;s:9:"self-coup";i:4290;s:14:"self-criticism";i:4291;s:14:"self-defeating";i:4292;s:16:"self-destructive";i:4293;s:16:"self-humiliation";i:4294;s:13:"self-interest";i:4295;s:15:"self-interested";i:4296;s:12:"self-serving";i:4297;s:14:"selfinterested";i:4298;s:9:"selfishly";i:4299;s:11:"selfishness";i:4300;s:6:"senile";i:4301;s:14:"sensationalize";i:4302;s:9:"senseless";i:4303;s:11:"senselessly";i:4304;s:11:"seriousness";i:4305;s:9:"sermonize";i:4306;s:9:"servitude";i:4307;s:6:"set-up";i:4308;s:5:"sever";i:4309;s:6:"severe";i:4310;s:8:"severely";i:4311;s:8:"severity";i:4312;s:6:"shabby";i:4313;s:6:"shadow";i:4314;s:7:"shadowy";i:4315;s:5:"shady";i:4316;s:5:"shake";i:4317;s:5:"shaky";i:4318;s:7:"shallow";i:4319;s:4:"sham";i:4320;s:8:"shambles";i:4321;s:5:"shame";i:4322;s:8:"shameful";i:4323;s:10:"shamefully";i:4324;s:12:"shamefulness";i:4325;s:9:"shameless";i:4326;s:11:"shamelessly";i:4327;s:13:"shamelessness";i:4328;s:5:"shark";i:4329;s:7:"sharply";i:4330;s:7:"shatter";i:4331;s:5:"sheer";i:4332;s:5:"shirk";i:4333;s:7:"shirker";i:4334;s:9:"shipwreck";i:4335;s:6:"shiver";i:4336;s:5:"shock";i:4337;s:8:"shocking";i:4338;s:10:"shockingly";i:4339;s:6:"shoddy";i:4340;s:11:"short-lived";i:4341;s:8:"shortage";i:4342;s:11:"shortchange";i:4343;s:11:"shortcoming";i:4344;s:12:"shortcomings";i:4345;s:12:"shortsighted";i:4346;s:16:"shortsightedness";i:4347;s:8:"showdown";i:4348;s:5:"shred";i:4349;s:5:"shrew";i:4350;s:6:"shriek";i:4351;s:6:"shrill";i:4352;s:7:"shrilly";i:4353;s:7:"shrivel";i:4354;s:6:"shroud";i:4355;s:8:"shrouded";i:4356;s:5:"shrug";i:4357;s:4:"shun";i:4358;s:7:"shunned";i:4359;s:5:"shyly";i:4360;s:7:"shyness";i:4361;s:4:"sick";i:4362;s:6:"sicken";i:4363;s:6:"sickly";i:4364;s:9:"sickening";i:4365;s:11:"sickeningly";i:4366;s:8:"sickness";i:4367;s:9:"sidetrack";i:4368;s:11:"sidetracked";i:4369;s:5:"siege";i:4370;s:7:"sillily";i:4371;s:5:"silly";i:4372;s:6:"simmer";i:4373;s:10:"simplistic";i:4374;s:14:"simplistically";i:4375;s:3:"sin";i:4376;s:6:"sinful";i:4377;s:8:"sinfully";i:4378;s:8:"sinister";i:4379;s:10:"sinisterly";i:4380;s:7:"sinking";i:4381;s:9:"skeletons";i:4382;s:9:"skeptical";i:4383;s:11:"skeptically";i:4384;s:10:"skepticism";i:4385;s:7:"sketchy";i:4386;s:6:"skimpy";i:4387;s:8:"skittish";i:4388;s:10:"skittishly";i:4389;s:5:"skulk";i:4390;s:5:"slack";i:4391;s:7:"slander";i:4392;s:9:"slanderer";i:4393;s:10:"slanderous";i:4394;s:12:"slanderously";i:4395;s:8:"slanders";i:4396;s:4:"slap";i:4397;s:8:"slashing";i:4398;s:9:"slaughter";i:4399;s:11:"slaughtered";i:4400;s:6:"slaves";i:4401;s:6:"sleazy";i:4402;s:6:"slight";i:4403;s:8:"slightly";i:4404;s:5:"slime";i:4405;s:6:"sloppy";i:4406;s:8:"sloppily";i:4407;s:5:"sloth";i:4408;s:8:"slothful";i:4409;s:6:"slowly";i:4410;s:11:"slow-moving";i:4411;s:4:"slug";i:4412;s:8:"sluggish";i:4413;s:5:"slump";i:4414;s:4:"slur";i:4415;s:3:"sly";i:4416;s:5:"smack";i:4417;s:5:"smash";i:4418;s:5:"smear";i:4419;s:8:"smelling";i:4420;s:11:"smokescreen";i:4421;s:7:"smolder";i:4422;s:10:"smoldering";i:4423;s:7:"smother";i:4424;s:8:"smoulder";i:4425;s:11:"smouldering";i:4426;s:4:"smug";i:4427;s:6:"smugly";i:4428;s:4:"smut";i:4429;s:8:"smuttier";i:4430;s:9:"smuttiest";i:4431;s:6:"smutty";i:4432;s:5:"snare";i:4433;s:5:"snarl";i:4434;s:6:"snatch";i:4435;s:5:"sneak";i:4436;s:8:"sneakily";i:4437;s:6:"sneaky";i:4438;s:5:"sneer";i:4439;s:8:"sneering";i:4440;s:10:"sneeringly";i:4441;s:4:"snub";i:4442;s:6:"so-cal";i:4443;s:9:"so-called";i:4444;s:3:"sob";i:4445;s:5:"sober";i:4446;s:8:"sobering";i:4447;s:6:"solemn";i:4448;s:6:"somber";i:4449;s:4:"sore";i:4450;s:6:"sorely";i:4451;s:8:"soreness";i:4452;s:6:"sorrow";i:4453;s:9:"sorrowful";i:4454;s:11:"sorrowfully";i:4455;s:8:"sounding";i:4456;s:4:"sour";i:4457;s:6:"sourly";i:4458;s:5:"spade";i:4459;s:5:"spank";i:4460;s:8:"spilling";i:4461;s:8:"spinster";i:4462;s:10:"spiritless";i:4463;s:5:"spite";i:4464;s:10:"spitefully";i:4465;s:12:"spitefulness";i:4466;s:5:"split";i:4467;s:9:"splitting";i:4468;s:5:"spoil";i:4469;s:5:"spook";i:4470;s:8:"spookier";i:4471;s:9:"spookiest";i:4472;s:8:"spookily";i:4473;s:6:"spooky";i:4474;s:9:"spoon-fed";i:4475;s:10:"spoon-feed";i:4476;s:8:"spoonfed";i:4477;s:8:"sporadic";i:4478;s:4:"spot";i:4479;s:6:"spotty";i:4480;s:8:"spurious";i:4481;s:5:"spurn";i:4482;s:7:"sputter";i:4483;s:8:"squabble";i:4484;s:10:"squabbling";i:4485;s:8:"squander";i:4486;s:6:"squash";i:4487;s:6:"squirm";i:4488;s:4:"stab";i:4489;s:7:"stagger";i:4490;s:10:"staggering";i:4491;s:12:"staggeringly";i:4492;s:8:"stagnant";i:4493;s:8:"stagnate";i:4494;s:10:"stagnation";i:4495;s:5:"staid";i:4496;s:5:"stain";i:4497;s:5:"stake";i:4498;s:5:"stale";i:4499;s:9:"stalemate";i:4500;s:7:"stammer";i:4501;s:8:"stampede";i:4502;s:10:"standstill";i:4503;s:5:"stark";i:4504;s:7:"starkly";i:4505;s:7:"startle";i:4506;s:9:"startling";i:4507;s:11:"startlingly";i:4508;s:10:"starvation";i:4509;s:6:"starve";i:4510;s:6:"static";i:4511;s:5:"steal";i:4512;s:8:"stealing";i:4513;s:5:"steep";i:4514;s:7:"steeply";i:4515;s:6:"stench";i:4516;s:10:"stereotype";i:4517;s:13:"stereotypical";i:4518;s:15:"stereotypically";i:4519;s:5:"stern";i:4520;s:4:"stew";i:4521;s:6:"sticky";i:4522;s:5:"stiff";i:4523;s:6:"stifle";i:4524;s:8:"stifling";i:4525;s:10:"stiflingly";i:4526;s:6:"stigma";i:4527;s:10:"stigmatize";i:4528;s:5:"sting";i:4529;s:8:"stinging";i:4530;s:10:"stingingly";i:4531;s:5:"stink";i:4532;s:8:"stinking";i:4533;s:6:"stodgy";i:4534;s:5:"stole";i:4535;s:6:"stolen";i:4536;s:6:"stooge";i:4537;s:7:"stooges";i:4538;s:5:"storm";i:4539;s:6:"stormy";i:4540;s:8:"straggle";i:4541;s:9:"straggler";i:4542;s:6:"strain";i:4543;s:8:"strained";i:4544;s:9:"strangely";i:4545;s:8:"stranger";i:4546;s:9:"strangest";i:4547;s:8:"strangle";i:4548;s:9:"strenuous";i:4549;s:6:"stress";i:4550;s:9:"stressful";i:4551;s:11:"stressfully";i:4552;s:8:"stricken";i:4553;s:6:"strict";i:4554;s:8:"strictly";i:4555;s:8:"strident";i:4556;s:10:"stridently";i:4557;s:6:"strife";i:4558;s:6:"strike";i:4559;s:9:"stringent";i:4560;s:11:"stringently";i:4561;s:6:"struck";i:4562;s:8:"struggle";i:4563;s:5:"strut";i:4564;s:8:"stubborn";i:4565;s:10:"stubbornly";i:4566;s:12:"stubbornness";i:4567;s:6:"stuffy";i:4568;s:7:"stumble";i:4569;s:5:"stump";i:4570;s:4:"stun";i:4571;s:5:"stunt";i:4572;s:7:"stunted";i:4573;s:9:"stupidity";i:4574;s:8:"stupidly";i:4575;s:9:"stupified";i:4576;s:7:"stupify";i:4577;s:6:"stupor";i:4578;s:3:"sty";i:4579;s:7:"subdued";i:4580;s:9:"subjected";i:4581;s:10:"subjection";i:4582;s:9:"subjugate";i:4583;s:11:"subjugation";i:4584;s:11:"subordinate";i:4585;s:12:"subservience";i:4586;s:11:"subservient";i:4587;s:7:"subside";i:4588;s:11:"substandard";i:4589;s:8:"subtract";i:4590;s:10:"subversion";i:4591;s:10:"subversive";i:4592;s:12:"subversively";i:4593;s:7:"subvert";i:4594;s:7:"succumb";i:4595;s:6:"sucker";i:4596;s:6:"suffer";i:4597;s:8:"sufferer";i:4598;s:9:"sufferers";i:4599;s:9:"suffocate";i:4600;s:10:"sugar-coat";i:4601;s:12:"sugar-coated";i:4602;s:11:"sugarcoated";i:4603;s:7:"suicide";i:4604;s:4:"sulk";i:4605;s:6:"sullen";i:4606;s:5:"sully";i:4607;s:6:"sunder";i:4608;s:14:"superficiality";i:4609;s:13:"superficially";i:4610;s:11:"superfluous";i:4611;s:11:"superiority";i:4612;s:12:"superstition";i:4613;s:13:"superstitious";i:4614;s:8:"supposed";i:4615;s:8:"suppress";i:4616;s:11:"suppression";i:4617;s:9:"supremacy";i:4618;s:9:"surrender";i:4619;s:11:"susceptible";i:4620;s:7:"suspect";i:4621;s:9:"suspicion";i:4622;s:10:"suspicions";i:4623;s:12:"suspiciously";i:4624;s:7:"swagger";i:4625;s:7:"swamped";i:4626;s:5:"swear";i:4627;s:7:"swindle";i:4628;s:5:"swipe";i:4629;s:5:"swoon";i:4630;s:5:"swore";i:4631;s:15:"sympathetically";i:4632;s:10:"sympathies";i:4633;s:10:"sympathize";i:4634;s:8:"sympathy";i:4635;s:7:"symptom";i:4636;s:8:"syndrome";i:4637;s:5:"taboo";i:4638;s:5:"taint";i:4639;s:7:"tainted";i:4640;s:6:"tamper";i:4641;s:7:"tangled";i:4642;s:7:"tantrum";i:4643;s:5:"tardy";i:4644;s:7:"tarnish";i:4645;s:8:"tattered";i:4646;s:5:"taunt";i:4647;s:8:"taunting";i:4648;s:10:"tauntingly";i:4649;s:6:"taunts";i:4650;s:6:"tawdry";i:4651;s:5:"tease";i:4652;s:9:"teasingly";i:4653;s:6:"taxing";i:4654;s:7:"tedious";i:4655;s:9:"tediously";i:4656;s:8:"temerity";i:4657;s:6:"temper";i:4658;s:7:"tempest";i:4659;s:10:"temptation";i:4660;s:5:"tense";i:4661;s:7:"tension";i:4662;s:9:"tentative";i:4663;s:11:"tentatively";i:4664;s:7:"tenuous";i:4665;s:9:"tenuously";i:4666;s:5:"tepid";i:4667;s:8:"terrible";i:4668;s:12:"terribleness";i:4669;s:8:"terribly";i:4670;s:6:"terror";i:4671;s:12:"terror-genic";i:4672;s:9:"terrorism";i:4673;s:9:"terrorize";i:4674;s:9:"thankless";i:4675;s:6:"thirst";i:4676;s:6:"thorny";i:4677;s:11:"thoughtless";i:4678;s:13:"thoughtlessly";i:4679;s:15:"thoughtlessness";i:4680;s:6:"thrash";i:4681;s:6:"threat";i:4682;s:8:"threaten";i:4683;s:11:"threatening";i:4684;s:7:"threats";i:4685;s:8:"throttle";i:4686;s:5:"throw";i:4687;s:5:"thumb";i:4688;s:6:"thumbs";i:4689;s:6:"thwart";i:4690;s:5:"timid";i:4691;s:8:"timidity";i:4692;s:7:"timidly";i:4693;s:9:"timidness";i:4694;s:4:"tiny";i:4695;s:4:"tire";i:4696;s:5:"tired";i:4697;s:8:"tiresome";i:4698;s:6:"tiring";i:4699;s:8:"tiringly";i:4700;s:4:"toil";i:4701;s:4:"toll";i:4702;s:6:"topple";i:4703;s:7:"torment";i:4704;s:9:"tormented";i:4705;s:7:"torrent";i:4706;s:7:"torture";i:4707;s:8:"tortured";i:4708;s:8:"tortuous";i:4709;s:9:"torturous";i:4710;s:11:"torturously";i:4711;s:12:"totalitarian";i:4712;s:6:"touchy";i:4713;s:9:"toughness";i:4714;s:5:"toxic";i:4715;s:7:"traduce";i:4716;s:7:"tragedy";i:4717;s:6:"tragic";i:4718;s:10:"tragically";i:4719;s:7:"traitor";i:4720;s:10:"traitorous";i:4721;s:12:"traitorously";i:4722;s:5:"tramp";i:4723;s:7:"trample";i:4724;s:10:"transgress";i:4725;s:13:"transgression";i:4726;s:6:"trauma";i:4727;s:9:"traumatic";i:4728;s:13:"traumatically";i:4729;s:10:"traumatize";i:4730;s:11:"traumatized";i:4731;s:10:"travesties";i:4732;s:8:"travesty";i:4733;s:11:"treacherous";i:4734;s:13:"treacherously";i:4735;s:9:"treachery";i:4736;s:7:"treason";i:4737;s:10:"treasonous";i:4738;s:5:"trial";i:4739;s:5:"trick";i:4740;s:6:"tricky";i:4741;s:8:"trickery";i:4742;s:7:"trivial";i:4743;s:10:"trivialize";i:4744;s:9:"trivially";i:4745;s:7:"trouble";i:4746;s:12:"troublemaker";i:4747;s:11:"troublesome";i:4748;s:13:"troublesomely";i:4749;s:9:"troubling";i:4750;s:11:"troublingly";i:4751;s:6:"truant";i:4752;s:10:"tumultuous";i:4753;s:9:"turbulent";i:4754;s:7:"turmoil";i:4755;s:5:"twist";i:4756;s:7:"twisted";i:4757;s:6:"twists";i:4758;s:10:"tyrannical";i:4759;s:12:"tyrannically";i:4760;s:7:"tyranny";i:4761;s:6:"tyrant";i:4762;s:3:"ugh";i:4763;s:8:"ugliness";i:4764;s:4:"ugly";i:4765;s:8:"ulterior";i:4766;s:9:"ultimatum";i:4767;s:10:"ultimatums";i:4768;s:14:"ultra-hardline";i:4769;s:6:"unable";i:4770;s:12:"unacceptable";i:4771;s:14:"unacceptablely";i:4772;s:12:"unaccustomed";i:4773;s:12:"unattractive";i:4774;s:11:"unauthentic";i:4775;s:11:"unavailable";i:4776;s:11:"unavoidable";i:4777;s:11:"unavoidably";i:4778;s:10:"unbearable";i:4779;s:12:"unbearablely";i:4780;s:12:"unbelievable";i:4781;s:12:"unbelievably";i:4782;s:9:"uncertain";i:4783;s:7:"uncivil";i:4784;s:11:"uncivilized";i:4785;s:7:"unclean";i:4786;s:7:"unclear";i:4787;s:13:"uncollectible";i:4788;s:13:"uncomfortable";i:4789;s:13:"uncompetitive";i:4790;s:14:"uncompromising";i:4791;s:16:"uncompromisingly";i:4792;s:11:"unconfirmed";i:4793;s:16:"unconstitutional";i:4794;s:12:"uncontrolled";i:4795;s:12:"unconvincing";i:4796;s:14:"unconvincingly";i:4797;s:7:"uncouth";i:4798;s:9:"undecided";i:4799;s:9:"undefined";i:4800;s:15:"undependability";i:4801;s:12:"undependable";i:4802;s:8:"underdog";i:4803;s:13:"underestimate";i:4804;s:10:"underlings";i:4805;s:9:"undermine";i:4806;s:9:"underpaid";i:4807;s:11:"undesirable";i:4808;s:12:"undetermined";i:4809;s:5:"undid";i:4810;s:11:"undignified";i:4811;s:4:"undo";i:4812;s:12:"undocumented";i:4813;s:6:"undone";i:4814;s:5:"undue";i:4815;s:6:"unease";i:4816;s:8:"uneasily";i:4817;s:10:"uneasiness";i:4818;s:6:"uneasy";i:4819;s:12:"uneconomical";i:4820;s:7:"unequal";i:4821;s:9:"unethical";i:4822;s:6:"uneven";i:4823;s:10:"uneventful";i:4824;s:10:"unexpected";i:4825;s:12:"unexpectedly";i:4826;s:11:"unexplained";i:4827;s:6:"unfair";i:4828;s:8:"unfairly";i:4829;s:10:"unfaithful";i:4830;s:12:"unfaithfully";i:4831;s:10:"unfamiliar";i:4832;s:11:"unfavorable";i:4833;s:9:"unfeeling";i:4834;s:10:"unfinished";i:4835;s:5:"unfit";i:4836;s:10:"unforeseen";i:4837;s:11:"unfortunate";i:4838;s:9:"unfounded";i:4839;s:10:"unfriendly";i:4840;s:11:"unfulfilled";i:4841;s:8:"unfunded";i:4842;s:10:"ungrateful";i:4843;s:12:"ungovernable";i:4844;s:9:"unhappily";i:4845;s:11:"unhappiness";i:4846;s:7:"unhappy";i:4847;s:9:"unhealthy";i:4848;s:13:"unilateralism";i:4849;s:12:"unimaginable";i:4850;s:12:"unimaginably";i:4851;s:11:"unimportant";i:4852;s:10:"uninformed";i:4853;s:9:"uninsured";i:4854;s:8:"unipolar";i:4855;s:6:"unjust";i:4856;s:13:"unjustifiable";i:4857;s:13:"unjustifiably";i:4858;s:11:"unjustified";i:4859;s:8:"unjustly";i:4860;s:6:"unkind";i:4861;s:8:"unkindly";i:4862;s:12:"unlamentable";i:4863;s:12:"unlamentably";i:4864;s:8:"unlawful";i:4865;s:10:"unlawfully";i:4866;s:12:"unlawfulness";i:4867;s:7:"unleash";i:4868;s:10:"unlicensed";i:4869;s:7:"unlucky";i:4870;s:7:"unmoved";i:4871;s:9:"unnatural";i:4872;s:11:"unnaturally";i:4873;s:11:"unnecessary";i:4874;s:8:"unneeded";i:4875;s:7:"unnerve";i:4876;s:8:"unnerved";i:4877;s:9:"unnerving";i:4878;s:11:"unnervingly";i:4879;s:9:"unnoticed";i:4880;s:10:"unobserved";i:4881;s:10:"unorthodox";i:4882;s:11:"unorthodoxy";i:4883;s:10:"unpleasant";i:4884;s:14:"unpleasantries";i:4885;s:9:"unpopular";i:4886;s:11:"unprecedent";i:4887;s:13:"unprecedented";i:4888;s:13:"unpredictable";i:4889;s:10:"unprepared";i:4890;s:12:"unproductive";i:4891;s:12:"unprofitable";i:4892;s:11:"unqualified";i:4893;s:7:"unravel";i:4894;s:9:"unraveled";i:4895;s:11:"unrealistic";i:4896;s:12:"unreasonable";i:4897;s:12:"unreasonably";i:4898;s:11:"unrelenting";i:4899;s:13:"unrelentingly";i:4900;s:13:"unreliability";i:4901;s:10:"unreliable";i:4902;s:10:"unresolved";i:4903;s:6:"unrest";i:4904;s:6:"unruly";i:4905;s:6:"unsafe";i:4906;s:14:"unsatisfactory";i:4907;s:8:"unsavory";i:4908;s:12:"unscrupulous";i:4909;s:14:"unscrupulously";i:4910;s:8:"unseemly";i:4911;s:8:"unsettle";i:4912;s:9:"unsettled";i:4913;s:10:"unsettling";i:4914;s:12:"unsettlingly";i:4915;s:9:"unskilled";i:4916;s:15:"unsophisticated";i:4917;s:7:"unsound";i:4918;s:11:"unspeakable";i:4919;s:13:"unspeakablely";i:4920;s:11:"unspecified";i:4921;s:8:"unstable";i:4922;s:10:"unsteadily";i:4923;s:12:"unsteadiness";i:4924;s:8:"unsteady";i:4925;s:12:"unsuccessful";i:4926;s:14:"unsuccessfully";i:4927;s:11:"unsupported";i:4928;s:6:"unsure";i:4929;s:12:"unsuspecting";i:4930;s:13:"unsustainable";i:4931;s:9:"untenable";i:4932;s:8:"untested";i:4933;s:11:"unthinkable";i:4934;s:11:"unthinkably";i:4935;s:8:"untimely";i:4936;s:6:"untrue";i:4937;s:13:"untrustworthy";i:4938;s:10:"untruthful";i:4939;s:7:"unusual";i:4940;s:9:"unusually";i:4941;s:8:"unwanted";i:4942;s:11:"unwarranted";i:4943;s:9:"unwelcome";i:4944;s:8:"unwieldy";i:4945;s:9:"unwilling";i:4946;s:11:"unwillingly";i:4947;s:13:"unwillingness";i:4948;s:6:"unwise";i:4949;s:8:"unwisely";i:4950;s:10:"unworkable";i:4951;s:8:"unworthy";i:4952;s:10:"unyielding";i:4953;s:7:"upbraid";i:4954;s:8:"upheaval";i:4955;s:8:"uprising";i:4956;s:6:"uproar";i:4957;s:10:"uproarious";i:4958;s:12:"uproariously";i:4959;s:9:"uproarous";i:4960;s:11:"uproarously";i:4961;s:6:"uproot";i:4962;s:5:"upset";i:4963;s:9:"upsetting";i:4964;s:11:"upsettingly";i:4965;s:7:"urgency";i:4966;s:6:"urgent";i:4967;s:8:"urgently";i:4968;s:7:"useless";i:4969;s:5:"usurp";i:4970;s:7:"usurper";i:4971;s:5:"utter";i:4972;s:7:"utterly";i:4973;s:7:"vagrant";i:4974;s:5:"vague";i:4975;s:9:"vagueness";i:4976;s:4:"vain";i:4977;s:6:"vainly";i:4978;s:6:"vanish";i:4979;s:6:"vanity";i:4980;s:8:"vehement";i:4981;s:10:"vehemently";i:4982;s:9:"vengeance";i:4983;s:8:"vengeful";i:4984;s:10:"vengefully";i:4985;s:12:"vengefulness";i:4986;s:5:"venom";i:4987;s:8:"venomous";i:4988;s:10:"venomously";i:4989;s:4:"vent";i:4990;s:8:"vestiges";i:4991;s:4:"veto";i:4992;s:3:"vex";i:4993;s:8:"vexation";i:4994;s:6:"vexing";i:4995;s:8:"vexingly";i:4996;s:4:"vice";i:4997;s:7:"vicious";i:4998;s:9:"viciously";i:4999;s:11:"viciousness";i:5000;s:9:"victimize";i:5001;s:3:"vie";i:5002;s:4:"vile";i:5003;s:8:"vileness";i:5004;s:6:"vilify";i:5005;s:10:"villainous";i:5006;s:12:"villainously";i:5007;s:8:"villains";i:5008;s:7:"villian";i:5009;s:10:"villianous";i:5010;s:12:"villianously";i:5011;s:7:"villify";i:5012;s:10:"vindictive";i:5013;s:12:"vindictively";i:5014;s:14:"vindictiveness";i:5015;s:7:"violate";i:5016;s:9:"violation";i:5017;s:8:"violator";i:5018;s:7:"violent";i:5019;s:9:"violently";i:5020;s:5:"viper";i:5021;s:9:"virulence";i:5022;s:8:"virulent";i:5023;s:10:"virulently";i:5024;s:5:"virus";i:5025;s:7:"vocally";i:5026;s:10:"vociferous";i:5027;s:12:"vociferously";i:5028;s:4:"void";i:5029;s:8:"volatile";i:5030;s:10:"volatility";i:5031;s:5:"vomit";i:5032;s:6:"vulgar";i:5033;s:4:"wail";i:5034;s:6:"wallow";i:5035;s:4:"wane";i:5036;s:6:"waning";i:5037;s:6:"wanton";i:5038;s:3:"war";i:5039;s:8:"war-like";i:5040;s:7:"warfare";i:5041;s:7:"warlike";i:5042;s:7:"warning";i:5043;s:4:"warp";i:5044;s:6:"warped";i:5045;s:4:"wary";i:5046;s:6:"warily";i:5047;s:8:"wariness";i:5048;s:5:"waste";i:5049;s:8:"wasteful";i:5050;s:12:"wastefulness";i:5051;s:8:"watchdog";i:5052;s:7:"wayward";i:5053;s:4:"weak";i:5054;s:6:"weaken";i:5055;s:9:"weakening";i:5056;s:8:"weakness";i:5057;s:10:"weaknesses";i:5058;s:9:"weariness";i:5059;s:9:"wearisome";i:5060;s:5:"weary";i:5061;s:5:"wedge";i:5062;s:3:"wee";i:5063;s:4:"weed";i:5064;s:4:"weep";i:5065;s:5:"weird";i:5066;s:7:"weirdly";i:5067;s:7:"wheedle";i:5068;s:7:"whimper";i:5069;s:5:"whine";i:5070;s:5:"whips";i:5071;s:6:"wicked";i:5072;s:8:"wickedly";i:5073;s:10:"wickedness";i:5074;s:10:"widespread";i:5075;s:4:"wild";i:5076;s:6:"wildly";i:5077;s:5:"wiles";i:5078;s:4:"wilt";i:5079;s:4:"wily";i:5080;s:5:"wince";i:5081;s:8:"withheld";i:5082;s:8:"withhold";i:5083;s:3:"woe";i:5084;s:9:"woebegone";i:5085;s:6:"woeful";i:5086;s:8:"woefully";i:5087;s:4:"worn";i:5088;s:7:"worried";i:5089;s:9:"worriedly";i:5090;s:7:"worrier";i:5091;s:7:"worries";i:5092;s:9:"worrisome";i:5093;s:5:"worry";i:5094;s:8:"worrying";i:5095;s:10:"worryingly";i:5096;s:5:"worse";i:5097;s:6:"worsen";i:5098;s:9:"worsening";i:5099;s:5:"worst";i:5100;s:9:"worthless";i:5101;s:11:"worthlessly";i:5102;s:13:"worthlessness";i:5103;s:5:"wound";i:5104;s:6:"wounds";i:5105;s:5:"wreck";i:5106;s:7:"wrangle";i:5107;s:5:"wrath";i:5108;s:5:"wrest";i:5109;s:7:"wrestle";i:5110;s:6:"wretch";i:5111;s:8:"wretched";i:5112;s:10:"wretchedly";i:5113;s:12:"wretchedness";i:5114;s:6:"writhe";i:5115;s:5:"wrong";i:5116;s:8:"wrongful";i:5117;s:7:"wrongly";i:5118;s:7:"wrought";i:5119;s:4:"yawn";i:5120;s:4:"yelp";i:5121;s:6:"zealot";i:5122;s:7:"zealous";i:5123;s:9:"zealously";i:5124;s:11:"notabidance";i:5125;s:15:"notveryabidance";i:5126;s:8:"notabide";i:5127;s:12:"notveryabide";i:5128;s:12:"notabilities";i:5129;s:16:"notveryabilities";i:5130;s:10:"notability";i:5131;s:14:"notveryability";i:5132;s:16:"notabove-average";i:5133;s:20:"notveryabove-average";i:5134;s:9:"notabound";i:5135;s:13:"notveryabound";i:5136;s:10:"notabsolve";i:5137;s:14:"notveryabsolve";i:5138;s:11:"notabundant";i:5139;s:15:"notveryabundant";i:5140;s:12:"notabundance";i:5141;s:16:"notveryabundance";i:5142;s:9:"notaccede";i:5143;s:13:"notveryaccede";i:5144;s:9:"notaccept";i:5145;s:13:"notveryaccept";i:5146;s:13:"notacceptance";i:5147;s:17:"notveryacceptance";i:5148;s:13:"notacceptable";i:5149;s:17:"notveryacceptable";i:5150;s:10:"notacclaim";i:5151;s:14:"notveryacclaim";i:5152;s:12:"notacclaimed";i:5153;s:16:"notveryacclaimed";i:5154;s:14:"notacclamation";i:5155;s:18:"notveryacclamation";i:5156;s:11:"notaccolade";i:5157;s:15:"notveryaccolade";i:5158;s:12:"notaccolades";i:5159;s:16:"notveryaccolades";i:5160;s:16:"notaccommodative";i:5161;s:20:"notveryaccommodative";i:5162;s:13:"notaccomplish";i:5163;s:17:"notveryaccomplish";i:5164;s:17:"notaccomplishment";i:5165;s:21:"notveryaccomplishment";i:5166;s:18:"notaccomplishments";i:5167;s:22:"notveryaccomplishments";i:5168;s:9:"notaccord";i:5169;s:13:"notveryaccord";i:5170;s:13:"notaccordance";i:5171;s:17:"notveryaccordance";i:5172;s:14:"notaccordantly";i:5173;s:18:"notveryaccordantly";i:5174;s:11:"notaccurate";i:5175;s:15:"notveryaccurate";i:5176;s:13:"notaccurately";i:5177;s:17:"notveryaccurately";i:5178;s:13:"notachievable";i:5179;s:17:"notveryachievable";i:5180;s:10:"notachieve";i:5181;s:14:"notveryachieve";i:5182;s:14:"notachievement";i:5183;s:18:"notveryachievement";i:5184;s:15:"notachievements";i:5185;s:19:"notveryachievements";i:5186;s:14:"notacknowledge";i:5187;s:18:"notveryacknowledge";i:5188;s:18:"notacknowledgement";i:5189;s:22:"notveryacknowledgement";i:5190;s:9:"notacquit";i:5191;s:13:"notveryacquit";i:5192;s:9:"notacumen";i:5193;s:13:"notveryacumen";i:5194;s:15:"notadaptability";i:5195;s:19:"notveryadaptability";i:5196;s:11:"notadaptive";i:5197;s:15:"notveryadaptive";i:5198;s:8:"notadept";i:5199;s:12:"notveryadept";i:5200;s:10:"notadeptly";i:5201;s:14:"notveryadeptly";i:5202;s:11:"notadequate";i:5203;s:15:"notveryadequate";i:5204;s:12:"notadherence";i:5205;s:16:"notveryadherence";i:5206;s:11:"notadherent";i:5207;s:15:"notveryadherent";i:5208;s:11:"notadhesion";i:5209;s:15:"notveryadhesion";i:5210;s:10:"notadmirer";i:5211;s:14:"notveryadmirer";i:5212;s:12:"notadmirably";i:5213;s:16:"notveryadmirably";i:5214;s:13:"notadmiration";i:5215;s:17:"notveryadmiration";i:5216;s:11:"notadmiring";i:5217;s:15:"notveryadmiring";i:5218;s:13:"notadmiringly";i:5219;s:17:"notveryadmiringly";i:5220;s:12:"notadmission";i:5221;s:16:"notveryadmission";i:5222;s:8:"notadmit";i:5223;s:12:"notveryadmit";i:5224;s:13:"notadmittedly";i:5225;s:17:"notveryadmittedly";i:5226;s:9:"notadored";i:5227;s:13:"notveryadored";i:5228;s:9:"notadorer";i:5229;s:13:"notveryadorer";i:5230;s:10:"notadoring";i:5231;s:14:"notveryadoring";i:5232;s:12:"notadoringly";i:5233;s:16:"notveryadoringly";i:5234;s:11:"notadroitly";i:5235;s:15:"notveryadroitly";i:5236;s:10:"notadulate";i:5237;s:14:"notveryadulate";i:5238;s:12:"notadulation";i:5239;s:16:"notveryadulation";i:5240;s:12:"notadulatory";i:5241;s:16:"notveryadulatory";i:5242;s:11:"notadvanced";i:5243;s:15:"notveryadvanced";i:5244;s:12:"notadvantage";i:5245;s:16:"notveryadvantage";i:5246;s:15:"notadvantageous";i:5247;s:19:"notveryadvantageous";i:5248;s:13:"notadvantages";i:5249;s:17:"notveryadvantages";i:5250;s:12:"notadventure";i:5251;s:16:"notveryadventure";i:5252;s:16:"notadventuresome";i:5253;s:20:"notveryadventuresome";i:5254;s:14:"notadventurism";i:5255;s:18:"notveryadventurism";i:5256;s:14:"notadventurous";i:5257;s:18:"notveryadventurous";i:5258;s:9:"notadvice";i:5259;s:13:"notveryadvice";i:5260;s:12:"notadvisable";i:5261;s:16:"notveryadvisable";i:5262;s:11:"notadvocate";i:5263;s:15:"notveryadvocate";i:5264;s:11:"notadvocacy";i:5265;s:15:"notveryadvocacy";i:5266;s:13:"notaffability";i:5267;s:17:"notveryaffability";i:5268;s:10:"notaffably";i:5269;s:14:"notveryaffably";i:5270;s:12:"notaffection";i:5271;s:16:"notveryaffection";i:5272;s:11:"notaffinity";i:5273;s:15:"notveryaffinity";i:5274;s:9:"notaffirm";i:5275;s:13:"notveryaffirm";i:5276;s:14:"notaffirmation";i:5277;s:18:"notveryaffirmation";i:5278;s:11:"notaffluent";i:5279;s:15:"notveryaffluent";i:5280;s:12:"notaffluence";i:5281;s:16:"notveryaffluence";i:5282;s:9:"notafford";i:5283;s:13:"notveryafford";i:5284;s:13:"notaffordable";i:5285;s:17:"notveryaffordable";i:5286;s:9:"notafloat";i:5287;s:13:"notveryafloat";i:5288;s:10:"notagilely";i:5289;s:14:"notveryagilely";i:5290;s:10:"notagility";i:5291;s:14:"notveryagility";i:5292;s:8:"notagree";i:5293;s:12:"notveryagree";i:5294;s:15:"notagreeability";i:5295;s:19:"notveryagreeability";i:5296;s:16:"notagreeableness";i:5297;s:20:"notveryagreeableness";i:5298;s:12:"notagreeably";i:5299;s:16:"notveryagreeably";i:5300;s:12:"notagreement";i:5301;s:16:"notveryagreement";i:5302;s:8:"notallay";i:5303;s:12:"notveryallay";i:5304;s:12:"notalleviate";i:5305;s:16:"notveryalleviate";i:5306;s:12:"notallowable";i:5307;s:16:"notveryallowable";i:5308;s:9:"notallure";i:5309;s:13:"notveryallure";i:5310;s:13:"notalluringly";i:5311;s:17:"notveryalluringly";i:5312;s:7:"notally";i:5313;s:11:"notveryally";i:5314;s:11:"notalmighty";i:5315;s:15:"notveryalmighty";i:5316;s:11:"notaltruist";i:5317;s:15:"notveryaltruist";i:5318;s:17:"notaltruistically";i:5319;s:21:"notveryaltruistically";i:5320;s:8:"notamaze";i:5321;s:12:"notveryamaze";i:5322;s:9:"notamazed";i:5323;s:13:"notveryamazed";i:5324;s:12:"notamazement";i:5325;s:16:"notveryamazement";i:5326;s:12:"notamazingly";i:5327;s:16:"notveryamazingly";i:5328;s:14:"notambitiously";i:5329;s:18:"notveryambitiously";i:5330;s:13:"notameliorate";i:5331;s:17:"notveryameliorate";i:5332;s:11:"notamenable";i:5333;s:15:"notveryamenable";i:5334;s:10:"notamenity";i:5335;s:14:"notveryamenity";i:5336;s:13:"notamiability";i:5337;s:17:"notveryamiability";i:5338;s:11:"notamiabily";i:5339;s:15:"notveryamiabily";i:5340;s:14:"notamicability";i:5341;s:18:"notveryamicability";i:5342;s:11:"notamicably";i:5343;s:15:"notveryamicably";i:5344;s:8:"notamity";i:5345;s:12:"notveryamity";i:5346;s:10:"notamnesty";i:5347;s:14:"notveryamnesty";i:5348;s:8:"notamour";i:5349;s:12:"notveryamour";i:5350;s:8:"notample";i:5351;s:12:"notveryample";i:5352;s:8:"notamply";i:5353;s:12:"notveryamply";i:5354;s:8:"notamuse";i:5355;s:12:"notveryamuse";i:5356;s:12:"notamusement";i:5357;s:16:"notveryamusement";i:5358;s:10:"notamusing";i:5359;s:14:"notveryamusing";i:5360;s:12:"notamusingly";i:5361;s:16:"notveryamusingly";i:5362;s:8:"notangel";i:5363;s:12:"notveryangel";i:5364;s:10:"notangelic";i:5365;s:14:"notveryangelic";i:5366;s:11:"notanimated";i:5367;s:15:"notveryanimated";i:5368;s:10:"notapostle";i:5369;s:14:"notveryapostle";i:5370;s:13:"notapotheosis";i:5371;s:17:"notveryapotheosis";i:5372;s:9:"notappeal";i:5373;s:13:"notveryappeal";i:5374;s:12:"notappealing";i:5375;s:16:"notveryappealing";i:5376;s:10:"notappease";i:5377;s:14:"notveryappease";i:5378;s:10:"notapplaud";i:5379;s:14:"notveryapplaud";i:5380;s:14:"notappreciable";i:5381;s:18:"notveryappreciable";i:5382;s:15:"notappreciation";i:5383;s:19:"notveryappreciation";i:5384;s:17:"notappreciatively";i:5385;s:21:"notveryappreciatively";i:5386;s:19:"notappreciativeness";i:5387;s:23:"notveryappreciativeness";i:5388;s:11:"notapproval";i:5389;s:15:"notveryapproval";i:5390;s:10:"notapprove";i:5391;s:14:"notveryapprove";i:5392;s:6:"notapt";i:5393;s:10:"notveryapt";i:5394;s:8:"notaptly";i:5395;s:12:"notveryaptly";i:5396;s:11:"notaptitude";i:5397;s:15:"notveryaptitude";i:5398;s:9:"notardent";i:5399;s:13:"notveryardent";i:5400;s:11:"notardently";i:5401;s:15:"notveryardently";i:5402;s:8:"notardor";i:5403;s:12:"notveryardor";i:5404;s:15:"notaristocratic";i:5405;s:19:"notveryaristocratic";i:5406;s:10:"notarousal";i:5407;s:14:"notveryarousal";i:5408;s:9:"notarouse";i:5409;s:13:"notveryarouse";i:5410;s:11:"notarousing";i:5411;s:15:"notveryarousing";i:5412;s:12:"notarresting";i:5413;s:16:"notveryarresting";i:5414;s:13:"notarticulate";i:5415;s:17:"notveryarticulate";i:5416;s:12:"notascendant";i:5417;s:16:"notveryascendant";i:5418;s:16:"notascertainable";i:5419;s:20:"notveryascertainable";i:5420;s:13:"notaspiration";i:5421;s:17:"notveryaspiration";i:5422;s:14:"notaspirations";i:5423;s:18:"notveryaspirations";i:5424;s:9:"notaspire";i:5425;s:13:"notveryaspire";i:5426;s:9:"notassent";i:5427;s:13:"notveryassent";i:5428;s:13:"notassertions";i:5429;s:17:"notveryassertions";i:5430;s:12:"notassertive";i:5431;s:16:"notveryassertive";i:5432;s:8:"notasset";i:5433;s:12:"notveryasset";i:5434;s:12:"notassiduous";i:5435;s:16:"notveryassiduous";i:5436;s:14:"notassiduously";i:5437;s:18:"notveryassiduously";i:5438;s:10:"notassuage";i:5439;s:14:"notveryassuage";i:5440;s:12:"notassurance";i:5441;s:16:"notveryassurance";i:5442;s:13:"notassurances";i:5443;s:17:"notveryassurances";i:5444;s:9:"notassure";i:5445;s:13:"notveryassure";i:5446;s:12:"notassuredly";i:5447;s:16:"notveryassuredly";i:5448;s:11:"notastonish";i:5449;s:15:"notveryastonish";i:5450;s:13:"notastonished";i:5451;s:17:"notveryastonished";i:5452;s:14:"notastonishing";i:5453;s:18:"notveryastonishing";i:5454;s:16:"notastonishingly";i:5455;s:20:"notveryastonishingly";i:5456;s:15:"notastonishment";i:5457;s:19:"notveryastonishment";i:5458;s:10:"notastound";i:5459;s:14:"notveryastound";i:5460;s:12:"notastounded";i:5461;s:16:"notveryastounded";i:5462;s:13:"notastounding";i:5463;s:17:"notveryastounding";i:5464;s:15:"notastoundingly";i:5465;s:19:"notveryastoundingly";i:5466;s:11:"notastutely";i:5467;s:15:"notveryastutely";i:5468;s:9:"notasylum";i:5469;s:13:"notveryasylum";i:5470;s:9:"notattain";i:5471;s:13:"notveryattain";i:5472;s:13:"notattainable";i:5473;s:17:"notveryattainable";i:5474;s:9:"notattest";i:5475;s:13:"notveryattest";i:5476;s:13:"notattraction";i:5477;s:17:"notveryattraction";i:5478;s:15:"notattractively";i:5479;s:19:"notveryattractively";i:5480;s:9:"notattune";i:5481;s:13:"notveryattune";i:5482;s:13:"notauspicious";i:5483;s:17:"notveryauspicious";i:5484;s:8:"notaward";i:5485;s:12:"notveryaward";i:5486;s:7:"notaver";i:5487;s:11:"notveryaver";i:5488;s:7:"notavid";i:5489;s:11:"notveryavid";i:5490;s:9:"notavidly";i:5491;s:13:"notveryavidly";i:5492;s:6:"notawe";i:5493;s:10:"notveryawe";i:5494;s:7:"notawed";i:5495;s:11:"notveryawed";i:5496;s:12:"notawesomely";i:5497;s:16:"notveryawesomely";i:5498;s:14:"notawesomeness";i:5499;s:18:"notveryawesomeness";i:5500;s:12:"notawestruck";i:5501;s:16:"notveryawestruck";i:5502;s:7:"notback";i:5503;s:11:"notveryback";i:5504;s:11:"notbackbone";i:5505;s:15:"notverybackbone";i:5506;s:10:"notbargain";i:5507;s:14:"notverybargain";i:5508;s:8:"notbasic";i:5509;s:12:"notverybasic";i:5510;s:7:"notbask";i:5511;s:11:"notverybask";i:5512;s:9:"notbeacon";i:5513;s:13:"notverybeacon";i:5514;s:10:"notbeatify";i:5515;s:14:"notverybeatify";i:5516;s:12:"notbeauteous";i:5517;s:16:"notverybeauteous";i:5518;s:14:"notbeautifully";i:5519;s:18:"notverybeautifully";i:5520;s:11:"notbeautify";i:5521;s:15:"notverybeautify";i:5522;s:9:"notbeauty";i:5523;s:13:"notverybeauty";i:5524;s:8:"notbefit";i:5525;s:12:"notverybefit";i:5526;s:12:"notbefitting";i:5527;s:16:"notverybefitting";i:5528;s:11:"notbefriend";i:5529;s:15:"notverybefriend";i:5530;s:10:"notbeloved";i:5531;s:14:"notverybeloved";i:5532;s:13:"notbenefactor";i:5533;s:17:"notverybenefactor";i:5534;s:13:"notbeneficial";i:5535;s:17:"notverybeneficial";i:5536;s:15:"notbeneficially";i:5537;s:19:"notverybeneficially";i:5538;s:14:"notbeneficiary";i:5539;s:18:"notverybeneficiary";i:5540;s:10:"notbenefit";i:5541;s:14:"notverybenefit";i:5542;s:11:"notbenefits";i:5543;s:15:"notverybenefits";i:5544;s:14:"notbenevolence";i:5545;s:18:"notverybenevolence";i:5546;s:13:"notbest-known";i:5547;s:17:"notverybest-known";i:5548;s:18:"notbest-performing";i:5549;s:22:"notverybest-performing";i:5550;s:15:"notbest-selling";i:5551;s:19:"notverybest-selling";i:5552;s:15:"notbetter-known";i:5553;s:19:"notverybetter-known";i:5554;s:23:"notbetter-than-expected";i:5555;s:27:"notverybetter-than-expected";i:5556;s:12:"notblameless";i:5557;s:16:"notveryblameless";i:5558;s:8:"notbless";i:5559;s:12:"notverybless";i:5560;s:11:"notblessing";i:5561;s:15:"notveryblessing";i:5562;s:8:"notbliss";i:5563;s:12:"notverybliss";i:5564;s:13:"notblissfully";i:5565;s:17:"notveryblissfully";i:5566;s:9:"notblithe";i:5567;s:13:"notveryblithe";i:5568;s:8:"notbloom";i:5569;s:12:"notverybloom";i:5570;s:10:"notblossom";i:5571;s:14:"notveryblossom";i:5572;s:8:"notboast";i:5573;s:12:"notveryboast";i:5574;s:9:"notboldly";i:5575;s:13:"notveryboldly";i:5576;s:11:"notboldness";i:5577;s:15:"notveryboldness";i:5578;s:10:"notbolster";i:5579;s:14:"notverybolster";i:5580;s:8:"notbonny";i:5581;s:12:"notverybonny";i:5582;s:8:"notbonus";i:5583;s:12:"notverybonus";i:5584;s:7:"notboom";i:5585;s:11:"notveryboom";i:5586;s:10:"notbooming";i:5587;s:14:"notverybooming";i:5588;s:8:"notboost";i:5589;s:12:"notveryboost";i:5590;s:12:"notboundless";i:5591;s:16:"notveryboundless";i:5592;s:12:"notbountiful";i:5593;s:16:"notverybountiful";i:5594;s:9:"notbrains";i:5595;s:13:"notverybrains";i:5596;s:10:"notbravery";i:5597;s:14:"notverybravery";i:5598;s:15:"notbreakthrough";i:5599;s:19:"notverybreakthrough";i:5600;s:16:"notbreakthroughs";i:5601;s:20:"notverybreakthroughs";i:5602;s:17:"notbreathlessness";i:5603;s:21:"notverybreathlessness";i:5604;s:15:"notbreathtaking";i:5605;s:19:"notverybreathtaking";i:5606;s:17:"notbreathtakingly";i:5607;s:21:"notverybreathtakingly";i:5608;s:11:"notbrighten";i:5609;s:15:"notverybrighten";i:5610;s:13:"notbrightness";i:5611;s:17:"notverybrightness";i:5612;s:13:"notbrilliance";i:5613;s:17:"notverybrilliance";i:5614;s:14:"notbrilliantly";i:5615;s:18:"notverybrilliantly";i:5616;s:8:"notbrisk";i:5617;s:12:"notverybrisk";i:5618;s:8:"notbroad";i:5619;s:12:"notverybroad";i:5620;s:8:"notbrook";i:5621;s:12:"notverybrook";i:5622;s:12:"notbrotherly";i:5623;s:16:"notverybrotherly";i:5624;s:7:"notbull";i:5625;s:11:"notverybull";i:5626;s:10:"notbullish";i:5627;s:14:"notverybullish";i:5628;s:10:"notbuoyant";i:5629;s:14:"notverybuoyant";i:5630;s:10:"notcalming";i:5631;s:14:"notverycalming";i:5632;s:11:"notcalmness";i:5633;s:15:"notverycalmness";i:5634;s:9:"notcandor";i:5635;s:13:"notverycandor";i:5636;s:10:"notcapable";i:5637;s:14:"notverycapable";i:5638;s:13:"notcapability";i:5639;s:17:"notverycapability";i:5640;s:10:"notcapably";i:5641;s:14:"notverycapably";i:5642;s:13:"notcapitalize";i:5643;s:17:"notverycapitalize";i:5644;s:12:"notcaptivate";i:5645;s:16:"notverycaptivate";i:5646;s:14:"notcaptivation";i:5647;s:18:"notverycaptivation";i:5648;s:7:"notcare";i:5649;s:11:"notverycare";i:5650;s:11:"notcarefree";i:5651;s:15:"notverycarefree";i:5652;s:10:"notcareful";i:5653;s:14:"notverycareful";i:5654;s:11:"notcatalyst";i:5655;s:15:"notverycatalyst";i:5656;s:9:"notcatchy";i:5657;s:13:"notverycatchy";i:5658;s:12:"notcelebrate";i:5659;s:16:"notverycelebrate";i:5660;s:13:"notcelebrated";i:5661;s:17:"notverycelebrated";i:5662;s:14:"notcelebration";i:5663;s:18:"notverycelebration";i:5664;s:14:"notcelebratory";i:5665;s:18:"notverycelebratory";i:5666;s:12:"notcelebrity";i:5667;s:16:"notverycelebrity";i:5668;s:11:"notchampion";i:5669;s:15:"notverychampion";i:5670;s:8:"notchamp";i:5671;s:12:"notverychamp";i:5672;s:14:"notcharismatic";i:5673;s:18:"notverycharismatic";i:5674;s:10:"notcharity";i:5675;s:14:"notverycharity";i:5676;s:8:"notcharm";i:5677;s:12:"notverycharm";i:5678;s:13:"notcharmingly";i:5679;s:17:"notverycharmingly";i:5680;s:8:"notcheer";i:5681;s:12:"notverycheer";i:5682;s:9:"notcheery";i:5683;s:13:"notverycheery";i:5684;s:10:"notcherish";i:5685;s:14:"notverycherish";i:5686;s:12:"notcherished";i:5687;s:16:"notverycherished";i:5688;s:9:"notcherub";i:5689;s:13:"notverycherub";i:5690;s:11:"notchivalry";i:5691;s:15:"notverychivalry";i:5692;s:13:"notchivalrous";i:5693;s:17:"notverychivalrous";i:5694;s:7:"notchum";i:5695;s:11:"notverychum";i:5696;s:11:"notcivility";i:5697;s:15:"notverycivility";i:5698;s:15:"notcivilization";i:5699;s:19:"notverycivilization";i:5700;s:11:"notcivilize";i:5701;s:15:"notverycivilize";i:5702;s:10:"notclarity";i:5703;s:14:"notveryclarity";i:5704;s:10:"notclassic";i:5705;s:14:"notveryclassic";i:5706;s:8:"notclean";i:5707;s:12:"notveryclean";i:5708;s:14:"notcleanliness";i:5709;s:18:"notverycleanliness";i:5710;s:10:"notcleanse";i:5711;s:14:"notverycleanse";i:5712;s:8:"notclear";i:5713;s:12:"notveryclear";i:5714;s:12:"notclear-cut";i:5715;s:16:"notveryclear-cut";i:5716;s:10:"notclearer";i:5717;s:14:"notveryclearer";i:5718;s:9:"notclever";i:5719;s:13:"notveryclever";i:5720;s:12:"notcloseness";i:5721;s:16:"notverycloseness";i:5722;s:8:"notclout";i:5723;s:12:"notveryclout";i:5724;s:15:"notco-operation";i:5725;s:19:"notveryco-operation";i:5726;s:7:"notcoax";i:5727;s:11:"notverycoax";i:5728;s:9:"notcoddle";i:5729;s:13:"notverycoddle";i:5730;s:9:"notcogent";i:5731;s:13:"notverycogent";i:5732;s:11:"notcohesive";i:5733;s:15:"notverycohesive";i:5734;s:9:"notcohere";i:5735;s:13:"notverycohere";i:5736;s:12:"notcoherence";i:5737;s:16:"notverycoherence";i:5738;s:11:"notcoherent";i:5739;s:15:"notverycoherent";i:5740;s:11:"notcohesion";i:5741;s:15:"notverycohesion";i:5742;s:11:"notcolossal";i:5743;s:15:"notverycolossal";i:5744;s:11:"notcomeback";i:5745;s:15:"notverycomeback";i:5746;s:10:"notcomfort";i:5747;s:14:"notverycomfort";i:5748;s:14:"notcomfortably";i:5749;s:18:"notverycomfortably";i:5750;s:13:"notcomforting";i:5751;s:17:"notverycomforting";i:5752;s:10:"notcommend";i:5753;s:14:"notverycommend";i:5754;s:14:"notcommendably";i:5755;s:18:"notverycommendably";i:5756;s:15:"notcommensurate";i:5757;s:19:"notverycommensurate";i:5758;s:14:"notcommonsense";i:5759;s:18:"notverycommonsense";i:5760;s:17:"notcommonsensible";i:5761;s:21:"notverycommonsensible";i:5762;s:17:"notcommonsensibly";i:5763;s:21:"notverycommonsensibly";i:5764;s:17:"notcommonsensical";i:5765;s:21:"notverycommonsensical";i:5766;s:13:"notcommodious";i:5767;s:17:"notverycommodious";i:5768;s:13:"notcommitment";i:5769;s:17:"notverycommitment";i:5770;s:10:"notcompact";i:5771;s:14:"notverycompact";i:5772;s:13:"notcompassion";i:5773;s:17:"notverycompassion";i:5774;s:13:"notcompelling";i:5775;s:17:"notverycompelling";i:5776;s:13:"notcompensate";i:5777;s:17:"notverycompensate";i:5778;s:13:"notcompetence";i:5779;s:17:"notverycompetence";i:5780;s:13:"notcompetency";i:5781;s:17:"notverycompetency";i:5782;s:18:"notcompetitiveness";i:5783;s:22:"notverycompetitiveness";i:5784;s:13:"notcomplement";i:5785;s:17:"notverycomplement";i:5786;s:12:"notcompliant";i:5787;s:16:"notverycompliant";i:5788;s:13:"notcompliment";i:5789;s:17:"notverycompliment";i:5790;s:16:"notcomplimentary";i:5791;s:20:"notverycomplimentary";i:5792;s:16:"notcomprehensive";i:5793;s:20:"notverycomprehensive";i:5794;s:13:"notcompromise";i:5795;s:17:"notverycompromise";i:5796;s:14:"notcompromises";i:5797;s:18:"notverycompromises";i:5798;s:11:"notcomrades";i:5799;s:15:"notverycomrades";i:5800;s:14:"notconceivable";i:5801;s:18:"notveryconceivable";i:5802;s:13:"notconciliate";i:5803;s:17:"notveryconciliate";i:5804;s:13:"notconclusive";i:5805;s:17:"notveryconclusive";i:5806;s:11:"notconcrete";i:5807;s:15:"notveryconcrete";i:5808;s:9:"notconcur";i:5809;s:13:"notveryconcur";i:5810;s:10:"notcondone";i:5811;s:14:"notverycondone";i:5812;s:12:"notconducive";i:5813;s:16:"notveryconducive";i:5814;s:9:"notconfer";i:5815;s:13:"notveryconfer";i:5816;s:13:"notconfidence";i:5817;s:17:"notveryconfidence";i:5818;s:10:"notconfute";i:5819;s:14:"notveryconfute";i:5820;s:15:"notcongratulate";i:5821;s:19:"notverycongratulate";i:5822;s:18:"notcongratulations";i:5823;s:22:"notverycongratulations";i:5824;s:17:"notcongratulatory";i:5825;s:21:"notverycongratulatory";i:5826;s:10:"notconquer";i:5827;s:14:"notveryconquer";i:5828;s:13:"notconscience";i:5829;s:17:"notveryconscience";i:5830;s:16:"notconscientious";i:5831;s:20:"notveryconscientious";i:5832;s:12:"notconsensus";i:5833;s:16:"notveryconsensus";i:5834;s:10:"notconsent";i:5835;s:14:"notveryconsent";i:5836;s:10:"notconsole";i:5837;s:14:"notveryconsole";i:5838;s:12:"notconstancy";i:5839;s:16:"notveryconstancy";i:5840;s:15:"notconstructive";i:5841;s:19:"notveryconstructive";i:5842;s:14:"notcontentment";i:5843;s:18:"notverycontentment";i:5844;s:13:"notcontinuity";i:5845;s:17:"notverycontinuity";i:5846;s:15:"notcontribution";i:5847;s:19:"notverycontribution";i:5848;s:13:"notconvenient";i:5849;s:17:"notveryconvenient";i:5850;s:15:"notconveniently";i:5851;s:19:"notveryconveniently";i:5852;s:13:"notconviction";i:5853;s:17:"notveryconviction";i:5854;s:11:"notconvince";i:5855;s:15:"notveryconvince";i:5856;s:15:"notconvincingly";i:5857;s:19:"notveryconvincingly";i:5858;s:12:"notcooperate";i:5859;s:16:"notverycooperate";i:5860;s:14:"notcooperation";i:5861;s:18:"notverycooperation";i:5862;s:14:"notcooperative";i:5863;s:18:"notverycooperative";i:5864;s:16:"notcooperatively";i:5865;s:20:"notverycooperatively";i:5866;s:14:"notcornerstone";i:5867;s:18:"notverycornerstone";i:5868;s:10:"notcorrect";i:5869;s:14:"notverycorrect";i:5870;s:12:"notcorrectly";i:5871;s:16:"notverycorrectly";i:5872;s:17:"notcost-effective";i:5873;s:21:"notverycost-effective";i:5874;s:14:"notcost-saving";i:5875;s:18:"notverycost-saving";i:5876;s:10:"notcourage";i:5877;s:14:"notverycourage";i:5878;s:15:"notcourageously";i:5879;s:19:"notverycourageously";i:5880;s:17:"notcourageousness";i:5881;s:21:"notverycourageousness";i:5882;s:8:"notcourt";i:5883;s:12:"notverycourt";i:5884;s:11:"notcourtesy";i:5885;s:15:"notverycourtesy";i:5886;s:10:"notcourtly";i:5887;s:14:"notverycourtly";i:5888;s:11:"notcovenant";i:5889;s:15:"notverycovenant";i:5890;s:8:"notcovet";i:5891;s:12:"notverycovet";i:5892;s:11:"notcoveting";i:5893;s:15:"notverycoveting";i:5894;s:13:"notcovetingly";i:5895;s:17:"notverycovetingly";i:5896;s:8:"notcrave";i:5897;s:12:"notverycrave";i:5898;s:10:"notcraving";i:5899;s:14:"notverycraving";i:5900;s:11:"notcredence";i:5901;s:15:"notverycredence";i:5902;s:8:"notcrisp";i:5903;s:12:"notverycrisp";i:5904;s:10:"notcrusade";i:5905;s:14:"notverycrusade";i:5906;s:11:"notcrusader";i:5907;s:15:"notverycrusader";i:5908;s:11:"notcure-all";i:5909;s:15:"notverycure-all";i:5910;s:10:"notcurious";i:5911;s:14:"notverycurious";i:5912;s:12:"notcuriously";i:5913;s:16:"notverycuriously";i:5914;s:8:"notdance";i:5915;s:12:"notverydance";i:5916;s:7:"notdare";i:5917;s:11:"notverydare";i:5918;s:11:"notdaringly";i:5919;s:15:"notverydaringly";i:5920;s:10:"notdarling";i:5921;s:14:"notverydarling";i:5922;s:10:"notdashing";i:5923;s:14:"notverydashing";i:5924;s:12:"notdauntless";i:5925;s:16:"notverydauntless";i:5926;s:7:"notdawn";i:5927;s:11:"notverydawn";i:5928;s:11:"notdaydream";i:5929;s:15:"notverydaydream";i:5930;s:13:"notdaydreamer";i:5931;s:17:"notverydaydreamer";i:5932;s:9:"notdazzle";i:5933;s:13:"notverydazzle";i:5934;s:10:"notdazzled";i:5935;s:14:"notverydazzled";i:5936;s:11:"notdazzling";i:5937;s:15:"notverydazzling";i:5938;s:7:"notdeal";i:5939;s:11:"notverydeal";i:5940;s:7:"notdear";i:5941;s:11:"notverydear";i:5942;s:10:"notdecency";i:5943;s:14:"notverydecency";i:5944;s:15:"notdecisiveness";i:5945;s:19:"notverydecisiveness";i:5946;s:9:"notdefend";i:5947;s:13:"notverydefend";i:5948;s:11:"notdefender";i:5949;s:15:"notverydefender";i:5950;s:12:"notdeference";i:5951;s:16:"notverydeference";i:5952;s:10:"notdefense";i:5953;s:14:"notverydefense";i:5954;s:11:"notdefinite";i:5955;s:15:"notverydefinite";i:5956;s:13:"notdefinitive";i:5957;s:17:"notverydefinitive";i:5958;s:15:"notdefinitively";i:5959;s:19:"notverydefinitively";i:5960;s:15:"notdeflationary";i:5961;s:19:"notverydeflationary";i:5962;s:7:"notdeft";i:5963;s:11:"notverydeft";i:5964;s:11:"notdelicacy";i:5965;s:15:"notverydelicacy";i:5966;s:12:"notdelicious";i:5967;s:16:"notverydelicious";i:5968;s:10:"notdelight";i:5969;s:14:"notverydelight";i:5970;s:12:"notdelighted";i:5971;s:16:"notverydelighted";i:5972;s:15:"notdelightfully";i:5973;s:19:"notverydelightfully";i:5974;s:17:"notdelightfulness";i:5975;s:21:"notverydelightfulness";i:5976;s:12:"notdemystify";i:5977;s:16:"notverydemystify";i:5978;s:10:"notdeserve";i:5979;s:14:"notverydeserve";i:5980;s:11:"notdeserved";i:5981;s:15:"notverydeserved";i:5982;s:13:"notdeservedly";i:5983;s:17:"notverydeservedly";i:5984;s:9:"notdesire";i:5985;s:13:"notverydesire";i:5986;s:11:"notdesirous";i:5987;s:15:"notverydesirous";i:5988;s:10:"notdestine";i:5989;s:14:"notverydestine";i:5990;s:11:"notdestined";i:5991;s:15:"notverydestined";i:5992;s:12:"notdestinies";i:5993;s:16:"notverydestinies";i:5994;s:10:"notdestiny";i:5995;s:14:"notverydestiny";i:5996;s:16:"notdetermination";i:5997;s:20:"notverydetermination";i:5998;s:9:"notdevote";i:5999;s:13:"notverydevote";i:6000;s:10:"notdevotee";i:6001;s:14:"notverydevotee";i:6002;s:11:"notdevotion";i:6003;s:15:"notverydevotion";i:6004;s:9:"notdevout";i:6005;s:13:"notverydevout";i:6006;s:12:"notdexterity";i:6007;s:16:"notverydexterity";i:6008;s:12:"notdexterous";i:6009;s:16:"notverydexterous";i:6010;s:14:"notdexterously";i:6011;s:18:"notverydexterously";i:6012;s:11:"notdextrous";i:6013;s:15:"notverydextrous";i:6014;s:6:"notdig";i:6015;s:10:"notverydig";i:6016;s:10:"notdignify";i:6017;s:14:"notverydignify";i:6018;s:10:"notdignity";i:6019;s:14:"notverydignity";i:6020;s:12:"notdiligence";i:6021;s:16:"notverydiligence";i:6022;s:13:"notdiligently";i:6023;s:17:"notverydiligently";i:6024;s:11:"notdiscreet";i:6025;s:15:"notverydiscreet";i:6026;s:13:"notdiscretion";i:6027;s:17:"notverydiscretion";i:6028;s:19:"notdiscriminatingly";i:6029;s:23:"notverydiscriminatingly";i:6030;s:11:"notdistinct";i:6031;s:15:"notverydistinct";i:6032;s:14:"notdistinction";i:6033;s:18:"notverydistinction";i:6034;s:14:"notdistinguish";i:6035;s:18:"notverydistinguish";i:6036;s:16:"notdistinguished";i:6037;s:20:"notverydistinguished";i:6038;s:14:"notdiversified";i:6039;s:18:"notverydiversified";i:6040;s:9:"notdivine";i:6041;s:13:"notverydivine";i:6042;s:11:"notdivinely";i:6043;s:15:"notverydivinely";i:6044;s:8:"notdodge";i:6045;s:12:"notverydodge";i:6046;s:7:"notdote";i:6047;s:11:"notverydote";i:6048;s:11:"notdotingly";i:6049;s:15:"notverydotingly";i:6050;s:12:"notdoubtless";i:6051;s:16:"notverydoubtless";i:6052;s:8:"notdream";i:6053;s:12:"notverydream";i:6054;s:12:"notdreamland";i:6055;s:16:"notverydreamland";i:6056;s:9:"notdreams";i:6057;s:13:"notverydreams";i:6058;s:9:"notdreamy";i:6059;s:13:"notverydreamy";i:6060;s:8:"notdrive";i:6061;s:12:"notverydrive";i:6062;s:9:"notdriven";i:6063;s:13:"notverydriven";i:6064;s:10:"notdurable";i:6065;s:14:"notverydurable";i:6066;s:13:"notdurability";i:6067;s:17:"notverydurability";i:6068;s:10:"notdynamic";i:6069;s:14:"notverydynamic";i:6070;s:8:"noteager";i:6071;s:12:"notveryeager";i:6072;s:10:"noteagerly";i:6073;s:14:"notveryeagerly";i:6074;s:12:"noteagerness";i:6075;s:16:"notveryeagerness";i:6076;s:12:"notearnestly";i:6077;s:16:"notveryearnestly";i:6078;s:14:"notearnestness";i:6079;s:18:"notveryearnestness";i:6080;s:7:"notease";i:6081;s:11:"notveryease";i:6082;s:9:"noteasier";i:6083;s:13:"notveryeasier";i:6084;s:10:"noteasiest";i:6085;s:14:"notveryeasiest";i:6086;s:9:"noteasily";i:6087;s:13:"notveryeasily";i:6088;s:11:"noteasiness";i:6089;s:15:"notveryeasiness";i:6090;s:7:"noteasy";i:6091;s:11:"notveryeasy";i:6092;s:12:"noteasygoing";i:6093;s:16:"notveryeasygoing";i:6094;s:13:"notebullience";i:6095;s:17:"notveryebullience";i:6096;s:12:"notebullient";i:6097;s:16:"notveryebullient";i:6098;s:14:"notebulliently";i:6099;s:18:"notveryebulliently";i:6100;s:11:"noteclectic";i:6101;s:15:"notveryeclectic";i:6102;s:13:"noteconomical";i:6103;s:17:"notveryeconomical";i:6104;s:12:"notecstasies";i:6105;s:16:"notveryecstasies";i:6106;s:10:"notecstasy";i:6107;s:14:"notveryecstasy";i:6108;s:15:"notecstatically";i:6109;s:19:"notveryecstatically";i:6110;s:8:"notedify";i:6111;s:12:"notveryedify";i:6112;s:11:"noteducable";i:6113;s:15:"notveryeducable";i:6114;s:11:"noteducated";i:6115;s:15:"notveryeducated";i:6116;s:14:"noteducational";i:6117;s:18:"notveryeducational";i:6118;s:12:"noteffective";i:6119;s:16:"notveryeffective";i:6120;s:16:"noteffectiveness";i:6121;s:20:"notveryeffectiveness";i:6122;s:12:"noteffectual";i:6123;s:16:"notveryeffectual";i:6124;s:14:"notefficacious";i:6125;s:18:"notveryefficacious";i:6126;s:13:"notefficiency";i:6127;s:17:"notveryefficiency";i:6128;s:13:"noteffortless";i:6129;s:17:"notveryeffortless";i:6130;s:15:"noteffortlessly";i:6131;s:19:"notveryeffortlessly";i:6132;s:11:"noteffusion";i:6133;s:15:"notveryeffusion";i:6134;s:11:"noteffusive";i:6135;s:15:"notveryeffusive";i:6136;s:13:"noteffusively";i:6137;s:17:"notveryeffusively";i:6138;s:15:"noteffusiveness";i:6139;s:19:"notveryeffusiveness";i:6140;s:14:"notegalitarian";i:6141;s:18:"notveryegalitarian";i:6142;s:7:"notelan";i:6143;s:11:"notveryelan";i:6144;s:8:"notelate";i:6145;s:12:"notveryelate";i:6146;s:11:"notelatedly";i:6147;s:15:"notveryelatedly";i:6148;s:10:"notelation";i:6149;s:14:"notveryelation";i:6150;s:18:"notelectrification";i:6151;s:22:"notveryelectrification";i:6152;s:12:"notelectrify";i:6153;s:16:"notveryelectrify";i:6154;s:11:"notelegance";i:6155;s:15:"notveryelegance";i:6156;s:12:"notelegantly";i:6157;s:16:"notveryelegantly";i:6158;s:10:"notelevate";i:6159;s:14:"notveryelevate";i:6160;s:11:"notelevated";i:6161;s:15:"notveryelevated";i:6162;s:11:"noteligible";i:6163;s:15:"notveryeligible";i:6164;s:8:"notelite";i:6165;s:12:"notveryelite";i:6166;s:12:"noteloquence";i:6167;s:16:"notveryeloquence";i:6168;s:13:"noteloquently";i:6169;s:17:"notveryeloquently";i:6170;s:13:"notemancipate";i:6171;s:17:"notveryemancipate";i:6172;s:12:"notembellish";i:6173;s:16:"notveryembellish";i:6174;s:11:"notembolden";i:6175;s:15:"notveryembolden";i:6176;s:10:"notembrace";i:6177;s:14:"notveryembrace";i:6178;s:11:"noteminence";i:6179;s:15:"notveryeminence";i:6180;s:10:"noteminent";i:6181;s:14:"notveryeminent";i:6182;s:10:"notempower";i:6183;s:14:"notveryempower";i:6184;s:14:"notempowerment";i:6185;s:18:"notveryempowerment";i:6186;s:9:"notenable";i:6187;s:13:"notveryenable";i:6188;s:10:"notenchant";i:6189;s:14:"notveryenchant";i:6190;s:13:"notenchanting";i:6191;s:17:"notveryenchanting";i:6192;s:15:"notenchantingly";i:6193;s:19:"notveryenchantingly";i:6194;s:12:"notencourage";i:6195;s:16:"notveryencourage";i:6196;s:16:"notencouragement";i:6197;s:20:"notveryencouragement";i:6198;s:16:"notencouragingly";i:6199;s:20:"notveryencouragingly";i:6200;s:9:"notendear";i:6201;s:13:"notveryendear";i:6202;s:12:"notendearing";i:6203;s:16:"notveryendearing";i:6204;s:10:"notendorse";i:6205;s:14:"notveryendorse";i:6206;s:14:"notendorsement";i:6207;s:18:"notveryendorsement";i:6208;s:11:"notendorser";i:6209;s:15:"notveryendorser";i:6210;s:12:"notendurable";i:6211;s:16:"notveryendurable";i:6212;s:9:"notendure";i:6213;s:13:"notveryendure";i:6214;s:11:"notenduring";i:6215;s:15:"notveryenduring";i:6216;s:11:"notenergize";i:6217;s:15:"notveryenergize";i:6218;s:13:"notengrossing";i:6219;s:17:"notveryengrossing";i:6220;s:10:"notenhance";i:6221;s:14:"notveryenhance";i:6222;s:11:"notenhanced";i:6223;s:15:"notveryenhanced";i:6224;s:14:"notenhancement";i:6225;s:18:"notveryenhancement";i:6226;s:8:"notenjoy";i:6227;s:12:"notveryenjoy";i:6228;s:12:"notenjoyable";i:6229;s:16:"notveryenjoyable";i:6230;s:12:"notenjoyably";i:6231;s:16:"notveryenjoyably";i:6232;s:12:"notenjoyment";i:6233;s:16:"notveryenjoyment";i:6234;s:12:"notenlighten";i:6235;s:16:"notveryenlighten";i:6236;s:16:"notenlightenment";i:6237;s:20:"notveryenlightenment";i:6238;s:10:"notenliven";i:6239;s:14:"notveryenliven";i:6240;s:10:"notennoble";i:6241;s:14:"notveryennoble";i:6242;s:9:"notenrapt";i:6243;s:13:"notveryenrapt";i:6244;s:12:"notenrapture";i:6245;s:16:"notveryenrapture";i:6246;s:13:"notenraptured";i:6247;s:17:"notveryenraptured";i:6248;s:9:"notenrich";i:6249;s:13:"notveryenrich";i:6250;s:13:"notenrichment";i:6251;s:17:"notveryenrichment";i:6252;s:9:"notensure";i:6253;s:13:"notveryensure";i:6254;s:12:"notentertain";i:6255;s:16:"notveryentertain";i:6256;s:10:"notenthral";i:6257;s:14:"notveryenthral";i:6258;s:11:"notenthrall";i:6259;s:15:"notveryenthrall";i:6260;s:13:"notenthralled";i:6261;s:17:"notveryenthralled";i:6262;s:10:"notenthuse";i:6263;s:14:"notveryenthuse";i:6264;s:13:"notenthusiasm";i:6265;s:17:"notveryenthusiasm";i:6266;s:13:"notenthusiast";i:6267;s:17:"notveryenthusiast";i:6268;s:19:"notenthusiastically";i:6269;s:23:"notveryenthusiastically";i:6270;s:9:"notentice";i:6271;s:13:"notveryentice";i:6272;s:11:"notenticing";i:6273;s:15:"notveryenticing";i:6274;s:13:"notenticingly";i:6275;s:17:"notveryenticingly";i:6276;s:11:"notentrance";i:6277;s:15:"notveryentrance";i:6278;s:12:"notentranced";i:6279;s:16:"notveryentranced";i:6280;s:13:"notentrancing";i:6281;s:17:"notveryentrancing";i:6282;s:10:"notentreat";i:6283;s:14:"notveryentreat";i:6284;s:15:"notentreatingly";i:6285;s:19:"notveryentreatingly";i:6286;s:10:"notentrust";i:6287;s:14:"notveryentrust";i:6288;s:11:"notenviable";i:6289;s:15:"notveryenviable";i:6290;s:11:"notenviably";i:6291;s:15:"notveryenviably";i:6292;s:11:"notenvision";i:6293;s:15:"notveryenvision";i:6294;s:12:"notenvisions";i:6295;s:16:"notveryenvisions";i:6296;s:7:"notepic";i:6297;s:11:"notveryepic";i:6298;s:10:"notepitome";i:6299;s:14:"notveryepitome";i:6300;s:11:"notequality";i:6301;s:15:"notveryequality";i:6302;s:12:"notequitable";i:6303;s:16:"notveryequitable";i:6304;s:10:"noterudite";i:6305;s:14:"notveryerudite";i:6306;s:12:"notessential";i:6307;s:16:"notveryessential";i:6308;s:9:"notesteem";i:6309;s:13:"notveryesteem";i:6310;s:11:"noteternity";i:6311;s:15:"notveryeternity";i:6312;s:11:"noteulogize";i:6313;s:15:"notveryeulogize";i:6314;s:11:"noteuphoria";i:6315;s:15:"notveryeuphoria";i:6316;s:11:"noteuphoric";i:6317;s:15:"notveryeuphoric";i:6318;s:15:"noteuphorically";i:6319;s:19:"notveryeuphorically";i:6320;s:9:"notevenly";i:6321;s:13:"notveryevenly";i:6322;s:11:"noteventful";i:6323;s:15:"notveryeventful";i:6324;s:14:"noteverlasting";i:6325;s:18:"notveryeverlasting";i:6326;s:10:"notevident";i:6327;s:14:"notveryevident";i:6328;s:12:"notevidently";i:6329;s:16:"notveryevidently";i:6330;s:12:"notevocative";i:6331;s:16:"notveryevocative";i:6332;s:8:"notexalt";i:6333;s:12:"notveryexalt";i:6334;s:13:"notexaltation";i:6335;s:17:"notveryexaltation";i:6336;s:10:"notexalted";i:6337;s:14:"notveryexalted";i:6338;s:12:"notexaltedly";i:6339;s:16:"notveryexaltedly";i:6340;s:11:"notexalting";i:6341;s:15:"notveryexalting";i:6342;s:13:"notexaltingly";i:6343;s:17:"notveryexaltingly";i:6344;s:9:"notexceed";i:6345;s:13:"notveryexceed";i:6346;s:12:"notexceeding";i:6347;s:16:"notveryexceeding";i:6348;s:14:"notexceedingly";i:6349;s:18:"notveryexceedingly";i:6350;s:8:"notexcel";i:6351;s:12:"notveryexcel";i:6352;s:13:"notexcellence";i:6353;s:17:"notveryexcellence";i:6354;s:13:"notexcellency";i:6355;s:17:"notveryexcellency";i:6356;s:14:"notexcellently";i:6357;s:18:"notveryexcellently";i:6358;s:14:"notexceptional";i:6359;s:18:"notveryexceptional";i:6360;s:16:"notexceptionally";i:6361;s:20:"notveryexceptionally";i:6362;s:9:"notexcite";i:6363;s:13:"notveryexcite";i:6364;s:10:"notexcited";i:6365;s:14:"notveryexcited";i:6366;s:12:"notexcitedly";i:6367;s:16:"notveryexcitedly";i:6368;s:14:"notexcitedness";i:6369;s:18:"notveryexcitedness";i:6370;s:13:"notexcitement";i:6371;s:17:"notveryexcitement";i:6372;s:11:"notexciting";i:6373;s:15:"notveryexciting";i:6374;s:13:"notexcitingly";i:6375;s:17:"notveryexcitingly";i:6376;s:12:"notexclusive";i:6377;s:16:"notveryexclusive";i:6378;s:12:"notexcusable";i:6379;s:16:"notveryexcusable";i:6380;s:9:"notexcuse";i:6381;s:13:"notveryexcuse";i:6382;s:11:"notexemplar";i:6383;s:15:"notveryexemplar";i:6384;s:12:"notexemplary";i:6385;s:16:"notveryexemplary";i:6386;s:13:"notexhaustive";i:6387;s:17:"notveryexhaustive";i:6388;s:15:"notexhaustively";i:6389;s:19:"notveryexhaustively";i:6390;s:13:"notexhilarate";i:6391;s:17:"notveryexhilarate";i:6392;s:15:"notexhilarating";i:6393;s:19:"notveryexhilarating";i:6394;s:17:"notexhilaratingly";i:6395;s:21:"notveryexhilaratingly";i:6396;s:15:"notexhilaration";i:6397;s:19:"notveryexhilaration";i:6398;s:12:"notexonerate";i:6399;s:16:"notveryexonerate";i:6400;s:12:"notexpansive";i:6401;s:16:"notveryexpansive";i:6402;s:14:"notexperienced";i:6403;s:18:"notveryexperienced";i:6404;s:9:"notexpert";i:6405;s:13:"notveryexpert";i:6406;s:11:"notexpertly";i:6407;s:15:"notveryexpertly";i:6408;s:11:"notexplicit";i:6409;s:15:"notveryexplicit";i:6410;s:13:"notexplicitly";i:6411;s:17:"notveryexplicitly";i:6412;s:13:"notexpressive";i:6413;s:17:"notveryexpressive";i:6414;s:12:"notexquisite";i:6415;s:16:"notveryexquisite";i:6416;s:14:"notexquisitely";i:6417;s:18:"notveryexquisitely";i:6418;s:8:"notextol";i:6419;s:12:"notveryextol";i:6420;s:9:"notextoll";i:6421;s:13:"notveryextoll";i:6422;s:18:"notextraordinarily";i:6423;s:22:"notveryextraordinarily";i:6424;s:13:"notexuberance";i:6425;s:17:"notveryexuberance";i:6426;s:12:"notexuberant";i:6427;s:16:"notveryexuberant";i:6428;s:14:"notexuberantly";i:6429;s:18:"notveryexuberantly";i:6430;s:8:"notexult";i:6431;s:12:"notveryexult";i:6432;s:13:"notexultation";i:6433;s:17:"notveryexultation";i:6434;s:13:"notexultingly";i:6435;s:17:"notveryexultingly";i:6436;s:13:"notfabulously";i:6437;s:17:"notveryfabulously";i:6438;s:13:"notfacilitate";i:6439;s:17:"notveryfacilitate";i:6440;s:7:"notfair";i:6441;s:11:"notveryfair";i:6442;s:9:"notfairly";i:6443;s:13:"notveryfairly";i:6444;s:11:"notfairness";i:6445;s:15:"notveryfairness";i:6446;s:8:"notfaith";i:6447;s:12:"notveryfaith";i:6448;s:13:"notfaithfully";i:6449;s:17:"notveryfaithfully";i:6450;s:15:"notfaithfulness";i:6451;s:19:"notveryfaithfulness";i:6452;s:8:"notfamed";i:6453;s:12:"notveryfamed";i:6454;s:7:"notfame";i:6455;s:11:"notveryfame";i:6456;s:9:"notfamous";i:6457;s:13:"notveryfamous";i:6458;s:11:"notfamously";i:6459;s:15:"notveryfamously";i:6460;s:8:"notfancy";i:6461;s:12:"notveryfancy";i:6462;s:10:"notfanfare";i:6463;s:14:"notveryfanfare";i:6464;s:16:"notfantastically";i:6465;s:20:"notveryfantastically";i:6466;s:10:"notfantasy";i:6467;s:14:"notveryfantasy";i:6468;s:13:"notfarsighted";i:6469;s:17:"notveryfarsighted";i:6470;s:12:"notfascinate";i:6471;s:16:"notveryfascinate";i:6472;s:16:"notfascinatingly";i:6473;s:20:"notveryfascinatingly";i:6474;s:14:"notfascination";i:6475;s:18:"notveryfascination";i:6476;s:14:"notfashionably";i:6477;s:18:"notveryfashionably";i:6478;s:15:"notfast-growing";i:6479;s:19:"notveryfast-growing";i:6480;s:13:"notfast-paced";i:6481;s:17:"notveryfast-paced";i:6482;s:18:"notfastest-growing";i:6483;s:22:"notveryfastest-growing";i:6484;s:9:"notfathom";i:6485;s:13:"notveryfathom";i:6486;s:8:"notfavor";i:6487;s:12:"notveryfavor";i:6488;s:12:"notfavorable";i:6489;s:16:"notveryfavorable";i:6490;s:10:"notfavored";i:6491;s:14:"notveryfavored";i:6492;s:11:"notfavorite";i:6493;s:15:"notveryfavorite";i:6494;s:7:"notfawn";i:6495;s:11:"notveryfawn";i:6496;s:9:"notfavour";i:6497;s:13:"notveryfavour";i:6498;s:11:"notfearless";i:6499;s:15:"notveryfearless";i:6500;s:13:"notfearlessly";i:6501;s:17:"notveryfearlessly";i:6502;s:11:"notfeasible";i:6503;s:15:"notveryfeasible";i:6504;s:11:"notfeasibly";i:6505;s:15:"notveryfeasibly";i:6506;s:7:"notfeat";i:6507;s:11:"notveryfeat";i:6508;s:9:"notfeatly";i:6509;s:13:"notveryfeatly";i:6510;s:9:"notfeisty";i:6511;s:13:"notveryfeisty";i:6512;s:13:"notfelicitate";i:6513;s:17:"notveryfelicitate";i:6514;s:11:"notfelicity";i:6515;s:15:"notveryfelicity";i:6516;s:10:"notfervent";i:6517;s:14:"notveryfervent";i:6518;s:12:"notfervently";i:6519;s:16:"notveryfervently";i:6520;s:9:"notfervid";i:6521;s:13:"notveryfervid";i:6522;s:11:"notfervidly";i:6523;s:15:"notveryfervidly";i:6524;s:9:"notfervor";i:6525;s:13:"notveryfervor";i:6526;s:10:"notfestive";i:6527;s:14:"notveryfestive";i:6528;s:11:"notfidelity";i:6529;s:15:"notveryfidelity";i:6530;s:8:"notfiery";i:6531;s:12:"notveryfiery";i:6532;s:9:"notfinely";i:6533;s:13:"notveryfinely";i:6534;s:14:"notfirst-class";i:6535;s:18:"notveryfirst-class";i:6536;s:13:"notfirst-rate";i:6537;s:17:"notveryfirst-rate";i:6538;s:6:"notfit";i:6539;s:10:"notveryfit";i:6540;s:10:"notfitting";i:6541;s:14:"notveryfitting";i:6542;s:8:"notflair";i:6543;s:12:"notveryflair";i:6544;s:8:"notflame";i:6545;s:12:"notveryflame";i:6546;s:10:"notflatter";i:6547;s:14:"notveryflatter";i:6548;s:13:"notflattering";i:6549;s:17:"notveryflattering";i:6550;s:15:"notflatteringly";i:6551;s:19:"notveryflatteringly";i:6552;s:11:"notflawless";i:6553;s:15:"notveryflawless";i:6554;s:13:"notflawlessly";i:6555;s:17:"notveryflawlessly";i:6556;s:11:"notflourish";i:6557;s:15:"notveryflourish";i:6558;s:14:"notflourishing";i:6559;s:18:"notveryflourishing";i:6560;s:9:"notfluent";i:6561;s:13:"notveryfluent";i:6562;s:7:"notfond";i:6563;s:11:"notveryfond";i:6564;s:9:"notfondly";i:6565;s:13:"notveryfondly";i:6566;s:11:"notfondness";i:6567;s:15:"notveryfondness";i:6568;s:12:"notfoolproof";i:6569;s:16:"notveryfoolproof";i:6570;s:11:"notforemost";i:6571;s:15:"notveryforemost";i:6572;s:12:"notforesight";i:6573;s:16:"notveryforesight";i:6574;s:10:"notforgave";i:6575;s:14:"notveryforgave";i:6576;s:10:"notforgive";i:6577;s:14:"notveryforgive";i:6578;s:11:"notforgiven";i:6579;s:15:"notveryforgiven";i:6580;s:14:"notforgiveness";i:6581;s:18:"notveryforgiveness";i:6582;s:14:"notforgivingly";i:6583;s:18:"notveryforgivingly";i:6584;s:12:"notfortitude";i:6585;s:16:"notveryfortitude";i:6586;s:13:"notfortuitous";i:6587;s:17:"notveryfortuitous";i:6588;s:15:"notfortuitously";i:6589;s:19:"notveryfortuitously";i:6590;s:12:"notfortunate";i:6591;s:16:"notveryfortunate";i:6592;s:14:"notfortunately";i:6593;s:18:"notveryfortunately";i:6594;s:10:"notfortune";i:6595;s:14:"notveryfortune";i:6596;s:11:"notfragrant";i:6597;s:15:"notveryfragrant";i:6598;s:8:"notfrank";i:6599;s:12:"notveryfrank";i:6600;s:10:"notfreedom";i:6601;s:14:"notveryfreedom";i:6602;s:11:"notfreedoms";i:6603;s:15:"notveryfreedoms";i:6604;s:8:"notfresh";i:6605;s:12:"notveryfresh";i:6606;s:9:"notfriend";i:6607;s:13:"notveryfriend";i:6608;s:15:"notfriendliness";i:6609;s:19:"notveryfriendliness";i:6610;s:11:"notfriendly";i:6611;s:15:"notveryfriendly";i:6612;s:10:"notfriends";i:6613;s:14:"notveryfriends";i:6614;s:13:"notfriendship";i:6615;s:17:"notveryfriendship";i:6616;s:9:"notfrolic";i:6617;s:13:"notveryfrolic";i:6618;s:14:"notfulfillment";i:6619;s:18:"notveryfulfillment";i:6620;s:15:"notfull-fledged";i:6621;s:19:"notveryfull-fledged";i:6622;s:13:"notfunctional";i:6623;s:17:"notveryfunctional";i:6624;s:9:"notgaiety";i:6625;s:13:"notverygaiety";i:6626;s:8:"notgaily";i:6627;s:12:"notverygaily";i:6628;s:7:"notgain";i:6629;s:11:"notverygain";i:6630;s:10:"notgainful";i:6631;s:14:"notverygainful";i:6632;s:12:"notgainfully";i:6633;s:16:"notverygainfully";i:6634;s:12:"notgallantly";i:6635;s:16:"notverygallantly";i:6636;s:9:"notgalore";i:6637;s:13:"notverygalore";i:6638;s:6:"notgem";i:6639;s:10:"notverygem";i:6640;s:7:"notgems";i:6641;s:11:"notverygems";i:6642;s:13:"notgenerosity";i:6643;s:17:"notverygenerosity";i:6644;s:13:"notgenerously";i:6645;s:17:"notverygenerously";i:6646;s:9:"notgenius";i:6647;s:13:"notverygenius";i:6648;s:10:"notgermane";i:6649;s:14:"notverygermane";i:6650;s:8:"notgiddy";i:6651;s:12:"notverygiddy";i:6652;s:9:"notgifted";i:6653;s:13:"notverygifted";i:6654;s:10:"notgladden";i:6655;s:14:"notverygladden";i:6656;s:9:"notgladly";i:6657;s:13:"notverygladly";i:6658;s:11:"notgladness";i:6659;s:15:"notverygladness";i:6660;s:12:"notglamorous";i:6661;s:16:"notveryglamorous";i:6662;s:7:"notglee";i:6663;s:11:"notveryglee";i:6664;s:12:"notgleefully";i:6665;s:16:"notverygleefully";i:6666;s:10:"notglimmer";i:6667;s:14:"notveryglimmer";i:6668;s:13:"notglimmering";i:6669;s:17:"notveryglimmering";i:6670;s:10:"notglisten";i:6671;s:14:"notveryglisten";i:6672;s:13:"notglistening";i:6673;s:17:"notveryglistening";i:6674;s:10:"notglitter";i:6675;s:14:"notveryglitter";i:6676;s:8:"notgloat";i:6677;s:12:"notverygloat";i:6678;s:10:"notglorify";i:6679;s:14:"notveryglorify";i:6680;s:11:"notglorious";i:6681;s:15:"notveryglorious";i:6682;s:13:"notgloriously";i:6683;s:17:"notverygloriously";i:6684;s:8:"notglory";i:6685;s:12:"notveryglory";i:6686;s:9:"notglossy";i:6687;s:13:"notveryglossy";i:6688;s:7:"notglow";i:6689;s:11:"notveryglow";i:6690;s:10:"notglowing";i:6691;s:14:"notveryglowing";i:6692;s:12:"notglowingly";i:6693;s:16:"notveryglowingly";i:6694;s:11:"notgo-ahead";i:6695;s:15:"notverygo-ahead";i:6696;s:12:"notgod-given";i:6697;s:16:"notverygod-given";i:6698;s:10:"notgodlike";i:6699;s:14:"notverygodlike";i:6700;s:7:"notgold";i:6701;s:11:"notverygold";i:6702;s:9:"notgolden";i:6703;s:13:"notverygolden";i:6704;s:9:"notgoodly";i:6705;s:13:"notverygoodly";i:6706;s:11:"notgoodness";i:6707;s:15:"notverygoodness";i:6708;s:11:"notgoodwill";i:6709;s:15:"notverygoodwill";i:6710;s:13:"notgorgeously";i:6711;s:17:"notverygorgeously";i:6712;s:8:"notgrace";i:6713;s:12:"notverygrace";i:6714;s:11:"notgraceful";i:6715;s:15:"notverygraceful";i:6716;s:13:"notgracefully";i:6717;s:17:"notverygracefully";i:6718;s:13:"notgraciously";i:6719;s:17:"notverygraciously";i:6720;s:15:"notgraciousness";i:6721;s:19:"notverygraciousness";i:6722;s:8:"notgrail";i:6723;s:12:"notverygrail";i:6724;s:11:"notgrandeur";i:6725;s:15:"notverygrandeur";i:6726;s:13:"notgratefully";i:6727;s:17:"notverygratefully";i:6728;s:16:"notgratification";i:6729;s:20:"notverygratification";i:6730;s:10:"notgratify";i:6731;s:14:"notverygratify";i:6732;s:13:"notgratifying";i:6733;s:17:"notverygratifying";i:6734;s:15:"notgratifyingly";i:6735;s:19:"notverygratifyingly";i:6736;s:12:"notgratitude";i:6737;s:16:"notverygratitude";i:6738;s:11:"notgreatest";i:6739;s:15:"notverygreatest";i:6740;s:12:"notgreatness";i:6741;s:16:"notverygreatness";i:6742;s:8:"notgreet";i:6743;s:12:"notverygreet";i:6744;s:7:"notgrin";i:6745;s:11:"notverygrin";i:6746;s:7:"notgrit";i:6747;s:11:"notverygrit";i:6748;s:9:"notgroove";i:6749;s:13:"notverygroove";i:6750;s:17:"notgroundbreaking";i:6751;s:21:"notverygroundbreaking";i:6752;s:12:"notguarantee";i:6753;s:16:"notveryguarantee";i:6754;s:11:"notguardian";i:6755;s:15:"notveryguardian";i:6756;s:11:"notguidance";i:6757;s:15:"notveryguidance";i:6758;s:12:"notguiltless";i:6759;s:16:"notveryguiltless";i:6760;s:7:"notgush";i:6761;s:11:"notverygush";i:6762;s:11:"notgumption";i:6763;s:15:"notverygumption";i:6764;s:8:"notgusto";i:6765;s:12:"notverygusto";i:6766;s:8:"notgutsy";i:6767;s:12:"notverygutsy";i:6768;s:7:"nothail";i:6769;s:11:"notveryhail";i:6770;s:10:"nothalcyon";i:6771;s:14:"notveryhalcyon";i:6772;s:7:"nothale";i:6773;s:11:"notveryhale";i:6774;s:11:"nothallowed";i:6775;s:15:"notveryhallowed";i:6776;s:10:"nothandily";i:6777;s:14:"notveryhandily";i:6778;s:11:"nothandsome";i:6779;s:15:"notveryhandsome";i:6780;s:9:"nothanker";i:6781;s:13:"notveryhanker";i:6782;s:10:"nothappily";i:6783;s:14:"notveryhappily";i:6784;s:12:"nothappiness";i:6785;s:16:"notveryhappiness";i:6786;s:15:"nothard-working";i:6787;s:19:"notveryhard-working";i:6788;s:10:"nothardier";i:6789;s:14:"notveryhardier";i:6790;s:11:"notharmless";i:6791;s:15:"notveryharmless";i:6792;s:15:"notharmoniously";i:6793;s:19:"notveryharmoniously";i:6794;s:12:"notharmonize";i:6795;s:16:"notveryharmonize";i:6796;s:10:"notharmony";i:6797;s:14:"notveryharmony";i:6798;s:8:"nothaven";i:6799;s:12:"notveryhaven";i:6800;s:10:"notheadway";i:6801;s:14:"notveryheadway";i:6802;s:8:"notheady";i:6803;s:12:"notveryheady";i:6804;s:7:"notheal";i:6805;s:11:"notveryheal";i:6806;s:12:"nothealthful";i:6807;s:16:"notveryhealthful";i:6808;s:8:"notheart";i:6809;s:12:"notveryheart";i:6810;s:10:"nothearten";i:6811;s:14:"notveryhearten";i:6812;s:13:"notheartening";i:6813;s:17:"notveryheartening";i:6814;s:12:"notheartfelt";i:6815;s:16:"notveryheartfelt";i:6816;s:11:"notheartily";i:6817;s:15:"notveryheartily";i:6818;s:15:"notheartwarming";i:6819;s:19:"notveryheartwarming";i:6820;s:9:"notheaven";i:6821;s:13:"notveryheaven";i:6822;s:9:"notherald";i:6823;s:13:"notveryherald";i:6824;s:7:"nothero";i:6825;s:11:"notveryhero";i:6826;s:13:"notheroically";i:6827;s:17:"notveryheroically";i:6828;s:10:"notheroine";i:6829;s:14:"notveryheroine";i:6830;s:10:"notheroize";i:6831;s:14:"notveryheroize";i:6832;s:8:"notheros";i:6833;s:12:"notveryheros";i:6834;s:15:"nothigh-quality";i:6835;s:19:"notveryhigh-quality";i:6836;s:12:"nothighlight";i:6837;s:16:"notveryhighlight";i:6838;s:14:"nothilariously";i:6839;s:18:"notveryhilariously";i:6840;s:16:"nothilariousness";i:6841;s:20:"notveryhilariousness";i:6842;s:11:"nothilarity";i:6843;s:15:"notveryhilarity";i:6844;s:11:"nothistoric";i:6845;s:15:"notveryhistoric";i:6846;s:7:"notholy";i:6847;s:11:"notveryholy";i:6848;s:9:"nothomage";i:6849;s:13:"notveryhomage";i:6850;s:9:"nothonest";i:6851;s:13:"notveryhonest";i:6852;s:11:"nothonestly";i:6853;s:15:"notveryhonestly";i:6854;s:10:"nothonesty";i:6855;s:14:"notveryhonesty";i:6856;s:12:"nothoneymoon";i:6857;s:16:"notveryhoneymoon";i:6858;s:8:"nothonor";i:6859;s:12:"notveryhonor";i:6860;s:12:"nothonorable";i:6861;s:16:"notveryhonorable";i:6862;s:7:"nothope";i:6863;s:11:"notveryhope";i:6864;s:14:"nothopefulness";i:6865;s:18:"notveryhopefulness";i:6866;s:8:"nothopes";i:6867;s:12:"notveryhopes";i:6868;s:6:"nothot";i:6869;s:10:"notveryhot";i:6870;s:6:"nothug";i:6871;s:10:"notveryhug";i:6872;s:9:"nothumane";i:6873;s:13:"notveryhumane";i:6874;s:12:"nothumanists";i:6875;s:16:"notveryhumanists";i:6876;s:11:"nothumanity";i:6877;s:15:"notveryhumanity";i:6878;s:12:"nothumankind";i:6879;s:16:"notveryhumankind";i:6880;s:9:"nothumble";i:6881;s:13:"notveryhumble";i:6882;s:11:"nothumility";i:6883;s:15:"notveryhumility";i:6884;s:8:"nothumor";i:6885;s:12:"notveryhumor";i:6886;s:13:"nothumorously";i:6887;s:17:"notveryhumorously";i:6888;s:9:"nothumour";i:6889;s:13:"notveryhumour";i:6890;s:12:"nothumourous";i:6891;s:16:"notveryhumourous";i:6892;s:8:"notideal";i:6893;s:12:"notveryideal";i:6894;s:11:"notidealism";i:6895;s:15:"notveryidealism";i:6896;s:11:"notidealist";i:6897;s:15:"notveryidealist";i:6898;s:11:"notidealize";i:6899;s:15:"notveryidealize";i:6900;s:10:"notideally";i:6901;s:14:"notveryideally";i:6902;s:7:"notidol";i:6903;s:11:"notveryidol";i:6904;s:10:"notidolize";i:6905;s:14:"notveryidolize";i:6906;s:11:"notidolized";i:6907;s:15:"notveryidolized";i:6908;s:10:"notidyllic";i:6909;s:14:"notveryidyllic";i:6910;s:13:"notilluminate";i:6911;s:17:"notveryilluminate";i:6912;s:13:"notilluminati";i:6913;s:17:"notveryilluminati";i:6914;s:15:"notilluminating";i:6915;s:19:"notveryilluminating";i:6916;s:11:"notillumine";i:6917;s:15:"notveryillumine";i:6918;s:14:"notillustrious";i:6919;s:18:"notveryillustrious";i:6920;s:15:"notimmaculately";i:6921;s:19:"notveryimmaculately";i:6922;s:15:"notimpartiality";i:6923;s:19:"notveryimpartiality";i:6924;s:14:"notimpartially";i:6925;s:18:"notveryimpartially";i:6926;s:14:"notimpassioned";i:6927;s:18:"notveryimpassioned";i:6928;s:13:"notimpeccable";i:6929;s:17:"notveryimpeccable";i:6930;s:13:"notimpeccably";i:6931;s:17:"notveryimpeccably";i:6932;s:8:"notimpel";i:6933;s:12:"notveryimpel";i:6934;s:11:"notimperial";i:6935;s:15:"notveryimperial";i:6936;s:16:"notimperturbable";i:6937;s:20:"notveryimperturbable";i:6938;s:13:"notimpervious";i:6939;s:17:"notveryimpervious";i:6940;s:10:"notimpetus";i:6941;s:14:"notveryimpetus";i:6942;s:13:"notimportance";i:6943;s:17:"notveryimportance";i:6944;s:14:"notimportantly";i:6945;s:18:"notveryimportantly";i:6946;s:14:"notimpregnable";i:6947;s:18:"notveryimpregnable";i:6948;s:10:"notimpress";i:6949;s:14:"notveryimpress";i:6950;s:13:"notimpression";i:6951;s:17:"notveryimpression";i:6952;s:14:"notimpressions";i:6953;s:18:"notveryimpressions";i:6954;s:15:"notimpressively";i:6955;s:19:"notveryimpressively";i:6956;s:17:"notimpressiveness";i:6957;s:21:"notveryimpressiveness";i:6958;s:12:"notimproving";i:6959;s:16:"notveryimproving";i:6960;s:10:"notimprove";i:6961;s:14:"notveryimprove";i:6962;s:11:"notimproved";i:6963;s:15:"notveryimproved";i:6964;s:14:"notimprovement";i:6965;s:18:"notveryimprovement";i:6966;s:12:"notimprovise";i:6967;s:16:"notveryimprovise";i:6968;s:14:"notinalienable";i:6969;s:18:"notveryinalienable";i:6970;s:11:"notincisive";i:6971;s:15:"notveryincisive";i:6972;s:13:"notincisively";i:6973;s:17:"notveryincisively";i:6974;s:15:"notincisiveness";i:6975;s:19:"notveryincisiveness";i:6976;s:14:"notinclination";i:6977;s:18:"notveryinclination";i:6978;s:15:"notinclinations";i:6979;s:19:"notveryinclinations";i:6980;s:11:"notinclined";i:6981;s:15:"notveryinclined";i:6982;s:12:"notinclusive";i:6983;s:16:"notveryinclusive";i:6984;s:16:"notincontestable";i:6985;s:20:"notveryincontestable";i:6986;s:19:"notincontrovertible";i:6987;s:23:"notveryincontrovertible";i:6988;s:16:"notincorruptible";i:6989;s:20:"notveryincorruptible";i:6990;s:13:"notincredible";i:6991;s:17:"notveryincredible";i:6992;s:13:"notincredibly";i:6993;s:17:"notveryincredibly";i:6994;s:11:"notindebted";i:6995;s:15:"notveryindebted";i:6996;s:16:"notindefatigable";i:6997;s:20:"notveryindefatigable";i:6998;s:12:"notindelible";i:6999;s:16:"notveryindelible";i:7000;s:12:"notindelibly";i:7001;s:16:"notveryindelibly";i:7002;s:15:"notindependence";i:7003;s:19:"notveryindependence";i:7004;s:16:"notindescribable";i:7005;s:20:"notveryindescribable";i:7006;s:16:"notindescribably";i:7007;s:20:"notveryindescribably";i:7008;s:17:"notindestructible";i:7009;s:21:"notveryindestructible";i:7010;s:16:"notindispensable";i:7011;s:20:"notveryindispensable";i:7012;s:19:"notindispensability";i:7013;s:23:"notveryindispensability";i:7014;s:15:"notindisputable";i:7015;s:19:"notveryindisputable";i:7016;s:16:"notindividuality";i:7017;s:20:"notveryindividuality";i:7018;s:14:"notindomitable";i:7019;s:18:"notveryindomitable";i:7020;s:14:"notindomitably";i:7021;s:18:"notveryindomitably";i:7022;s:14:"notindubitable";i:7023;s:18:"notveryindubitable";i:7024;s:14:"notindubitably";i:7025;s:18:"notveryindubitably";i:7026;s:13:"notindulgence";i:7027;s:17:"notveryindulgence";i:7028;s:12:"notindulgent";i:7029;s:16:"notveryindulgent";i:7030;s:14:"notinestimable";i:7031;s:18:"notveryinestimable";i:7032;s:14:"notinestimably";i:7033;s:18:"notveryinestimably";i:7034;s:14:"notinexpensive";i:7035;s:18:"notveryinexpensive";i:7036;s:13:"notinfallible";i:7037;s:17:"notveryinfallible";i:7038;s:13:"notinfallibly";i:7039;s:17:"notveryinfallibly";i:7040;s:16:"notinfallibility";i:7041;s:20:"notveryinfallibility";i:7042;s:14:"notinformative";i:7043;s:18:"notveryinformative";i:7044;s:14:"notingeniously";i:7045;s:18:"notveryingeniously";i:7046;s:12:"notingenuity";i:7047;s:16:"notveryingenuity";i:7048;s:12:"notingenuous";i:7049;s:16:"notveryingenuous";i:7050;s:14:"notingenuously";i:7051;s:18:"notveryingenuously";i:7052;s:13:"notingratiate";i:7053;s:17:"notveryingratiate";i:7054;s:15:"notingratiating";i:7055;s:19:"notveryingratiating";i:7056;s:17:"notingratiatingly";i:7057;s:21:"notveryingratiatingly";i:7058;s:12:"notinnocence";i:7059;s:16:"notveryinnocence";i:7060;s:13:"notinnocently";i:7061;s:17:"notveryinnocently";i:7062;s:12:"notinnocuous";i:7063;s:16:"notveryinnocuous";i:7064;s:13:"notinnovation";i:7065;s:17:"notveryinnovation";i:7066;s:13:"notinnovative";i:7067;s:17:"notveryinnovative";i:7068;s:14:"notinoffensive";i:7069;s:18:"notveryinoffensive";i:7070;s:14:"notinquisitive";i:7071;s:18:"notveryinquisitive";i:7072;s:10:"notinsight";i:7073;s:14:"notveryinsight";i:7074;s:13:"notinsightful";i:7075;s:17:"notveryinsightful";i:7076;s:15:"notinsightfully";i:7077;s:19:"notveryinsightfully";i:7078;s:9:"notinsist";i:7079;s:13:"notveryinsist";i:7080;s:13:"notinsistence";i:7081;s:17:"notveryinsistence";i:7082;s:12:"notinsistent";i:7083;s:16:"notveryinsistent";i:7084;s:14:"notinsistently";i:7085;s:18:"notveryinsistently";i:7086;s:14:"notinspiration";i:7087;s:18:"notveryinspiration";i:7088;s:16:"notinspirational";i:7089;s:20:"notveryinspirational";i:7090;s:10:"notinspire";i:7091;s:14:"notveryinspire";i:7092;s:12:"notinspiring";i:7093;s:16:"notveryinspiring";i:7094;s:14:"notinstructive";i:7095;s:18:"notveryinstructive";i:7096;s:15:"notinstrumental";i:7097;s:19:"notveryinstrumental";i:7098;s:9:"notintact";i:7099;s:13:"notveryintact";i:7100;s:11:"notintegral";i:7101;s:15:"notveryintegral";i:7102;s:12:"notintegrity";i:7103;s:16:"notveryintegrity";i:7104;s:15:"notintelligence";i:7105;s:19:"notveryintelligence";i:7106;s:15:"notintelligible";i:7107;s:19:"notveryintelligible";i:7108;s:12:"notintercede";i:7109;s:16:"notveryintercede";i:7110;s:11:"notinterest";i:7111;s:15:"notveryinterest";i:7112;s:13:"notinterested";i:7113;s:17:"notveryinterested";i:7114;s:14:"notinteresting";i:7115;s:18:"notveryinteresting";i:7116;s:12:"notinterests";i:7117;s:16:"notveryinterests";i:7118;s:11:"notintimacy";i:7119;s:15:"notveryintimacy";i:7120;s:11:"notintimate";i:7121;s:15:"notveryintimate";i:7122;s:12:"notintricate";i:7123;s:16:"notveryintricate";i:7124;s:11:"notintrigue";i:7125;s:15:"notveryintrigue";i:7126;s:13:"notintriguing";i:7127;s:17:"notveryintriguing";i:7128;s:15:"notintriguingly";i:7129;s:19:"notveryintriguingly";i:7130;s:13:"notinvaluable";i:7131;s:17:"notveryinvaluable";i:7132;s:15:"notinvaluablely";i:7133;s:19:"notveryinvaluablely";i:7134;s:13:"notinvigorate";i:7135;s:17:"notveryinvigorate";i:7136;s:15:"notinvigorating";i:7137;s:19:"notveryinvigorating";i:7138;s:16:"notinvincibility";i:7139;s:20:"notveryinvincibility";i:7140;s:13:"notinvincible";i:7141;s:17:"notveryinvincible";i:7142;s:13:"notinviolable";i:7143;s:17:"notveryinviolable";i:7144;s:12:"notinviolate";i:7145;s:16:"notveryinviolate";i:7146;s:15:"notinvulnerable";i:7147;s:19:"notveryinvulnerable";i:7148;s:14:"notirrefutable";i:7149;s:18:"notveryirrefutable";i:7150;s:14:"notirrefutably";i:7151;s:18:"notveryirrefutably";i:7152;s:17:"notirreproachable";i:7153;s:21:"notveryirreproachable";i:7154;s:15:"notirresistible";i:7155;s:19:"notveryirresistible";i:7156;s:15:"notirresistibly";i:7157;s:19:"notveryirresistibly";i:7158;s:11:"notjauntily";i:7159;s:15:"notveryjauntily";i:7160;s:9:"notjaunty";i:7161;s:13:"notveryjaunty";i:7162;s:7:"notjest";i:7163;s:11:"notveryjest";i:7164;s:7:"notjoke";i:7165;s:11:"notveryjoke";i:7166;s:10:"notjollify";i:7167;s:14:"notveryjollify";i:7168;s:9:"notjovial";i:7169;s:13:"notveryjovial";i:7170;s:6:"notjoy";i:7171;s:10:"notveryjoy";i:7172;s:11:"notjoyfully";i:7173;s:15:"notveryjoyfully";i:7174;s:9:"notjoyous";i:7175;s:13:"notveryjoyous";i:7176;s:11:"notjoyously";i:7177;s:15:"notveryjoyously";i:7178;s:13:"notjubilantly";i:7179;s:17:"notveryjubilantly";i:7180;s:11:"notjubilate";i:7181;s:15:"notveryjubilate";i:7182;s:13:"notjubilation";i:7183;s:17:"notveryjubilation";i:7184;s:12:"notjudicious";i:7185;s:16:"notveryjudicious";i:7186;s:10:"notjustice";i:7187;s:14:"notveryjustice";i:7188;s:14:"notjustifiable";i:7189;s:18:"notveryjustifiable";i:7190;s:14:"notjustifiably";i:7191;s:18:"notveryjustifiably";i:7192;s:16:"notjustification";i:7193;s:20:"notveryjustification";i:7194;s:10:"notjustify";i:7195;s:14:"notveryjustify";i:7196;s:9:"notjustly";i:7197;s:13:"notveryjustly";i:7198;s:9:"notkeenly";i:7199;s:13:"notverykeenly";i:7200;s:11:"notkeenness";i:7201;s:15:"notverykeenness";i:7202;s:7:"notkemp";i:7203;s:11:"notverykemp";i:7204;s:6:"notkid";i:7205;s:10:"notverykid";i:7206;s:7:"notkind";i:7207;s:11:"notverykind";i:7208;s:9:"notkindly";i:7209;s:13:"notverykindly";i:7210;s:13:"notkindliness";i:7211;s:17:"notverykindliness";i:7212;s:11:"notkindness";i:7213;s:15:"notverykindness";i:7214;s:12:"notkingmaker";i:7215;s:16:"notverykingmaker";i:7216;s:7:"notkiss";i:7217;s:11:"notverykiss";i:7218;s:8:"notlarge";i:7219;s:12:"notverylarge";i:7220;s:7:"notlark";i:7221;s:11:"notverylark";i:7222;s:7:"notlaud";i:7223;s:11:"notverylaud";i:7224;s:11:"notlaudably";i:7225;s:15:"notverylaudably";i:7226;s:9:"notlavish";i:7227;s:13:"notverylavish";i:7228;s:11:"notlavishly";i:7229;s:15:"notverylavishly";i:7230;s:14:"notlaw-abiding";i:7231;s:18:"notverylaw-abiding";i:7232;s:9:"notlawful";i:7233;s:13:"notverylawful";i:7234;s:11:"notlawfully";i:7235;s:15:"notverylawfully";i:7236;s:10:"notleading";i:7237;s:14:"notveryleading";i:7238;s:7:"notlean";i:7239;s:11:"notverylean";i:7240;s:11:"notlearning";i:7241;s:15:"notverylearning";i:7242;s:12:"notlegendary";i:7243;s:16:"notverylegendary";i:7244;s:13:"notlegitimacy";i:7245;s:17:"notverylegitimacy";i:7246;s:13:"notlegitimate";i:7247;s:17:"notverylegitimate";i:7248;s:15:"notlegitimately";i:7249;s:19:"notverylegitimately";i:7250;s:12:"notleniently";i:7251;s:16:"notveryleniently";i:7252;s:17:"notless-expensive";i:7253;s:21:"notveryless-expensive";i:7254;s:11:"notleverage";i:7255;s:15:"notveryleverage";i:7256;s:9:"notlevity";i:7257;s:13:"notverylevity";i:7258;s:13:"notliberation";i:7259;s:17:"notveryliberation";i:7260;s:13:"notliberalism";i:7261;s:17:"notveryliberalism";i:7262;s:12:"notliberally";i:7263;s:16:"notveryliberally";i:7264;s:11:"notliberate";i:7265;s:15:"notveryliberate";i:7266;s:10:"notliberty";i:7267;s:14:"notveryliberty";i:7268;s:12:"notlifeblood";i:7269;s:16:"notverylifeblood";i:7270;s:11:"notlifelong";i:7271;s:15:"notverylifelong";i:7272;s:16:"notlight-hearted";i:7273;s:20:"notverylight-hearted";i:7274;s:10:"notlighten";i:7275;s:14:"notverylighten";i:7276;s:10:"notlikable";i:7277;s:14:"notverylikable";i:7278;s:9:"notliking";i:7279;s:13:"notveryliking";i:7280;s:14:"notlionhearted";i:7281;s:18:"notverylionhearted";i:7282;s:11:"notliterate";i:7283;s:15:"notveryliterate";i:7284;s:7:"notlive";i:7285;s:11:"notverylive";i:7286;s:8:"notlofty";i:7287;s:12:"notverylofty";i:7288;s:10:"notlovable";i:7289;s:14:"notverylovable";i:7290;s:10:"notlovably";i:7291;s:14:"notverylovably";i:7292;s:7:"notlove";i:7293;s:11:"notverylove";i:7294;s:13:"notloveliness";i:7295;s:17:"notveryloveliness";i:7296;s:8:"notlover";i:7297;s:12:"notverylover";i:7298;s:11:"notlow-cost";i:7299;s:15:"notverylow-cost";i:7300;s:11:"notlow-risk";i:7301;s:15:"notverylow-risk";i:7302;s:15:"notlower-priced";i:7303;s:19:"notverylower-priced";i:7304;s:10:"notloyalty";i:7305;s:14:"notveryloyalty";i:7306;s:10:"notlucidly";i:7307;s:14:"notverylucidly";i:7308;s:7:"notluck";i:7309;s:11:"notveryluck";i:7310;s:10:"notluckier";i:7311;s:14:"notveryluckier";i:7312;s:11:"notluckiest";i:7313;s:15:"notveryluckiest";i:7314;s:10:"notluckily";i:7315;s:14:"notveryluckily";i:7316;s:12:"notluckiness";i:7317;s:16:"notveryluckiness";i:7318;s:12:"notlucrative";i:7319;s:16:"notverylucrative";i:7320;s:7:"notlush";i:7321;s:11:"notverylush";i:7322;s:7:"notlust";i:7323;s:11:"notverylust";i:7324;s:9:"notluster";i:7325;s:13:"notveryluster";i:7326;s:11:"notlustrous";i:7327;s:15:"notverylustrous";i:7328;s:12:"notluxuriant";i:7329;s:16:"notveryluxuriant";i:7330;s:12:"notluxuriate";i:7331;s:16:"notveryluxuriate";i:7332;s:12:"notluxurious";i:7333;s:16:"notveryluxurious";i:7334;s:14:"notluxuriously";i:7335;s:18:"notveryluxuriously";i:7336;s:9:"notluxury";i:7337;s:13:"notveryluxury";i:7338;s:10:"notlyrical";i:7339;s:14:"notverylyrical";i:7340;s:8:"notmagic";i:7341;s:12:"notverymagic";i:7342;s:10:"notmagical";i:7343;s:14:"notverymagical";i:7344;s:14:"notmagnanimous";i:7345;s:18:"notverymagnanimous";i:7346;s:16:"notmagnanimously";i:7347;s:20:"notverymagnanimously";i:7348;s:15:"notmagnificence";i:7349;s:19:"notverymagnificence";i:7350;s:14:"notmagnificent";i:7351;s:18:"notverymagnificent";i:7352;s:16:"notmagnificently";i:7353;s:20:"notverymagnificently";i:7354;s:10:"notmagnify";i:7355;s:14:"notverymagnify";i:7356;s:11:"notmajestic";i:7357;s:15:"notverymajestic";i:7358;s:10:"notmajesty";i:7359;s:14:"notverymajesty";i:7360;s:13:"notmanageable";i:7361;s:17:"notverymanageable";i:7362;s:11:"notmanifest";i:7363;s:15:"notverymanifest";i:7364;s:8:"notmanly";i:7365;s:12:"notverymanly";i:7366;s:11:"notmannerly";i:7367;s:15:"notverymannerly";i:7368;s:9:"notmarvel";i:7369;s:13:"notverymarvel";i:7370;s:13:"notmarvellous";i:7371;s:17:"notverymarvellous";i:7372;s:12:"notmarvelous";i:7373;s:16:"notverymarvelous";i:7374;s:14:"notmarvelously";i:7375;s:18:"notverymarvelously";i:7376;s:16:"notmarvelousness";i:7377;s:20:"notverymarvelousness";i:7378;s:10:"notmarvels";i:7379;s:14:"notverymarvels";i:7380;s:9:"notmaster";i:7381;s:13:"notverymaster";i:7382;s:12:"notmasterful";i:7383;s:16:"notverymasterful";i:7384;s:14:"notmasterfully";i:7385;s:18:"notverymasterfully";i:7386;s:14:"notmasterpiece";i:7387;s:18:"notverymasterpiece";i:7388;s:15:"notmasterpieces";i:7389;s:19:"notverymasterpieces";i:7390;s:10:"notmasters";i:7391;s:14:"notverymasters";i:7392;s:10:"notmastery";i:7393;s:14:"notverymastery";i:7394;s:12:"notmatchless";i:7395;s:16:"notverymatchless";i:7396;s:11:"notmaturely";i:7397;s:15:"notverymaturely";i:7398;s:11:"notmaturity";i:7399;s:15:"notverymaturity";i:7400;s:11:"notmaximize";i:7401;s:15:"notverymaximize";i:7402;s:13:"notmeaningful";i:7403;s:17:"notverymeaningful";i:7404;s:7:"notmeek";i:7405;s:11:"notverymeek";i:7406;s:9:"notmellow";i:7407;s:13:"notverymellow";i:7408;s:12:"notmemorable";i:7409;s:16:"notverymemorable";i:7410;s:14:"notmemorialize";i:7411;s:18:"notverymemorialize";i:7412;s:7:"notmend";i:7413;s:11:"notverymend";i:7414;s:9:"notmentor";i:7415;s:13:"notverymentor";i:7416;s:13:"notmercifully";i:7417;s:17:"notverymercifully";i:7418;s:8:"notmercy";i:7419;s:12:"notverymercy";i:7420;s:8:"notmerit";i:7421;s:12:"notverymerit";i:7422;s:10:"notmerrily";i:7423;s:14:"notverymerrily";i:7424;s:12:"notmerriment";i:7425;s:16:"notverymerriment";i:7426;s:12:"notmerriness";i:7427;s:16:"notverymerriness";i:7428;s:12:"notmesmerize";i:7429;s:16:"notverymesmerize";i:7430;s:14:"notmesmerizing";i:7431;s:18:"notverymesmerizing";i:7432;s:16:"notmesmerizingly";i:7433;s:20:"notverymesmerizingly";i:7434;s:13:"notmeticulous";i:7435;s:17:"notverymeticulous";i:7436;s:15:"notmeticulously";i:7437;s:19:"notverymeticulously";i:7438;s:11:"notmightily";i:7439;s:15:"notverymightily";i:7440;s:9:"notmighty";i:7441;s:13:"notverymighty";i:7442;s:11:"notminister";i:7443;s:15:"notveryminister";i:7444;s:10:"notmiracle";i:7445;s:14:"notverymiracle";i:7446;s:11:"notmiracles";i:7447;s:15:"notverymiracles";i:7448;s:13:"notmiraculous";i:7449;s:17:"notverymiraculous";i:7450;s:15:"notmiraculously";i:7451;s:19:"notverymiraculously";i:7452;s:17:"notmiraculousness";i:7453;s:21:"notverymiraculousness";i:7454;s:8:"notmirth";i:7455;s:12:"notverymirth";i:7456;s:13:"notmoderation";i:7457;s:17:"notverymoderation";i:7458;s:9:"notmodern";i:7459;s:13:"notverymodern";i:7460;s:10:"notmodesty";i:7461;s:14:"notverymodesty";i:7462;s:10:"notmollify";i:7463;s:14:"notverymollify";i:7464;s:12:"notmomentous";i:7465;s:16:"notverymomentous";i:7466;s:13:"notmonumental";i:7467;s:17:"notverymonumental";i:7468;s:15:"notmonumentally";i:7469;s:19:"notverymonumentally";i:7470;s:11:"notmorality";i:7471;s:15:"notverymorality";i:7472;s:11:"notmoralize";i:7473;s:15:"notverymoralize";i:7474;s:11:"notmotivate";i:7475;s:15:"notverymotivate";i:7476;s:12:"notmotivated";i:7477;s:16:"notverymotivated";i:7478;s:13:"notmotivation";i:7479;s:17:"notverymotivation";i:7480;s:9:"notmoving";i:7481;s:13:"notverymoving";i:7482;s:9:"notmyriad";i:7483;s:13:"notverymyriad";i:7484;s:12:"notnaturally";i:7485;s:16:"notverynaturally";i:7486;s:12:"notnavigable";i:7487;s:16:"notverynavigable";i:7488;s:7:"notneat";i:7489;s:11:"notveryneat";i:7490;s:9:"notneatly";i:7491;s:13:"notveryneatly";i:7492;s:14:"notnecessarily";i:7493;s:18:"notverynecessarily";i:7494;s:13:"notneutralize";i:7495;s:17:"notveryneutralize";i:7496;s:9:"notnicely";i:7497;s:13:"notverynicely";i:7498;s:8:"notnifty";i:7499;s:12:"notverynifty";i:7500;s:8:"notnobly";i:7501;s:12:"notverynobly";i:7502;s:15:"notnon-violence";i:7503;s:19:"notverynon-violence";i:7504;s:14:"notnon-violent";i:7505;s:18:"notverynon-violent";i:7506;s:9:"notnormal";i:7507;s:13:"notverynormal";i:7508;s:10:"notnotable";i:7509;s:14:"notverynotable";i:7510;s:10:"notnotably";i:7511;s:14:"notverynotably";i:7512;s:13:"notnoteworthy";i:7513;s:17:"notverynoteworthy";i:7514;s:13:"notnoticeable";i:7515;s:17:"notverynoticeable";i:7516;s:10:"notnourish";i:7517;s:14:"notverynourish";i:7518;s:14:"notnourishment";i:7519;s:18:"notverynourishment";i:7520;s:10:"notnurture";i:7521;s:14:"notverynurture";i:7522;s:12:"notnurturing";i:7523;s:16:"notverynurturing";i:7524;s:8:"notoasis";i:7525;s:12:"notveryoasis";i:7526;s:12:"notobedience";i:7527;s:16:"notveryobedience";i:7528;s:11:"notobedient";i:7529;s:15:"notveryobedient";i:7530;s:13:"notobediently";i:7531;s:17:"notveryobediently";i:7532;s:7:"notobey";i:7533;s:11:"notveryobey";i:7534;s:12:"notobjective";i:7535;s:16:"notveryobjective";i:7536;s:14:"notobjectively";i:7537;s:18:"notveryobjectively";i:7538;s:10:"notobliged";i:7539;s:14:"notveryobliged";i:7540;s:10:"notobviate";i:7541;s:14:"notveryobviate";i:7542;s:10:"notoffbeat";i:7543;s:14:"notveryoffbeat";i:7544;s:9:"notoffset";i:7545;s:13:"notveryoffset";i:7546;s:9:"notonward";i:7547;s:13:"notveryonward";i:7548;s:7:"notopen";i:7549;s:11:"notveryopen";i:7550;s:9:"notopenly";i:7551;s:13:"notveryopenly";i:7552;s:11:"notopenness";i:7553;s:15:"notveryopenness";i:7554;s:12:"notopportune";i:7555;s:16:"notveryopportune";i:7556;s:14:"notopportunity";i:7557;s:18:"notveryopportunity";i:7558;s:10:"notoptimal";i:7559;s:14:"notveryoptimal";i:7560;s:11:"notoptimism";i:7561;s:15:"notveryoptimism";i:7562;s:13:"notoptimistic";i:7563;s:17:"notveryoptimistic";i:7564;s:10:"notopulent";i:7565;s:14:"notveryopulent";i:7566;s:10:"notorderly";i:7567;s:14:"notveryorderly";i:7568;s:14:"notoriginality";i:7569;s:18:"notveryoriginality";i:7570;s:8:"notoutdo";i:7571;s:12:"notveryoutdo";i:7572;s:11:"notoutgoing";i:7573;s:15:"notveryoutgoing";i:7574;s:11:"notoutshine";i:7575;s:15:"notveryoutshine";i:7576;s:11:"notoutsmart";i:7577;s:15:"notveryoutsmart";i:7578;s:14:"notoutstanding";i:7579;s:18:"notveryoutstanding";i:7580;s:16:"notoutstandingly";i:7581;s:20:"notveryoutstandingly";i:7582;s:11:"notoutstrip";i:7583;s:15:"notveryoutstrip";i:7584;s:9:"notoutwit";i:7585;s:13:"notveryoutwit";i:7586;s:10:"notovation";i:7587;s:14:"notveryovation";i:7588;s:15:"notoverachiever";i:7589;s:19:"notveryoverachiever";i:7590;s:12:"notoverjoyed";i:7591;s:16:"notveryoverjoyed";i:7592;s:11:"notoverture";i:7593;s:15:"notveryoverture";i:7594;s:11:"notpacifist";i:7595;s:15:"notverypacifist";i:7596;s:12:"notpacifists";i:7597;s:16:"notverypacifists";i:7598;s:11:"notpainless";i:7599;s:15:"notverypainless";i:7600;s:13:"notpainlessly";i:7601;s:17:"notverypainlessly";i:7602;s:14:"notpainstaking";i:7603;s:18:"notverypainstaking";i:7604;s:16:"notpainstakingly";i:7605;s:20:"notverypainstakingly";i:7606;s:12:"notpalatable";i:7607;s:16:"notverypalatable";i:7608;s:11:"notpalatial";i:7609;s:15:"notverypalatial";i:7610;s:11:"notpalliate";i:7611;s:15:"notverypalliate";i:7612;s:9:"notpamper";i:7613;s:13:"notverypamper";i:7614;s:11:"notparadise";i:7615;s:15:"notveryparadise";i:7616;s:12:"notparamount";i:7617;s:16:"notveryparamount";i:7618;s:9:"notpardon";i:7619;s:13:"notverypardon";i:7620;s:10:"notpassion";i:7621;s:14:"notverypassion";i:7622;s:15:"notpassionately";i:7623;s:19:"notverypassionately";i:7624;s:11:"notpatience";i:7625;s:15:"notverypatience";i:7626;s:10:"notpatient";i:7627;s:14:"notverypatient";i:7628;s:12:"notpatiently";i:7629;s:16:"notverypatiently";i:7630;s:10:"notpatriot";i:7631;s:14:"notverypatriot";i:7632;s:12:"notpatriotic";i:7633;s:16:"notverypatriotic";i:7634;s:8:"notpeace";i:7635;s:12:"notverypeace";i:7636;s:12:"notpeaceable";i:7637;s:16:"notverypeaceable";i:7638;s:13:"notpeacefully";i:7639;s:17:"notverypeacefully";i:7640;s:15:"notpeacekeepers";i:7641;s:19:"notverypeacekeepers";i:7642;s:11:"notpeerless";i:7643;s:15:"notverypeerless";i:7644;s:14:"notpenetrating";i:7645;s:18:"notverypenetrating";i:7646;s:11:"notpenitent";i:7647;s:15:"notverypenitent";i:7648;s:13:"notperceptive";i:7649;s:17:"notveryperceptive";i:7650;s:13:"notperfection";i:7651;s:17:"notveryperfection";i:7652;s:12:"notperfectly";i:7653;s:16:"notveryperfectly";i:7654;s:14:"notpermissible";i:7655;s:18:"notverypermissible";i:7656;s:15:"notperseverance";i:7657;s:19:"notveryperseverance";i:7658;s:12:"notpersevere";i:7659;s:16:"notverypersevere";i:7660;s:13:"notpersistent";i:7661;s:17:"notverypersistent";i:7662;s:13:"notpersonages";i:7663;s:17:"notverypersonages";i:7664;s:14:"notpersonality";i:7665;s:18:"notverypersonality";i:7666;s:14:"notperspicuous";i:7667;s:18:"notveryperspicuous";i:7668;s:16:"notperspicuously";i:7669;s:20:"notveryperspicuously";i:7670;s:11:"notpersuade";i:7671;s:15:"notverypersuade";i:7672;s:15:"notpersuasively";i:7673;s:19:"notverypersuasively";i:7674;s:12:"notpertinent";i:7675;s:16:"notverypertinent";i:7676;s:13:"notphenomenal";i:7677;s:17:"notveryphenomenal";i:7678;s:15:"notphenomenally";i:7679;s:19:"notveryphenomenally";i:7680;s:14:"notpicturesque";i:7681;s:18:"notverypicturesque";i:7682;s:8:"notpiety";i:7683;s:12:"notverypiety";i:7684;s:9:"notpillar";i:7685;s:13:"notverypillar";i:7686;s:11:"notpinnacle";i:7687;s:15:"notverypinnacle";i:7688;s:8:"notpious";i:7689;s:12:"notverypious";i:7690;s:8:"notpithy";i:7691;s:12:"notverypithy";i:7692;s:10:"notplacate";i:7693;s:14:"notveryplacate";i:7694;s:9:"notplacid";i:7695;s:13:"notveryplacid";i:7696;s:10:"notplainly";i:7697;s:14:"notveryplainly";i:7698;s:15:"notplausibility";i:7699;s:19:"notveryplausibility";i:7700;s:12:"notplausible";i:7701;s:16:"notveryplausible";i:7702;s:12:"notplayfully";i:7703;s:16:"notveryplayfully";i:7704;s:13:"notpleasantly";i:7705;s:17:"notverypleasantly";i:7706;s:10:"notpleased";i:7707;s:14:"notverypleased";i:7708;s:11:"notpleasing";i:7709;s:15:"notverypleasing";i:7710;s:13:"notpleasingly";i:7711;s:17:"notverypleasingly";i:7712;s:14:"notpleasurable";i:7713;s:18:"notverypleasurable";i:7714;s:14:"notpleasurably";i:7715;s:18:"notverypleasurably";i:7716;s:11:"notpleasure";i:7717;s:15:"notverypleasure";i:7718;s:9:"notpledge";i:7719;s:13:"notverypledge";i:7720;s:10:"notpledges";i:7721;s:14:"notverypledges";i:7722;s:12:"notplentiful";i:7723;s:16:"notveryplentiful";i:7724;s:9:"notplenty";i:7725;s:13:"notveryplenty";i:7726;s:8:"notplush";i:7727;s:12:"notveryplush";i:7728;s:12:"notpoeticize";i:7729;s:16:"notverypoeticize";i:7730;s:11:"notpoignant";i:7731;s:15:"notverypoignant";i:7732;s:8:"notpoise";i:7733;s:12:"notverypoise";i:7734;s:9:"notpoised";i:7735;s:13:"notverypoised";i:7736;s:9:"notpolite";i:7737;s:13:"notverypolite";i:7738;s:13:"notpoliteness";i:7739;s:17:"notverypoliteness";i:7740;s:10:"notpopular";i:7741;s:14:"notverypopular";i:7742;s:13:"notpopularity";i:7743;s:17:"notverypopularity";i:7744;s:11:"notportable";i:7745;s:15:"notveryportable";i:7746;s:7:"notposh";i:7747;s:11:"notveryposh";i:7748;s:15:"notpositiveness";i:7749;s:19:"notverypositiveness";i:7750;s:13:"notpositively";i:7751;s:17:"notverypositively";i:7752;s:12:"notposterity";i:7753;s:16:"notveryposterity";i:7754;s:9:"notpotent";i:7755;s:13:"notverypotent";i:7756;s:12:"notpotential";i:7757;s:16:"notverypotential";i:7758;s:13:"notpowerfully";i:7759;s:17:"notverypowerfully";i:7760;s:14:"notpracticable";i:7761;s:18:"notverypracticable";i:7762;s:9:"notpraise";i:7763;s:13:"notverypraise";i:7764;s:15:"notpraiseworthy";i:7765;s:19:"notverypraiseworthy";i:7766;s:11:"notpraising";i:7767;s:15:"notverypraising";i:7768;s:14:"notpre-eminent";i:7769;s:18:"notverypre-eminent";i:7770;s:9:"notpreach";i:7771;s:13:"notverypreach";i:7772;s:12:"notpreaching";i:7773;s:16:"notverypreaching";i:7774;s:13:"notprecaution";i:7775;s:17:"notveryprecaution";i:7776;s:14:"notprecautions";i:7777;s:18:"notveryprecautions";i:7778;s:12:"notprecedent";i:7779;s:16:"notveryprecedent";i:7780;s:10:"notprecise";i:7781;s:14:"notveryprecise";i:7782;s:12:"notprecisely";i:7783;s:16:"notveryprecisely";i:7784;s:12:"notprecision";i:7785;s:16:"notveryprecision";i:7786;s:13:"notpreeminent";i:7787;s:17:"notverypreeminent";i:7788;s:13:"notpreemptive";i:7789;s:17:"notverypreemptive";i:7790;s:9:"notprefer";i:7791;s:13:"notveryprefer";i:7792;s:13:"notpreferable";i:7793;s:17:"notverypreferable";i:7794;s:13:"notpreferably";i:7795;s:17:"notverypreferably";i:7796;s:13:"notpreference";i:7797;s:17:"notverypreference";i:7798;s:14:"notpreferences";i:7799;s:18:"notverypreferences";i:7800;s:10:"notpremier";i:7801;s:14:"notverypremier";i:7802;s:10:"notpremium";i:7803;s:14:"notverypremium";i:7804;s:11:"notprepared";i:7805;s:15:"notveryprepared";i:7806;s:16:"notpreponderance";i:7807;s:20:"notverypreponderance";i:7808;s:8:"notpress";i:7809;s:12:"notverypress";i:7810;s:11:"notprestige";i:7811;s:15:"notveryprestige";i:7812;s:14:"notprestigious";i:7813;s:18:"notveryprestigious";i:7814;s:11:"notprettily";i:7815;s:15:"notveryprettily";i:7816;s:9:"notpretty";i:7817;s:13:"notverypretty";i:7818;s:8:"notpride";i:7819;s:12:"notverypride";i:7820;s:12:"notprinciple";i:7821;s:16:"notveryprinciple";i:7822;s:13:"notprincipled";i:7823;s:17:"notveryprincipled";i:7824;s:12:"notprivilege";i:7825;s:16:"notveryprivilege";i:7826;s:8:"notprize";i:7827;s:12:"notveryprize";i:7828;s:6:"notpro";i:7829;s:10:"notverypro";i:7830;s:15:"notpro-american";i:7831;s:19:"notverypro-american";i:7832;s:14:"notpro-beijing";i:7833;s:18:"notverypro-beijing";i:7834;s:11:"notpro-cuba";i:7835;s:15:"notverypro-cuba";i:7836;s:12:"notpro-peace";i:7837;s:16:"notverypro-peace";i:7838;s:12:"notproactive";i:7839;s:16:"notveryproactive";i:7840;s:13:"notprodigious";i:7841;s:17:"notveryprodigious";i:7842;s:15:"notprodigiously";i:7843;s:19:"notveryprodigiously";i:7844;s:10:"notprodigy";i:7845;s:14:"notveryprodigy";i:7846;s:10:"notprofess";i:7847;s:14:"notveryprofess";i:7848;s:13:"notproficient";i:7849;s:17:"notveryproficient";i:7850;s:15:"notproficiently";i:7851;s:19:"notveryproficiently";i:7852;s:9:"notprofit";i:7853;s:13:"notveryprofit";i:7854;s:13:"notprofitable";i:7855;s:17:"notveryprofitable";i:7856;s:13:"notprofoundly";i:7857;s:17:"notveryprofoundly";i:7858;s:10:"notprofuse";i:7859;s:14:"notveryprofuse";i:7860;s:12:"notprofusely";i:7861;s:16:"notveryprofusely";i:7862;s:12:"notprofusion";i:7863;s:16:"notveryprofusion";i:7864;s:11:"notprogress";i:7865;s:15:"notveryprogress";i:7866;s:12:"notprominent";i:7867;s:16:"notveryprominent";i:7868;s:13:"notprominence";i:7869;s:17:"notveryprominence";i:7870;s:10:"notpromise";i:7871;s:14:"notverypromise";i:7872;s:12:"notpromising";i:7873;s:16:"notverypromising";i:7874;s:11:"notpromoter";i:7875;s:15:"notverypromoter";i:7876;s:11:"notpromptly";i:7877;s:15:"notverypromptly";i:7878;s:11:"notproperly";i:7879;s:15:"notveryproperly";i:7880;s:13:"notpropitious";i:7881;s:17:"notverypropitious";i:7882;s:15:"notpropitiously";i:7883;s:19:"notverypropitiously";i:7884;s:11:"notprospect";i:7885;s:15:"notveryprospect";i:7886;s:12:"notprospects";i:7887;s:16:"notveryprospects";i:7888;s:10:"notprosper";i:7889;s:14:"notveryprosper";i:7890;s:13:"notprosperity";i:7891;s:17:"notveryprosperity";i:7892;s:13:"notprosperous";i:7893;s:17:"notveryprosperous";i:7894;s:10:"notprotect";i:7895;s:14:"notveryprotect";i:7896;s:13:"notprotection";i:7897;s:17:"notveryprotection";i:7898;s:13:"notprotective";i:7899;s:17:"notveryprotective";i:7900;s:12:"notprotector";i:7901;s:16:"notveryprotector";i:7902;s:8:"notproud";i:7903;s:12:"notveryproud";i:7904;s:13:"notprovidence";i:7905;s:17:"notveryprovidence";i:7906;s:10:"notprowess";i:7907;s:14:"notveryprowess";i:7908;s:11:"notprudence";i:7909;s:15:"notveryprudence";i:7910;s:12:"notprudently";i:7911;s:16:"notveryprudently";i:7912;s:10:"notpundits";i:7913;s:14:"notverypundits";i:7914;s:7:"notpure";i:7915;s:11:"notverypure";i:7916;s:15:"notpurification";i:7917;s:19:"notverypurification";i:7918;s:9:"notpurify";i:7919;s:13:"notverypurify";i:7920;s:9:"notpurity";i:7921;s:13:"notverypurity";i:7922;s:9:"notquaint";i:7923;s:13:"notveryquaint";i:7924;s:12:"notqualified";i:7925;s:16:"notveryqualified";i:7926;s:10:"notqualify";i:7927;s:14:"notveryqualify";i:7928;s:13:"notquasi-ally";i:7929;s:17:"notveryquasi-ally";i:7930;s:9:"notquench";i:7931;s:13:"notveryquench";i:7932;s:10:"notquicken";i:7933;s:14:"notveryquicken";i:7934;s:11:"notradiance";i:7935;s:15:"notveryradiance";i:7936;s:8:"notrally";i:7937;s:12:"notveryrally";i:7938;s:16:"notrapprochement";i:7939;s:20:"notveryrapprochement";i:7940;s:10:"notrapport";i:7941;s:14:"notveryrapport";i:7942;s:7:"notrapt";i:7943;s:11:"notveryrapt";i:7944;s:10:"notrapture";i:7945;s:14:"notveryrapture";i:7946;s:13:"notraptureous";i:7947;s:17:"notveryraptureous";i:7948;s:15:"notraptureously";i:7949;s:19:"notveryraptureously";i:7950;s:12:"notrapturous";i:7951;s:16:"notveryrapturous";i:7952;s:14:"notrapturously";i:7953;s:18:"notveryrapturously";i:7954;s:11:"notrational";i:7955;s:15:"notveryrational";i:7956;s:14:"notrationality";i:7957;s:18:"notveryrationality";i:7958;s:7:"notrave";i:7959;s:11:"notveryrave";i:7960;s:14:"notre-conquest";i:7961;s:18:"notveryre-conquest";i:7962;s:10:"notreadily";i:7963;s:14:"notveryreadily";i:7964;s:11:"notreaffirm";i:7965;s:15:"notveryreaffirm";i:7966;s:16:"notreaffirmation";i:7967;s:20:"notveryreaffirmation";i:7968;s:10:"notrealist";i:7969;s:14:"notveryrealist";i:7970;s:12:"notrealistic";i:7971;s:16:"notveryrealistic";i:7972;s:16:"notrealistically";i:7973;s:20:"notveryrealistically";i:7974;s:9:"notreason";i:7975;s:13:"notveryreason";i:7976;s:13:"notreasonably";i:7977;s:17:"notveryreasonably";i:7978;s:11:"notreasoned";i:7979;s:15:"notveryreasoned";i:7980;s:14:"notreassurance";i:7981;s:18:"notveryreassurance";i:7982;s:11:"notreassure";i:7983;s:15:"notveryreassure";i:7984;s:10:"notreclaim";i:7985;s:14:"notveryreclaim";i:7986;s:14:"notrecognition";i:7987;s:18:"notveryrecognition";i:7988;s:12:"notrecommend";i:7989;s:16:"notveryrecommend";i:7990;s:17:"notrecommendation";i:7991;s:21:"notveryrecommendation";i:7992;s:18:"notrecommendations";i:7993;s:22:"notveryrecommendations";i:7994;s:14:"notrecommended";i:7995;s:18:"notveryrecommended";i:7996;s:13:"notrecompense";i:7997;s:17:"notveryrecompense";i:7998;s:12:"notreconcile";i:7999;s:16:"notveryreconcile";i:8000;s:17:"notreconciliation";i:8001;s:21:"notveryreconciliation";i:8002;s:17:"notrecord-setting";i:8003;s:21:"notveryrecord-setting";i:8004;s:10:"notrecover";i:8005;s:14:"notveryrecover";i:8006;s:16:"notrectification";i:8007;s:20:"notveryrectification";i:8008;s:10:"notrectify";i:8009;s:14:"notveryrectify";i:8010;s:13:"notrectifying";i:8011;s:17:"notveryrectifying";i:8012;s:9:"notredeem";i:8013;s:13:"notveryredeem";i:8014;s:12:"notredeeming";i:8015;s:16:"notveryredeeming";i:8016;s:13:"notredemption";i:8017;s:17:"notveryredemption";i:8018;s:14:"notreestablish";i:8019;s:18:"notveryreestablish";i:8020;s:9:"notrefine";i:8021;s:13:"notveryrefine";i:8022;s:13:"notrefinement";i:8023;s:17:"notveryrefinement";i:8024;s:9:"notreform";i:8025;s:13:"notveryreform";i:8026;s:10:"notrefresh";i:8027;s:14:"notveryrefresh";i:8028;s:13:"notrefreshing";i:8029;s:17:"notveryrefreshing";i:8030;s:9:"notrefuge";i:8031;s:13:"notveryrefuge";i:8032;s:8:"notregal";i:8033;s:12:"notveryregal";i:8034;s:10:"notregally";i:8035;s:14:"notveryregally";i:8036;s:9:"notregard";i:8037;s:13:"notveryregard";i:8038;s:15:"notrehabilitate";i:8039;s:19:"notveryrehabilitate";i:8040;s:17:"notrehabilitation";i:8041;s:21:"notveryrehabilitation";i:8042;s:12:"notreinforce";i:8043;s:16:"notveryreinforce";i:8044;s:16:"notreinforcement";i:8045;s:20:"notveryreinforcement";i:8046;s:10:"notrejoice";i:8047;s:14:"notveryrejoice";i:8048;s:14:"notrejoicingly";i:8049;s:18:"notveryrejoicingly";i:8050;s:8:"notrelax";i:8051;s:12:"notveryrelax";i:8052;s:9:"notrelent";i:8053;s:13:"notveryrelent";i:8054;s:11:"notrelevant";i:8055;s:15:"notveryrelevant";i:8056;s:12:"notrelevance";i:8057;s:16:"notveryrelevance";i:8058;s:14:"notreliability";i:8059;s:18:"notveryreliability";i:8060;s:11:"notreliably";i:8061;s:15:"notveryreliably";i:8062;s:9:"notrelief";i:8063;s:13:"notveryrelief";i:8064;s:10:"notrelieve";i:8065;s:14:"notveryrelieve";i:8066;s:9:"notrelish";i:8067;s:13:"notveryrelish";i:8068;s:13:"notremarkably";i:8069;s:17:"notveryremarkably";i:8070;s:9:"notremedy";i:8071;s:13:"notveryremedy";i:8072;s:14:"notreminiscent";i:8073;s:18:"notveryreminiscent";i:8074;s:13:"notremunerate";i:8075;s:17:"notveryremunerate";i:8076;s:14:"notrenaissance";i:8077;s:18:"notveryrenaissance";i:8078;s:10:"notrenewal";i:8079;s:14:"notveryrenewal";i:8080;s:11:"notrenovate";i:8081;s:15:"notveryrenovate";i:8082;s:13:"notrenovation";i:8083;s:17:"notveryrenovation";i:8084;s:9:"notrenown";i:8085;s:13:"notveryrenown";i:8086;s:11:"notrenowned";i:8087;s:15:"notveryrenowned";i:8088;s:9:"notrepair";i:8089;s:13:"notveryrepair";i:8090;s:13:"notreparation";i:8091;s:17:"notveryreparation";i:8092;s:8:"notrepay";i:8093;s:12:"notveryrepay";i:8094;s:9:"notrepent";i:8095;s:13:"notveryrepent";i:8096;s:13:"notrepentance";i:8097;s:17:"notveryrepentance";i:8098;s:12:"notreputable";i:8099;s:16:"notveryreputable";i:8100;s:9:"notrescue";i:8101;s:13:"notveryrescue";i:8102;s:12:"notresilient";i:8103;s:16:"notveryresilient";i:8104;s:10:"notresolve";i:8105;s:14:"notveryresolve";i:8106;s:11:"notresolved";i:8107;s:15:"notveryresolved";i:8108;s:10:"notresound";i:8109;s:14:"notveryresound";i:8110;s:13:"notresounding";i:8111;s:17:"notveryresounding";i:8112;s:14:"notresourceful";i:8113;s:18:"notveryresourceful";i:8114;s:18:"notresourcefulness";i:8115;s:22:"notveryresourcefulness";i:8116;s:10:"notrespect";i:8117;s:14:"notveryrespect";i:8118;s:14:"notrespectable";i:8119;s:18:"notveryrespectable";i:8120;s:15:"notrespectfully";i:8121;s:19:"notveryrespectfully";i:8122;s:10:"notrespite";i:8123;s:14:"notveryrespite";i:8124;s:17:"notresponsibility";i:8125;s:21:"notveryresponsibility";i:8126;s:14:"notresponsibly";i:8127;s:18:"notveryresponsibly";i:8128;s:10:"notrestful";i:8129;s:14:"notveryrestful";i:8130;s:14:"notrestoration";i:8131;s:18:"notveryrestoration";i:8132;s:10:"notrestore";i:8133;s:14:"notveryrestore";i:8134;s:12:"notrestraint";i:8135;s:16:"notveryrestraint";i:8136;s:12:"notresurgent";i:8137;s:16:"notveryresurgent";i:8138;s:10:"notreunite";i:8139;s:14:"notveryreunite";i:8140;s:8:"notrevel";i:8141;s:12:"notveryrevel";i:8142;s:13:"notrevelation";i:8143;s:17:"notveryrevelation";i:8144;s:9:"notrevere";i:8145;s:13:"notveryrevere";i:8146;s:12:"notreverence";i:8147;s:16:"notveryreverence";i:8148;s:13:"notreverently";i:8149;s:17:"notveryreverently";i:8150;s:10:"notrevival";i:8151;s:14:"notveryrevival";i:8152;s:9:"notrevive";i:8153;s:13:"notveryrevive";i:8154;s:13:"notrevitalize";i:8155;s:17:"notveryrevitalize";i:8156;s:13:"notrevolution";i:8157;s:17:"notveryrevolution";i:8158;s:9:"notreward";i:8159;s:13:"notveryreward";i:8160;s:12:"notrewarding";i:8161;s:16:"notveryrewarding";i:8162;s:14:"notrewardingly";i:8163;s:18:"notveryrewardingly";i:8164;s:9:"notriches";i:8165;s:13:"notveryriches";i:8166;s:9:"notrichly";i:8167;s:13:"notveryrichly";i:8168;s:11:"notrichness";i:8169;s:15:"notveryrichness";i:8170;s:10:"notrighten";i:8171;s:14:"notveryrighten";i:8172;s:14:"notrighteously";i:8173;s:18:"notveryrighteously";i:8174;s:16:"notrighteousness";i:8175;s:20:"notveryrighteousness";i:8176;s:11:"notrightful";i:8177;s:15:"notveryrightful";i:8178;s:13:"notrightfully";i:8179;s:17:"notveryrightfully";i:8180;s:10:"notrightly";i:8181;s:14:"notveryrightly";i:8182;s:12:"notrightness";i:8183;s:16:"notveryrightness";i:8184;s:9:"notrights";i:8185;s:13:"notveryrights";i:8186;s:7:"notripe";i:8187;s:11:"notveryripe";i:8188;s:12:"notrisk-free";i:8189;s:16:"notveryrisk-free";i:8190;s:15:"notromantically";i:8191;s:19:"notveryromantically";i:8192;s:14:"notromanticize";i:8193;s:18:"notveryromanticize";i:8194;s:10:"notrousing";i:8195;s:14:"notveryrousing";i:8196;s:9:"notsacred";i:8197;s:13:"notverysacred";i:8198;s:7:"notsafe";i:8199;s:11:"notverysafe";i:8200;s:12:"notsafeguard";i:8201;s:16:"notverysafeguard";i:8202;s:11:"notsagacity";i:8203;s:15:"notverysagacity";i:8204;s:7:"notsage";i:8205;s:11:"notverysage";i:8206;s:9:"notsagely";i:8207;s:13:"notverysagely";i:8208;s:8:"notsaint";i:8209;s:12:"notverysaint";i:8210;s:14:"notsaintliness";i:8211;s:18:"notverysaintliness";i:8212;s:10:"notsalable";i:8213;s:14:"notverysalable";i:8214;s:11:"notsalivate";i:8215;s:15:"notverysalivate";i:8216;s:11:"notsalutary";i:8217;s:15:"notverysalutary";i:8218;s:9:"notsalute";i:8219;s:13:"notverysalute";i:8220;s:12:"notsalvation";i:8221;s:16:"notverysalvation";i:8222;s:11:"notsanctify";i:8223;s:15:"notverysanctify";i:8224;s:11:"notsanction";i:8225;s:15:"notverysanction";i:8226;s:11:"notsanctity";i:8227;s:15:"notverysanctity";i:8228;s:12:"notsanctuary";i:8229;s:16:"notverysanctuary";i:8230;s:11:"notsanguine";i:8231;s:15:"notverysanguine";i:8232;s:7:"notsane";i:8233;s:11:"notverysane";i:8234;s:9:"notsanity";i:8235;s:13:"notverysanity";i:8236;s:15:"notsatisfaction";i:8237;s:19:"notverysatisfaction";i:8238;s:17:"notsatisfactorily";i:8239;s:21:"notverysatisfactorily";i:8240;s:15:"notsatisfactory";i:8241;s:19:"notverysatisfactory";i:8242;s:10:"notsatisfy";i:8243;s:14:"notverysatisfy";i:8244;s:13:"notsatisfying";i:8245;s:17:"notverysatisfying";i:8246;s:8:"notsavor";i:8247;s:12:"notverysavor";i:8248;s:8:"notsavvy";i:8249;s:12:"notverysavvy";i:8250;s:9:"notscenic";i:8251;s:13:"notveryscenic";i:8252;s:11:"notscruples";i:8253;s:15:"notveryscruples";i:8254;s:13:"notscrupulous";i:8255;s:17:"notveryscrupulous";i:8256;s:15:"notscrupulously";i:8257;s:19:"notveryscrupulously";i:8258;s:11:"notseamless";i:8259;s:15:"notveryseamless";i:8260;s:11:"notseasoned";i:8261;s:15:"notveryseasoned";i:8262;s:9:"notsecure";i:8263;s:13:"notverysecure";i:8264;s:11:"notsecurely";i:8265;s:15:"notverysecurely";i:8266;s:11:"notsecurity";i:8267;s:15:"notverysecurity";i:8268;s:12:"notseductive";i:8269;s:16:"notveryseductive";i:8270;s:12:"notselective";i:8271;s:16:"notveryselective";i:8272;s:21:"notself-determination";i:8273;s:25:"notveryself-determination";i:8274;s:15:"notself-respect";i:8275;s:19:"notveryself-respect";i:8276;s:20:"notself-satisfaction";i:8277;s:24:"notveryself-satisfaction";i:8278;s:19:"notself-sufficiency";i:8279;s:23:"notveryself-sufficiency";i:8280;s:18:"notself-sufficient";i:8281;s:22:"notveryself-sufficient";i:8282;s:12:"notsemblance";i:8283;s:16:"notverysemblance";i:8284;s:12:"notsensation";i:8285;s:16:"notverysensation";i:8286;s:14:"notsensational";i:8287;s:18:"notverysensational";i:8288;s:16:"notsensationally";i:8289;s:20:"notverysensationally";i:8290;s:13:"notsensations";i:8291;s:17:"notverysensations";i:8292;s:8:"notsense";i:8293;s:12:"notverysense";i:8294;s:11:"notsensibly";i:8295;s:15:"notverysensibly";i:8296;s:14:"notsensitively";i:8297;s:18:"notverysensitively";i:8298;s:14:"notsensitivity";i:8299;s:18:"notverysensitivity";i:8300;s:12:"notsentiment";i:8301;s:16:"notverysentiment";i:8302;s:17:"notsentimentality";i:8303;s:21:"notverysentimentality";i:8304;s:16:"notsentimentally";i:8305;s:20:"notverysentimentally";i:8306;s:13:"notsentiments";i:8307;s:17:"notverysentiments";i:8308;s:11:"notserenity";i:8309;s:15:"notveryserenity";i:8310;s:9:"notsettle";i:8311;s:13:"notverysettle";i:8312;s:10:"notshelter";i:8313;s:14:"notveryshelter";i:8314;s:9:"notshield";i:8315;s:13:"notveryshield";i:8316;s:10:"notshimmer";i:8317;s:14:"notveryshimmer";i:8318;s:13:"notshimmering";i:8319;s:17:"notveryshimmering";i:8320;s:15:"notshimmeringly";i:8321;s:19:"notveryshimmeringly";i:8322;s:8:"notshine";i:8323;s:12:"notveryshine";i:8324;s:8:"notshiny";i:8325;s:12:"notveryshiny";i:8326;s:11:"notshrewdly";i:8327;s:15:"notveryshrewdly";i:8328;s:13:"notshrewdness";i:8329;s:17:"notveryshrewdness";i:8330;s:14:"notsignificant";i:8331;s:18:"notverysignificant";i:8332;s:15:"notsignificance";i:8333;s:19:"notverysignificance";i:8334;s:10:"notsignify";i:8335;s:14:"notverysignify";i:8336;s:9:"notsimple";i:8337;s:13:"notverysimple";i:8338;s:13:"notsimplicity";i:8339;s:17:"notverysimplicity";i:8340;s:13:"notsimplified";i:8341;s:17:"notverysimplified";i:8342;s:11:"notsimplify";i:8343;s:15:"notverysimplify";i:8344;s:12:"notsincerely";i:8345;s:16:"notverysincerely";i:8346;s:12:"notsincerity";i:8347;s:16:"notverysincerity";i:8348;s:8:"notskill";i:8349;s:12:"notveryskill";i:8350;s:10:"notskilled";i:8351;s:14:"notveryskilled";i:8352;s:11:"notskillful";i:8353;s:15:"notveryskillful";i:8354;s:13:"notskillfully";i:8355;s:17:"notveryskillfully";i:8356;s:8:"notsleek";i:8357;s:12:"notverysleek";i:8358;s:10:"notslender";i:8359;s:14:"notveryslender";i:8360;s:7:"notslim";i:8361;s:11:"notveryslim";i:8362;s:8:"notsmart";i:8363;s:12:"notverysmart";i:8364;s:10:"notsmarter";i:8365;s:14:"notverysmarter";i:8366;s:11:"notsmartest";i:8367;s:15:"notverysmartest";i:8368;s:10:"notsmartly";i:8369;s:14:"notverysmartly";i:8370;s:8:"notsmile";i:8371;s:12:"notverysmile";i:8372;s:10:"notsmiling";i:8373;s:14:"notverysmiling";i:8374;s:12:"notsmilingly";i:8375;s:16:"notverysmilingly";i:8376;s:10:"notsmitten";i:8377;s:14:"notverysmitten";i:8378;s:14:"notsoft-spoken";i:8379;s:18:"notverysoft-spoken";i:8380;s:9:"notsoften";i:8381;s:13:"notverysoften";i:8382;s:9:"notsolace";i:8383;s:13:"notverysolace";i:8384;s:13:"notsolicitous";i:8385;s:17:"notverysolicitous";i:8386;s:15:"notsolicitously";i:8387;s:19:"notverysolicitously";i:8388;s:13:"notsolicitude";i:8389;s:17:"notverysolicitude";i:8390;s:13:"notsolidarity";i:8391;s:17:"notverysolidarity";i:8392;s:9:"notsoothe";i:8393;s:13:"notverysoothe";i:8394;s:13:"notsoothingly";i:8395;s:17:"notverysoothingly";i:8396;s:8:"notsound";i:8397;s:12:"notverysound";i:8398;s:12:"notsoundness";i:8399;s:16:"notverysoundness";i:8400;s:11:"notspacious";i:8401;s:15:"notveryspacious";i:8402;s:8:"notspare";i:8403;s:12:"notveryspare";i:8404;s:10:"notsparing";i:8405;s:14:"notverysparing";i:8406;s:12:"notsparingly";i:8407;s:16:"notverysparingly";i:8408;s:10:"notsparkle";i:8409;s:14:"notverysparkle";i:8410;s:14:"notspectacular";i:8411;s:18:"notveryspectacular";i:8412;s:16:"notspectacularly";i:8413;s:20:"notveryspectacularly";i:8414;s:12:"notspellbind";i:8415;s:16:"notveryspellbind";i:8416;s:15:"notspellbinding";i:8417;s:19:"notveryspellbinding";i:8418;s:17:"notspellbindingly";i:8419;s:21:"notveryspellbindingly";i:8420;s:13:"notspellbound";i:8421;s:17:"notveryspellbound";i:8422;s:9:"notspirit";i:8423;s:13:"notveryspirit";i:8424;s:13:"notsplendidly";i:8425;s:17:"notverysplendidly";i:8426;s:11:"notsplendor";i:8427;s:15:"notverysplendor";i:8428;s:11:"notspotless";i:8429;s:15:"notveryspotless";i:8430;s:12:"notsprightly";i:8431;s:16:"notverysprightly";i:8432;s:7:"notspur";i:8433;s:11:"notveryspur";i:8434;s:11:"notsquarely";i:8435;s:15:"notverysquarely";i:8436;s:12:"notstability";i:8437;s:16:"notverystability";i:8438;s:12:"notstabilize";i:8439;s:16:"notverystabilize";i:8440;s:12:"notstainless";i:8441;s:16:"notverystainless";i:8442;s:8:"notstand";i:8443;s:12:"notverystand";i:8444;s:7:"notstar";i:8445;s:11:"notverystar";i:8446;s:8:"notstars";i:8447;s:12:"notverystars";i:8448;s:10:"notstately";i:8449;s:14:"notverystately";i:8450;s:13:"notstatuesque";i:8451;s:17:"notverystatuesque";i:8452;s:10:"notstaunch";i:8453;s:14:"notverystaunch";i:8454;s:12:"notstaunchly";i:8455;s:16:"notverystaunchly";i:8456;s:14:"notstaunchness";i:8457;s:18:"notverystaunchness";i:8458;s:12:"notsteadfast";i:8459;s:16:"notverysteadfast";i:8460;s:14:"notsteadfastly";i:8461;s:18:"notverysteadfastly";i:8462;s:16:"notsteadfastness";i:8463;s:20:"notverysteadfastness";i:8464;s:13:"notsteadiness";i:8465;s:17:"notverysteadiness";i:8466;s:10:"notstellar";i:8467;s:14:"notverystellar";i:8468;s:12:"notstellarly";i:8469;s:16:"notverystellarly";i:8470;s:12:"notstimulate";i:8471;s:16:"notverystimulate";i:8472;s:14:"notstimulating";i:8473;s:18:"notverystimulating";i:8474;s:14:"notstimulative";i:8475;s:18:"notverystimulative";i:8476;s:11:"notstirring";i:8477;s:15:"notverystirring";i:8478;s:13:"notstirringly";i:8479;s:17:"notverystirringly";i:8480;s:8:"notstood";i:8481;s:12:"notverystood";i:8482;s:11:"notstraight";i:8483;s:15:"notverystraight";i:8484;s:18:"notstraightforward";i:8485;s:22:"notverystraightforward";i:8486;s:14:"notstreamlined";i:8487;s:18:"notverystreamlined";i:8488;s:9:"notstride";i:8489;s:13:"notverystride";i:8490;s:10:"notstrides";i:8491;s:14:"notverystrides";i:8492;s:11:"notstriking";i:8493;s:15:"notverystriking";i:8494;s:13:"notstrikingly";i:8495;s:17:"notverystrikingly";i:8496;s:11:"notstriving";i:8497;s:15:"notverystriving";i:8498;s:13:"notstudiously";i:8499;s:17:"notverystudiously";i:8500;s:10:"notstunned";i:8501;s:14:"notverystunned";i:8502;s:11:"notstunning";i:8503;s:15:"notverystunning";i:8504;s:13:"notstunningly";i:8505;s:17:"notverystunningly";i:8506;s:13:"notstupendous";i:8507;s:17:"notverystupendous";i:8508;s:15:"notstupendously";i:8509;s:19:"notverystupendously";i:8510;s:9:"notsturdy";i:8511;s:13:"notverysturdy";i:8512;s:12:"notstylishly";i:8513;s:16:"notverystylishly";i:8514;s:12:"notsubscribe";i:8515;s:16:"notverysubscribe";i:8516;s:14:"notsubstantial";i:8517;s:18:"notverysubstantial";i:8518;s:16:"notsubstantially";i:8519;s:20:"notverysubstantially";i:8520;s:14:"notsubstantive";i:8521;s:18:"notverysubstantive";i:8522;s:10:"notsucceed";i:8523;s:14:"notverysucceed";i:8524;s:10:"notsuccess";i:8525;s:14:"notverysuccess";i:8526;s:15:"notsuccessfully";i:8527;s:19:"notverysuccessfully";i:8528;s:10:"notsuffice";i:8529;s:14:"notverysuffice";i:8530;s:13:"notsufficient";i:8531;s:17:"notverysufficient";i:8532;s:15:"notsufficiently";i:8533;s:19:"notverysufficiently";i:8534;s:10:"notsuggest";i:8535;s:14:"notverysuggest";i:8536;s:14:"notsuggestions";i:8537;s:18:"notverysuggestions";i:8538;s:7:"notsuit";i:8539;s:11:"notverysuit";i:8540;s:11:"notsuitable";i:8541;s:15:"notverysuitable";i:8542;s:12:"notsumptuous";i:8543;s:16:"notverysumptuous";i:8544;s:14:"notsumptuously";i:8545;s:18:"notverysumptuously";i:8546;s:16:"notsumptuousness";i:8547;s:20:"notverysumptuousness";i:8548;s:8:"notsuper";i:8549;s:12:"notverysuper";i:8550;s:11:"notsuperbly";i:8551;s:15:"notverysuperbly";i:8552;s:11:"notsuperior";i:8553;s:15:"notverysuperior";i:8554;s:14:"notsuperlative";i:8555;s:18:"notverysuperlative";i:8556;s:10:"notsupport";i:8557;s:14:"notverysupport";i:8558;s:12:"notsupporter";i:8559;s:16:"notverysupporter";i:8560;s:13:"notsupportive";i:8561;s:17:"notverysupportive";i:8562;s:10:"notsupreme";i:8563;s:14:"notverysupreme";i:8564;s:12:"notsupremely";i:8565;s:16:"notverysupremely";i:8566;s:9:"notsupurb";i:8567;s:13:"notverysupurb";i:8568;s:11:"notsupurbly";i:8569;s:15:"notverysupurbly";i:8570;s:9:"notsurely";i:8571;s:13:"notverysurely";i:8572;s:8:"notsurge";i:8573;s:12:"notverysurge";i:8574;s:10:"notsurging";i:8575;s:14:"notverysurging";i:8576;s:10:"notsurmise";i:8577;s:14:"notverysurmise";i:8578;s:11:"notsurmount";i:8579;s:15:"notverysurmount";i:8580;s:10:"notsurpass";i:8581;s:14:"notverysurpass";i:8582;s:11:"notsurvival";i:8583;s:15:"notverysurvival";i:8584;s:10:"notsurvive";i:8585;s:14:"notverysurvive";i:8586;s:11:"notsurvivor";i:8587;s:15:"notverysurvivor";i:8588;s:17:"notsustainability";i:8589;s:21:"notverysustainability";i:8590;s:14:"notsustainable";i:8591;s:18:"notverysustainable";i:8592;s:12:"notsustained";i:8593;s:16:"notverysustained";i:8594;s:11:"notsweeping";i:8595;s:15:"notverysweeping";i:8596;s:10:"notsweeten";i:8597;s:14:"notverysweeten";i:8598;s:13:"notsweetheart";i:8599;s:17:"notverysweetheart";i:8600;s:10:"notsweetly";i:8601;s:14:"notverysweetly";i:8602;s:12:"notsweetness";i:8603;s:16:"notverysweetness";i:8604;s:8:"notswift";i:8605;s:12:"notveryswift";i:8606;s:12:"notswiftness";i:8607;s:16:"notveryswiftness";i:8608;s:8:"notsworn";i:8609;s:12:"notverysworn";i:8610;s:7:"nottact";i:8611;s:11:"notverytact";i:8612;s:9:"nottalent";i:8613;s:13:"notverytalent";i:8614;s:11:"nottalented";i:8615;s:15:"notverytalented";i:8616;s:12:"nottantalize";i:8617;s:16:"notverytantalize";i:8618;s:14:"nottantalizing";i:8619;s:18:"notverytantalizing";i:8620;s:16:"nottantalizingly";i:8621;s:20:"notverytantalizingly";i:8622;s:8:"nottaste";i:8623;s:12:"notverytaste";i:8624;s:13:"nottemperance";i:8625;s:17:"notverytemperance";i:8626;s:12:"nottemperate";i:8627;s:16:"notverytemperate";i:8628;s:8:"nottempt";i:8629;s:12:"notverytempt";i:8630;s:11:"nottempting";i:8631;s:15:"notverytempting";i:8632;s:13:"nottemptingly";i:8633;s:17:"notverytemptingly";i:8634;s:12:"nottenacious";i:8635;s:16:"notverytenacious";i:8636;s:14:"nottenaciously";i:8637;s:18:"notverytenaciously";i:8638;s:11:"nottenacity";i:8639;s:15:"notverytenacity";i:8640;s:11:"nottenderly";i:8641;s:15:"notverytenderly";i:8642;s:13:"nottenderness";i:8643;s:17:"notverytenderness";i:8644;s:15:"notterrifically";i:8645;s:19:"notveryterrifically";i:8646;s:12:"notterrified";i:8647;s:16:"notveryterrified";i:8648;s:10:"notterrify";i:8649;s:14:"notveryterrify";i:8650;s:13:"notterrifying";i:8651;s:17:"notveryterrifying";i:8652;s:15:"notterrifyingly";i:8653;s:19:"notveryterrifyingly";i:8654;s:13:"notthankfully";i:8655;s:17:"notverythankfully";i:8656;s:12:"notthinkable";i:8657;s:16:"notverythinkable";i:8658;s:15:"notthoughtfully";i:8659;s:19:"notverythoughtfully";i:8660;s:17:"notthoughtfulness";i:8661;s:21:"notverythoughtfulness";i:8662;s:9:"notthrift";i:8663;s:13:"notverythrift";i:8664;s:9:"notthrill";i:8665;s:13:"notverythrill";i:8666;s:12:"notthrilling";i:8667;s:16:"notverythrilling";i:8668;s:14:"notthrillingly";i:8669;s:18:"notverythrillingly";i:8670;s:10:"notthrills";i:8671;s:14:"notverythrills";i:8672;s:9:"notthrive";i:8673;s:13:"notverythrive";i:8674;s:11:"notthriving";i:8675;s:15:"notverythriving";i:8676;s:9:"nottickle";i:8677;s:13:"notverytickle";i:8678;s:15:"nottime-honored";i:8679;s:19:"notverytime-honored";i:8680;s:9:"nottimely";i:8681;s:13:"notverytimely";i:8682;s:9:"nottingle";i:8683;s:13:"notverytingle";i:8684;s:12:"nottitillate";i:8685;s:16:"notverytitillate";i:8686;s:14:"nottitillating";i:8687;s:18:"notverytitillating";i:8688;s:16:"nottitillatingly";i:8689;s:20:"notverytitillatingly";i:8690;s:8:"nottoast";i:8691;s:12:"notverytoast";i:8692;s:15:"nottogetherness";i:8693;s:19:"notverytogetherness";i:8694;s:12:"nottolerable";i:8695;s:16:"notverytolerable";i:8696;s:12:"nottolerably";i:8697;s:16:"notverytolerably";i:8698;s:12:"nottolerance";i:8699;s:16:"notverytolerance";i:8700;s:13:"nottolerantly";i:8701;s:17:"notverytolerantly";i:8702;s:11:"nottolerate";i:8703;s:15:"notverytolerate";i:8704;s:13:"nottoleration";i:8705;s:17:"notverytoleration";i:8706;s:6:"nottop";i:8707;s:10:"notverytop";i:8708;s:9:"nottorrid";i:8709;s:13:"notverytorrid";i:8710;s:11:"nottorridly";i:8711;s:15:"notverytorridly";i:8712;s:12:"nottradition";i:8713;s:16:"notverytradition";i:8714;s:14:"nottraditional";i:8715;s:18:"notverytraditional";i:8716;s:14:"nottranquility";i:8717;s:18:"notverytranquility";i:8718;s:11:"nottreasure";i:8719;s:15:"notverytreasure";i:8720;s:8:"nottreat";i:8721;s:12:"notverytreat";i:8722;s:13:"nottremendous";i:8723;s:17:"notverytremendous";i:8724;s:15:"nottremendously";i:8725;s:19:"notverytremendously";i:8726;s:9:"nottrendy";i:8727;s:13:"notverytrendy";i:8728;s:14:"nottrepidation";i:8729;s:18:"notverytrepidation";i:8730;s:10:"nottribute";i:8731;s:14:"notverytribute";i:8732;s:7:"nottrim";i:8733;s:11:"notverytrim";i:8734;s:10:"nottriumph";i:8735;s:14:"notverytriumph";i:8736;s:12:"nottriumphal";i:8737;s:16:"notverytriumphal";i:8738;s:13:"nottriumphant";i:8739;s:17:"notverytriumphant";i:8740;s:15:"nottriumphantly";i:8741;s:19:"notverytriumphantly";i:8742;s:12:"nottruculent";i:8743;s:16:"notverytruculent";i:8744;s:14:"nottruculently";i:8745;s:18:"notverytruculently";i:8746;s:7:"nottrue";i:8747;s:11:"notverytrue";i:8748;s:8:"nottrump";i:8749;s:12:"notverytrump";i:8750;s:10:"nottrumpet";i:8751;s:14:"notverytrumpet";i:8752;s:8:"nottrust";i:8753;s:12:"notverytrust";i:8754;s:11:"nottrusting";i:8755;s:15:"notverytrusting";i:8756;s:13:"nottrustingly";i:8757;s:17:"notverytrustingly";i:8758;s:18:"nottrustworthiness";i:8759;s:22:"notverytrustworthiness";i:8760;s:14:"nottrustworthy";i:8761;s:18:"notverytrustworthy";i:8762;s:8:"nottruth";i:8763;s:12:"notverytruth";i:8764;s:13:"nottruthfully";i:8765;s:17:"notverytruthfully";i:8766;s:15:"nottruthfulness";i:8767;s:19:"notverytruthfulness";i:8768;s:10:"nottwinkly";i:8769;s:14:"notverytwinkly";i:8770;s:11:"notultimate";i:8771;s:15:"notveryultimate";i:8772;s:13:"notultimately";i:8773;s:17:"notveryultimately";i:8774;s:8:"notultra";i:8775;s:12:"notveryultra";i:8776;s:12:"notunabashed";i:8777;s:16:"notveryunabashed";i:8778;s:14:"notunabashedly";i:8779;s:18:"notveryunabashedly";i:8780;s:12:"notunanimous";i:8781;s:16:"notveryunanimous";i:8782;s:15:"notunassailable";i:8783;s:19:"notveryunassailable";i:8784;s:11:"notunbiased";i:8785;s:15:"notveryunbiased";i:8786;s:10:"notunbosom";i:8787;s:14:"notveryunbosom";i:8788;s:10:"notunbound";i:8789;s:14:"notveryunbound";i:8790;s:11:"notunbroken";i:8791;s:15:"notveryunbroken";i:8792;s:11:"notuncommon";i:8793;s:15:"notveryuncommon";i:8794;s:13:"notuncommonly";i:8795;s:17:"notveryuncommonly";i:8796;s:14:"notunconcerned";i:8797;s:18:"notveryunconcerned";i:8798;s:16:"notunconditional";i:8799;s:20:"notveryunconditional";i:8800;s:17:"notunconventional";i:8801;s:21:"notveryunconventional";i:8802;s:12:"notundaunted";i:8803;s:16:"notveryundaunted";i:8804;s:13:"notunderstand";i:8805;s:17:"notveryunderstand";i:8806;s:17:"notunderstandable";i:8807;s:21:"notveryunderstandable";i:8808;s:13:"notunderstood";i:8809;s:17:"notveryunderstood";i:8810;s:13:"notunderstate";i:8811;s:17:"notveryunderstate";i:8812;s:14:"notunderstated";i:8813;s:18:"notveryunderstated";i:8814;s:16:"notunderstatedly";i:8815;s:20:"notveryunderstatedly";i:8816;s:15:"notundisputable";i:8817;s:19:"notveryundisputable";i:8818;s:15:"notundisputably";i:8819;s:19:"notveryundisputably";i:8820;s:13:"notundisputed";i:8821;s:17:"notveryundisputed";i:8822;s:12:"notundoubted";i:8823;s:16:"notveryundoubted";i:8824;s:14:"notundoubtedly";i:8825;s:18:"notveryundoubtedly";i:8826;s:15:"notunencumbered";i:8827;s:19:"notveryunencumbered";i:8828;s:14:"notunequivocal";i:8829;s:18:"notveryunequivocal";i:8830;s:16:"notunequivocally";i:8831;s:20:"notveryunequivocally";i:8832;s:10:"notunfazed";i:8833;s:14:"notveryunfazed";i:8834;s:13:"notunfettered";i:8835;s:17:"notveryunfettered";i:8836;s:16:"notunforgettable";i:8837;s:20:"notveryunforgettable";i:8838;s:10:"notuniform";i:8839;s:14:"notveryuniform";i:8840;s:12:"notuniformly";i:8841;s:16:"notveryuniformly";i:8842;s:8:"notunity";i:8843;s:12:"notveryunity";i:8844;s:12:"notuniversal";i:8845;s:16:"notveryuniversal";i:8846;s:12:"notunlimited";i:8847;s:16:"notveryunlimited";i:8848;s:15:"notunparalleled";i:8849;s:19:"notveryunparalleled";i:8850;s:16:"notunpretentious";i:8851;s:20:"notveryunpretentious";i:8852;s:17:"notunquestionable";i:8853;s:21:"notveryunquestionable";i:8854;s:17:"notunquestionably";i:8855;s:21:"notveryunquestionably";i:8856;s:15:"notunrestricted";i:8857;s:19:"notveryunrestricted";i:8858;s:12:"notunscathed";i:8859;s:16:"notveryunscathed";i:8860;s:12:"notunselfish";i:8861;s:16:"notveryunselfish";i:8862;s:12:"notuntouched";i:8863;s:16:"notveryuntouched";i:8864;s:12:"notuntrained";i:8865;s:16:"notveryuntrained";i:8866;s:9:"notupbeat";i:8867;s:13:"notveryupbeat";i:8868;s:10:"notupfront";i:8869;s:14:"notveryupfront";i:8870;s:10:"notupgrade";i:8871;s:14:"notveryupgrade";i:8872;s:9:"notupheld";i:8873;s:13:"notveryupheld";i:8874;s:9:"notuphold";i:8875;s:13:"notveryuphold";i:8876;s:9:"notuplift";i:8877;s:13:"notveryuplift";i:8878;s:12:"notuplifting";i:8879;s:16:"notveryuplifting";i:8880;s:14:"notupliftingly";i:8881;s:18:"notveryupliftingly";i:8882;s:13:"notupliftment";i:8883;s:17:"notveryupliftment";i:8884;s:10:"notupscale";i:8885;s:14:"notveryupscale";i:8886;s:9:"notupside";i:8887;s:13:"notveryupside";i:8888;s:9:"notupward";i:8889;s:13:"notveryupward";i:8890;s:7:"noturge";i:8891;s:11:"notveryurge";i:8892;s:9:"notusable";i:8893;s:13:"notveryusable";i:8894;s:9:"notuseful";i:8895;s:13:"notveryuseful";i:8896;s:13:"notusefulness";i:8897;s:17:"notveryusefulness";i:8898;s:14:"notutilitarian";i:8899;s:18:"notveryutilitarian";i:8900;s:9:"notutmost";i:8901;s:13:"notveryutmost";i:8902;s:12:"notuttermost";i:8903;s:16:"notveryuttermost";i:8904;s:12:"notvaliantly";i:8905;s:16:"notveryvaliantly";i:8906;s:8:"notvalid";i:8907;s:12:"notveryvalid";i:8908;s:11:"notvalidity";i:8909;s:15:"notveryvalidity";i:8910;s:8:"notvalor";i:8911;s:12:"notveryvalor";i:8912;s:11:"notvaluable";i:8913;s:15:"notveryvaluable";i:8914;s:9:"notvalues";i:8915;s:13:"notveryvalues";i:8916;s:11:"notvanquish";i:8917;s:15:"notveryvanquish";i:8918;s:7:"notvast";i:8919;s:11:"notveryvast";i:8920;s:9:"notvastly";i:8921;s:13:"notveryvastly";i:8922;s:11:"notvastness";i:8923;s:15:"notveryvastness";i:8924;s:12:"notvenerable";i:8925;s:16:"notveryvenerable";i:8926;s:12:"notvenerably";i:8927;s:16:"notveryvenerably";i:8928;s:11:"notvenerate";i:8929;s:15:"notveryvenerate";i:8930;s:13:"notverifiable";i:8931;s:17:"notveryverifiable";i:8932;s:12:"notveritable";i:8933;s:16:"notveryveritable";i:8934;s:14:"notversatility";i:8935;s:18:"notveryversatility";i:8936;s:9:"notviable";i:8937;s:13:"notveryviable";i:8938;s:12:"notviability";i:8939;s:16:"notveryviability";i:8940;s:10:"notvibrant";i:8941;s:14:"notveryvibrant";i:8942;s:12:"notvibrantly";i:8943;s:16:"notveryvibrantly";i:8944;s:13:"notvictorious";i:8945;s:17:"notveryvictorious";i:8946;s:10:"notvictory";i:8947;s:14:"notveryvictory";i:8948;s:12:"notvigilance";i:8949;s:16:"notveryvigilance";i:8950;s:11:"notvigilant";i:8951;s:15:"notveryvigilant";i:8952;s:13:"notvigorously";i:8953;s:17:"notveryvigorously";i:8954;s:12:"notvindicate";i:8955;s:16:"notveryvindicate";i:8956;s:10:"notvintage";i:8957;s:14:"notveryvintage";i:8958;s:9:"notvirtue";i:8959;s:13:"notveryvirtue";i:8960;s:13:"notvirtuously";i:8961;s:17:"notveryvirtuously";i:8962;s:8:"notvital";i:8963;s:12:"notveryvital";i:8964;s:11:"notvitality";i:8965;s:15:"notveryvitality";i:8966;s:8:"notvivid";i:8967;s:12:"notveryvivid";i:8968;s:14:"notvoluntarily";i:8969;s:18:"notveryvoluntarily";i:8970;s:12:"notvoluntary";i:8971;s:16:"notveryvoluntary";i:8972;s:8:"notvouch";i:8973;s:12:"notveryvouch";i:8974;s:12:"notvouchsafe";i:8975;s:16:"notveryvouchsafe";i:8976;s:6:"notvow";i:8977;s:10:"notveryvow";i:8978;s:13:"notvulnerable";i:8979;s:17:"notveryvulnerable";i:8980;s:14:"notwarmhearted";i:8981;s:18:"notverywarmhearted";i:8982;s:9:"notwarmly";i:8983;s:13:"notverywarmly";i:8984;s:9:"notwarmth";i:8985;s:13:"notverywarmth";i:8986;s:10:"notwealthy";i:8987;s:14:"notverywealthy";i:8988;s:10:"notwelfare";i:8989;s:14:"notverywelfare";i:8990;s:13:"notwell-being";i:8991;s:17:"notverywell-being";i:8992;s:17:"notwell-connected";i:8993;s:21:"notverywell-connected";i:8994;s:16:"notwell-educated";i:8995;s:20:"notverywell-educated";i:8996;s:19:"notwell-established";i:8997;s:23:"notverywell-established";i:8998;s:16:"notwell-informed";i:8999;s:20:"notverywell-informed";i:9000;s:19:"notwell-intentioned";i:9001;s:23:"notverywell-intentioned";i:9002;s:15:"notwell-managed";i:9003;s:19:"notverywell-managed";i:9004;s:18:"notwell-positioned";i:9005;s:22:"notverywell-positioned";i:9006;s:18:"notwell-publicized";i:9007;s:22:"notverywell-publicized";i:9008;s:16:"notwell-received";i:9009;s:20:"notverywell-received";i:9010;s:16:"notwell-regarded";i:9011;s:20:"notverywell-regarded";i:9012;s:11:"notwell-run";i:9013;s:15:"notverywell-run";i:9014;s:15:"notwell-wishers";i:9015;s:19:"notverywell-wishers";i:9016;s:12:"notwellbeing";i:9017;s:16:"notverywellbeing";i:9018;s:8:"notwhite";i:9019;s:12:"notverywhite";i:9020;s:17:"notwholeheartedly";i:9021;s:21:"notverywholeheartedly";i:9022;s:12:"notwholesome";i:9023;s:16:"notverywholesome";i:9024;s:7:"notwide";i:9025;s:11:"notverywide";i:9026;s:12:"notwide-open";i:9027;s:16:"notverywide-open";i:9028;s:15:"notwide-ranging";i:9029;s:19:"notverywide-ranging";i:9030;s:10:"notwillful";i:9031;s:14:"notverywillful";i:9032;s:12:"notwillfully";i:9033;s:16:"notverywillfully";i:9034;s:14:"notwillingness";i:9035;s:18:"notverywillingness";i:9036;s:7:"notwink";i:9037;s:11:"notverywink";i:9038;s:11:"notwinnable";i:9039;s:15:"notverywinnable";i:9040;s:10:"notwinners";i:9041;s:14:"notverywinners";i:9042;s:9:"notwisdom";i:9043;s:13:"notverywisdom";i:9044;s:9:"notwisely";i:9045;s:13:"notverywisely";i:9046;s:9:"notwishes";i:9047;s:13:"notverywishes";i:9048;s:10:"notwishing";i:9049;s:14:"notverywishing";i:9050;s:14:"notwonderfully";i:9051;s:18:"notverywonderfully";i:9052;s:12:"notwonderous";i:9053;s:16:"notverywonderous";i:9054;s:14:"notwonderously";i:9055;s:18:"notverywonderously";i:9056;s:11:"notwondrous";i:9057;s:15:"notverywondrous";i:9058;s:6:"notwoo";i:9059;s:10:"notverywoo";i:9060;s:11:"notworkable";i:9061;s:15:"notveryworkable";i:9062;s:15:"notworld-famous";i:9063;s:19:"notveryworld-famous";i:9064;s:10:"notworship";i:9065;s:14:"notveryworship";i:9066;s:8:"notworth";i:9067;s:12:"notveryworth";i:9068;s:14:"notworth-while";i:9069;s:18:"notveryworth-while";i:9070;s:13:"notworthiness";i:9071;s:17:"notveryworthiness";i:9072;s:13:"notworthwhile";i:9073;s:17:"notveryworthwhile";i:9074;s:6:"notwow";i:9075;s:10:"notverywow";i:9076;s:6:"notwry";i:9077;s:10:"notverywry";i:9078;s:8:"notyearn";i:9079;s:12:"notveryyearn";i:9080;s:11:"notyearning";i:9081;s:15:"notveryyearning";i:9082;s:13:"notyearningly";i:9083;s:17:"notveryyearningly";i:9084;s:6:"notyep";i:9085;s:10:"notveryyep";i:9086;s:11:"notyouthful";i:9087;s:15:"notveryyouthful";i:9088;s:7:"notzeal";i:9089;s:11:"notveryzeal";i:9090;s:9:"notzenith";i:9091;s:13:"notveryzenith";i:9092;s:7:"notzest";i:9093;s:11:"notveryzest";i:9094;s:9:"isn'tgood";}data/data.neu.php000064400000017211151556062050007674 0ustar00a:373:{i:0;s:7:"average";i:1;s:8:"mediocre";i:2;s:2:"ok";i:3;s:7:"alright";i:4;s:3:"<:}";i:5;s:3:";o)";i:6;s:2:";)";i:7;s:2:":|";i:8;s:2:":l";i:9;s:8:":0->-<|:";i:10;s:2:":-";i:11;s:3:":-o";i:12;s:3:":-\";i:13;s:3:"8-)";i:14;s:2:"*)";i:15;s:3:"(o;";i:16;s:8:"absolute";i:17;s:10:"absolutely";i:18;s:8:"absorbed";i:19;s:10:"accentuate";i:20;s:8:"activist";i:21;s:6:"actual";i:22;s:9:"actuality";i:23;s:11:"adolescents";i:24;s:6:"affect";i:25;s:8:"affected";i:26;s:3:"aha";i:27;s:3:"air";i:28;s:5:"alert";i:29;s:8:"all-time";i:30;s:10:"allegorize";i:31;s:8:"alliance";i:32;s:9:"alliances";i:33;s:8:"allusion";i:34;s:9:"allusions";i:35;s:10:"altogether";i:36;s:7:"amplify";i:37;s:10:"analytical";i:38;s:8:"apparent";i:39;s:10:"apparently";i:40;s:10:"appearance";i:41;s:9:"apprehend";i:42;s:6:"assess";i:43;s:10:"assessment";i:44;s:11:"assessments";i:45;s:10:"assumption";i:46;s:10:"astronomic";i:47;s:12:"astronomical";i:48;s:14:"astronomically";i:49;s:8:"attitude";i:50;s:9:"attitudes";i:51;s:9:"awareness";i:52;s:5:"aware";i:53;s:4:"baby";i:54;s:9:"basically";i:55;s:6:"batons";i:56;s:6:"belief";i:57;s:7:"beliefs";i:58;s:3:"big";i:59;s:5:"blood";i:60;s:11:"broad-based";i:61;s:9:"ceaseless";i:62;s:7:"central";i:63;s:9:"certified";i:64;s:5:"chant";i:65;s:5:"claim";i:66;s:11:"clandestine";i:67;s:8:"cogitate";i:68;s:10:"cognizance";i:69;s:7:"comment";i:70;s:11:"commentator";i:71;s:8:"complete";i:72;s:10:"completely";i:73;s:10:"comprehend";i:74;s:9:"concerted";i:75;s:7:"confide";i:76;s:10:"conjecture";i:77;s:10:"conscience";i:78;s:13:"consciousness";i:79;s:12:"considerable";i:80;s:12:"considerably";i:81;s:13:"consideration";i:82;s:13:"constitutions";i:83;s:11:"contemplate";i:84;s:10:"continuous";i:85;s:10:"corrective";i:86;s:6:"covert";i:87;s:6:"decide";i:88;s:6:"deduce";i:89;s:6:"deeply";i:90;s:7:"destiny";i:91;s:10:"difference";i:92;s:9:"diplomacy";i:93;s:7:"discern";i:94;s:11:"disposition";i:95;s:10:"distinctly";i:96;s:8:"dominant";i:97;s:9:"downright";i:98;s:12:"dramatically";i:99;s:4:"duty";i:100;s:11:"effectively";i:101;s:9:"elaborate";i:102;s:10:"embodiment";i:103;s:7:"emotion";i:104;s:8:"emotions";i:105;s:9:"emphasise";i:106;s:6:"engage";i:107;s:7:"engross";i:108;s:6:"entire";i:109;s:12:"entrenchment";i:110;s:8:"evaluate";i:111;s:10:"evaluation";i:112;s:11:"exclusively";i:113;s:11:"expectation";i:114;s:7:"expound";i:115;s:10:"expression";i:116;s:11:"expressions";i:117;s:11:"extemporize";i:118;s:9:"extensive";i:119;s:11:"extensively";i:120;s:8:"eyebrows";i:121;s:4:"fact";i:122;s:5:"facts";i:123;s:7:"factual";i:124;s:8:"familiar";i:125;s:12:"far-reaching";i:126;s:4:"fast";i:127;s:4:"feel";i:128;s:5:"feels";i:129;s:4:"felt";i:130;s:7:"feeling";i:131;s:8:"feelings";i:132;s:7:"finally";i:133;s:4:"firm";i:134;s:6:"firmly";i:135;s:5:"fixer";i:136;s:5:"floor";i:137;s:6:"forsee";i:138;s:8:"foretell";i:139;s:8:"fortress";i:140;s:7:"frankly";i:141;s:8:"frequent";i:142;s:4:"full";i:143;s:5:"fully";i:144;s:10:"full-scale";i:145;s:11:"fundamental";i:146;s:13:"fundamentally";i:147;s:6:"funded";i:148;s:9:"galvanize";i:149;s:8:"gestures";i:150;s:5:"giant";i:151;s:6:"giants";i:152;s:8:"gigantic";i:153;s:5:"glean";i:154;s:7:"greatly";i:155;s:7:"growing";i:156;s:7:"halfway";i:157;s:4:"halt";i:158;s:10:"heavy-duty";i:159;s:5:"hefty";i:160;s:4:"high";i:161;s:12:"high-powered";i:162;s:2:"hm";i:163;s:3:"hmm";i:164;s:4:"huge";i:165;s:9:"hypnotize";i:166;s:4:"idea";i:167;s:6:"ignite";i:168;s:11:"imagination";i:169;s:7:"imagine";i:170;s:11:"immediately";i:171;s:7:"immense";i:172;s:9:"immensely";i:173;s:9:"immensity";i:174;s:12:"immensurable";i:175;s:6:"immune";i:176;s:10:"imperative";i:177;s:12:"imperatively";i:178;s:8:"implicit";i:179;s:5:"imply";i:180;s:10:"inarguable";i:181;s:10:"inarguably";i:182;s:10:"increasing";i:183;s:12:"increasingly";i:184;s:10:"indication";i:185;s:10:"indicative";i:186;s:8:"indirect";i:187;s:10:"infectious";i:188;s:5:"infer";i:189;s:9:"inference";i:190;s:9:"influence";i:191;s:13:"informational";i:192;s:8:"inherent";i:193;s:7:"inkling";i:194;s:8:"inklings";i:195;s:11:"innumerable";i:196;s:11:"innumerably";i:197;s:10:"innumerous";i:198;s:8:"insights";i:199;s:6:"intend";i:200;s:9:"intensive";i:201;s:11:"intensively";i:202;s:6:"intent";i:203;s:9:"intention";i:204;s:10:"intentions";i:205;s:7:"intents";i:206;s:8:"intimate";i:207;s:8:"intrigue";i:208;s:12:"irregardless";i:209;s:9:"judgement";i:210;s:10:"judgements";i:211;s:8:"judgment";i:212;s:9:"judgments";i:213;s:3:"key";i:214;s:4:"knew";i:215;s:7:"knowing";i:216;s:9:"knowingly";i:217;s:9:"knowledge";i:218;s:5:"large";i:219;s:11:"large-scale";i:220;s:7:"largely";i:221;s:6:"lastly";i:222;s:5:"learn";i:223;s:6:"legacy";i:224;s:8:"legacies";i:225;s:10:"legalistic";i:226;s:10:"likelihood";i:227;s:8:"likewise";i:228;s:9:"limitless";i:229;s:5:"major";i:230;s:6:"mantra";i:231;s:7:"massive";i:232;s:6:"matter";i:233;s:8:"memories";i:234;s:9:"mentality";i:235;s:11:"metaphorize";i:236;s:5:"minor";i:237;s:2:"mm";i:238;s:6:"motive";i:239;s:4:"move";i:240;s:3:"mum";i:241;s:3:"nap";i:242;s:7:"nascent";i:243;s:6:"nature";i:244;s:7:"needful";i:245;s:9:"needfully";i:246;s:10:"nonviolent";i:247;s:6:"notion";i:248;s:6:"nuance";i:249;s:7:"nuances";i:250;s:10:"obligation";i:251;s:7:"obvious";i:252;s:7:"olympic";i:253;s:10:"open-ended";i:254;s:7:"opinion";i:255;s:8:"opinions";i:256;s:9:"orthodoxy";i:257;s:7:"outlook";i:258;s:8:"outright";i:259;s:9:"outspoken";i:260;s:5:"overt";i:261;s:9:"overtures";i:262;s:6:"pacify";i:263;s:11:"perceptions";i:264;s:11:"persistence";i:265;s:11:"perspective";i:266;s:12:"philosophize";i:267;s:7:"pivotal";i:268;s:6:"player";i:269;s:7:"plenary";i:270;s:5:"point";i:271;s:6:"ponder";i:272;s:8:"position";i:273;s:11:"possibility";i:274;s:8:"possibly";i:275;s:7:"posture";i:276;s:5:"power";i:277;s:11:"practically";i:278;s:4:"pray";i:279;s:11:"predictable";i:280;s:13:"predictablely";i:281;s:11:"predominant";i:282;s:8:"pressure";i:283;s:9:"pressures";i:284;s:9:"prevalent";i:285;s:9:"primarily";i:286;s:7:"primary";i:287;s:5:"prime";i:288;s:8:"proclaim";i:289;s:13:"prognosticate";i:290;s:8:"prophesy";i:291;s:13:"proportionate";i:292;s:15:"proportionately";i:293;s:5:"prove";i:294;s:5:"quick";i:295;s:5:"rapid";i:296;s:4:"rare";i:297;s:6:"rarely";i:298;s:5:"react";i:299;s:8:"reaction";i:300;s:9:"reactions";i:301;s:9:"readiness";i:302;s:11:"realization";i:303;s:12:"recognizable";i:304;s:10:"reflecting";i:305;s:6:"regard";i:306;s:12:"regardlessly";i:307;s:9:"reiterate";i:308;s:10:"reiterated";i:309;s:10:"reiterates";i:310;s:9:"relations";i:311;s:6:"remark";i:312;s:9:"renewable";i:313;s:7:"replete";i:314;s:7:"reputed";i:315;s:6:"reveal";i:316;s:9:"revealing";i:317;s:10:"revelatory";i:318;s:9:"screaming";i:319;s:11:"screamingly";i:320;s:10:"scrutinize";i:321;s:8:"scrutiny";i:322;s:9:"seemingly";i:323;s:16:"self-examination";i:324;s:4:"show";i:325;s:7:"signals";i:326;s:6:"simply";i:327;s:6:"sleepy";i:328;s:11:"soliloquize";i:329;s:11:"sovereignty";i:330;s:8:"specific";i:331;s:12:"specifically";i:332;s:9:"speculate";i:333;s:11:"speculation";i:334;s:14:"splayed-finger";i:335;s:6:"stance";i:336;s:7:"stances";i:337;s:6:"stands";i:338;s:10:"statements";i:339;s:4:"stir";i:340;s:8:"strength";i:341;s:22:"stronger-than-expected";i:342;s:7:"stuffed";i:343;s:7:"stupefy";i:344;s:7:"suppose";i:345;s:9:"supposing";i:346;s:8:"surprise";i:347;s:10:"surprising";i:348;s:12:"surprisingly";i:349;s:5:"swing";i:350;s:4:"tale";i:351;s:4:"tall";i:352;s:10:"tantamount";i:353;s:5:"taste";i:354;s:8:"tendency";i:355;s:10:"theoretize";i:356;s:8:"thinking";i:357;s:7:"thought";i:358;s:6:"thusly";i:359;s:4:"tint";i:360;s:5:"touch";i:361;s:7:"touches";i:362;s:12:"transparency";i:363;s:11:"transparent";i:364;s:9:"transport";i:365;s:9:"unaudited";i:366;s:10:"utterances";i:367;s:4:"view";i:368;s:10:"viewpoints";i:369;s:5:"views";i:370;s:5:"vocal";i:371;s:5:"whiff";i:372;s:4:"yeah";}
data/data.pos.php000064400001112574151556062050007717 0ustar00a:11078:{i:0;s:4:"like";i:1;s:7:"awesome";i:2;s:7:"special";i:3;s:14:"discriminating";i:4;s:11:"responsible";i:5;s:11:"distinctive";i:6;s:6:"active";i:7;s:6:"sprite";i:8;s:6:"strong";i:9;s:11:"captivating";i:10;s:8:"moderate";i:11;s:11:"accountable";i:12;s:6:"benign";i:13;s:10:"passionate";i:14;s:12:"enthusiastic";i:15;s:10:"purposeful";i:16;s:7:"concise";i:17;s:8:"balanced";i:18;s:6:"speedy";i:19;s:5:"moral";i:20;s:7:"thrifty";i:21;s:7:"amiable";i:22;s:9:"versatile";i:23;s:7:"gallant";i:24;s:4:"rosy";i:25;s:11:"encouraging";i:26;s:7:"dutiful";i:27;s:8:"heavenly";i:28;s:9:"agreeable";i:29;s:9:"dignified";i:30;s:6:"tender";i:31;s:7:"ethical";i:32;s:9:"vivacious";i:33;s:7:"prudent";i:34;s:6:"lively";i:35;s:9:"visionary";i:36;s:9:"ambitious";i:37;s:11:"sentimental";i:38;s:10:"attractive";i:39;s:6:"poetic";i:40;s:7:"refined";i:41;s:8:"adorable";i:42;s:11:"appropriate";i:43;s:8:"likeable";i:44;s:8:"romantic";i:45;s:7:"valiant";i:46;s:11:"considerate";i:47;s:5:"handy";i:48;s:10:"systematic";i:49;s:4:"airy";i:50;s:8:"positive";i:51;s:8:"thankful";i:52;s:10:"nourishing";i:53;s:8:"spirited";i:54;s:6:"steady";i:55;s:8:"precious";i:56;s:12:"appreciative";i:57;s:9:"spiritual";i:58;s:6:"comely";i:59;s:10:"respectful";i:60;s:9:"hilarious";i:61;s:10:"forthright";i:62;s:5:"suave";i:63;s:9:"priceless";i:64;s:10:"reasonable";i:65;s:5:"light";i:66;s:6:"mature";i:67;s:11:"fashionable";i:68;s:5:"sunny";i:69;s:8:"generous";i:70;s:10:"discerning";i:71;s:8:"amicable";i:72;s:9:"energetic";i:73;s:7:"worldly";i:74;s:8:"prolific";i:75;s:13:"sophisticated";i:76;s:8:"splendid";i:77;s:6:"prompt";i:78;s:10:"dependable";i:79;s:11:"clearheaded";i:80;s:7:"sincere";i:81;s:7:"willing";i:82;s:7:"saintly";i:83;s:10:"productive";i:84;s:10:"charitable";i:85;s:5:"sweet";i:86;s:10:"impressive";i:87;s:10:"democratic";i:88;s:5:"sharp";i:89;s:8:"terrific";i:90;s:8:"reliable";i:91;s:8:"flexible";i:92;s:10:"deliberate";i:93;s:6:"candid";i:94;s:6:"genial";i:95;s:7:"radiant";i:96;s:8:"resolute";i:97;s:9:"important";i:98;s:5:"grand";i:99;s:9:"sagacious";i:100;s:11:"established";i:101;s:10:"privileged";i:102;s:10:"beneficent";i:103;s:13:"philosophical";i:104;s:9:"rejoicing";i:105;s:6:"astute";i:106;s:6:"seemly";i:107;s:12:"accomplished";i:108;s:10:"autonomous";i:109;s:9:"scholarly";i:110;s:7:"complex";i:111;s:4:"spry";i:112;s:6:"smooth";i:113;s:8:"blissful";i:114;s:7:"amorous";i:115;s:7:"genuine";i:116;s:8:"artistic";i:117;s:10:"consummate";i:118;s:13:"compassionate";i:119;s:11:"independent";i:120;s:10:"openhanded";i:121;s:5:"godly";i:122;s:9:"congenial";i:123;s:7:"blessed";i:124;s:9:"admirable";i:125;s:4:"real";i:126;s:8:"polished";i:127;s:9:"deserving";i:128;s:6:"daring";i:129;s:4:"free";i:130;s:8:"tolerant";i:131;s:5:"great";i:132;s:7:"fertile";i:133;s:8:"masterly";i:134;s:7:"elegant";i:135;s:8:"sociable";i:136;s:7:"winsome";i:137;s:8:"fruitful";i:138;s:13:"understanding";i:139;s:7:"mindful";i:140;s:9:"forgiving";i:141;s:12:"affectionate";i:142;s:8:"jubilant";i:143;s:8:"cerebral";i:144;s:10:"thoughtful";i:145;s:9:"provident";i:146;s:9:"attentive";i:147;s:8:"virtuous";i:148;s:8:"tranquil";i:149;s:7:"logical";i:150;s:4:"fine";i:151;s:6:"caring";i:152;s:9:"disarming";i:153;s:9:"courteous";i:154;s:7:"heedful";i:155;s:9:"intuitive";i:156;s:4:"chic";i:157;s:9:"excellent";i:158;s:7:"affable";i:159;s:7:"hopeful";i:160;s:7:"stylish";i:161;s:6:"brainy";i:162;s:8:"peaceful";i:163;s:10:"personable";i:164;s:6:"subtle";i:165;s:8:"decisive";i:166;s:9:"confident";i:167;s:10:"neighborly";i:168;s:8:"studious";i:169;s:4:"good";i:170;s:9:"desirable";i:171;s:6:"nimble";i:172;s:4:"calm";i:173;s:7:"amazing";i:174;s:10:"persuasive";i:175;s:9:"dedicated";i:176;s:10:"consistent";i:177;s:9:"convivial";i:178;s:6:"robust";i:179;s:13:"philanthropic";i:180;s:4:"wise";i:181;s:6:"chaste";i:182;s:11:"goodhearted";i:183;s:6:"direct";i:184;s:11:"affirmative";i:185;s:10:"altruistic";i:186;s:8:"gracious";i:187;s:8:"fabulous";i:188;s:10:"convulsive";i:189;s:8:"powerful";i:190;s:4:"warm";i:191;s:8:"pleasant";i:192;s:7:"devoted";i:193;s:8:"original";i:194;s:6:"superb";i:195;s:11:"intelligent";i:196;s:7:"playful";i:197;s:6:"elated";i:198;s:8:"punctual";i:199;s:8:"credible";i:200;s:10:"reflective";i:201;s:13:"companionable";i:202;s:8:"alluring";i:203;s:9:"wonderful";i:204;s:8:"vigorous";i:205;s:6:"proper";i:206;s:4:"mild";i:207;s:6:"chatty";i:208;s:6:"bright";i:209;s:10:"diplomatic";i:210;s:10:"immaculate";i:211;s:7:"defined";i:212;s:9:"whimsical";i:213;s:5:"jolly";i:214;s:9:"fantastic";i:215;s:13:"accommodating";i:216;s:4:"rich";i:217;s:4:"bold";i:218;s:3:"fun";i:219;s:4:"nice";i:220;s:12:"conciliatory";i:221;s:5:"lucid";i:222;s:10:"benevolent";i:223;s:8:"kissable";i:224;s:10:"harmonious";i:225;s:12:"approachable";i:226;s:5:"right";i:227;s:7:"learned";i:228;s:11:"meritorious";i:229;s:7:"genteel";i:230;s:8:"creative";i:231;s:4:"just";i:232;s:7:"healthy";i:233;s:10:"restrained";i:234;s:5:"agile";i:235;s:4:"cozy";i:236;s:4:"deep";i:237;s:9:"satisfied";i:238;s:10:"responsive";i:239;s:10:"gregarious";i:240;s:8:"diligent";i:241;s:8:"athletic";i:242;s:9:"enchanted";i:243;s:7:"upright";i:244;s:8:"innocent";i:245;s:5:"hardy";i:246;s:7:"perfect";i:247;s:5:"brave";i:248;s:11:"industrious";i:249;s:9:"practical";i:250;s:8:"gorgeous";i:251;s:8:"truthful";i:252;s:8:"grounded";i:253;s:7:"liberal";i:254;s:6:"shrewd";i:255;s:8:"mannered";i:256;s:7:"looking";i:257;s:9:"receptive";i:258;s:8:"charming";i:259;s:5:"alive";i:260;s:6:"stable";i:261;s:5:"loyal";i:262;s:6:"casual";i:263;s:7:"relaxed";i:264;s:11:"comfortable";i:265;s:8:"sensible";i:266;s:8:"eloquent";i:267;s:5:"merry";i:268;s:4:"keen";i:269;s:7:"natural";i:270;s:8:"constant";i:271;s:9:"impartial";i:272;s:9:"brilliant";i:273;s:11:"fascinating";i:274;s:11:"spontaneous";i:275;s:7:"soulful";i:276;s:7:"cordial";i:277;s:9:"sparkling";i:278;s:7:"gleeful";i:279;s:10:"hospitable";i:280;s:8:"exultant";i:281;s:8:"faithful";i:282;s:6:"adroit";i:283;s:7:"earnest";i:284;s:6:"serene";i:285;s:13:"knowledgeable";i:286;s:5:"lucky";i:287;s:6:"gentle";i:288;s:10:"believable";i:289;s:8:"merciful";i:290;s:5:"civil";i:291;s:8:"engaging";i:292;s:8:"humorous";i:293;s:9:"efficient";i:294;s:11:"influential";i:295;s:8:"discrete";i:296;s:10:"compatible";i:297;s:11:"sympathetic";i:298;s:7:"sublime";i:299;s:7:"sensual";i:300;s:11:"commendable";i:301;s:10:"accessible";i:302;s:10:"felicitous";i:303;s:7:"comedic";i:304;s:11:"progressive";i:305;s:9:"competent";i:306;s:7:"assured";i:307;s:4:"sexy";i:308;s:11:"resplendent";i:309;s:9:"beautiful";i:310;s:10:"convincing";i:311;s:5:"witty";i:312;s:9:"pragmatic";i:313;s:7:"helpful";i:314;s:6:"decent";i:315;s:8:"thorough";i:316;s:8:"inspired";i:317;s:12:"entertaining";i:318;s:6:"lovely";i:319;s:8:"ecstatic";i:320;s:9:"cognizant";i:321;s:5:"exact";i:322;s:8:"luminous";i:323;s:9:"righteous";i:324;s:12:"enterprising";i:325;s:13:"authoritative";i:326;s:11:"enlightened";i:327;s:8:"magnetic";i:328;s:7:"lenient";i:329;s:5:"ready";i:330;s:5:"funny";i:331;s:10:"forbearing";i:332;s:10:"remarkable";i:333;s:10:"delectable";i:334;s:4:"cute";i:335;s:8:"laudable";i:336;s:6:"joyful";i:337;s:8:"colorful";i:338;s:6:"worthy";i:339;s:9:"adaptable";i:340;s:8:"profound";i:341;s:10:"courageous";i:342;s:5:"solid";i:343;s:9:"ingenious";i:344;s:6:"modest";i:345;s:7:"reposed";i:346;s:4:"glad";i:347;s:5:"tough";i:348;s:4:"tidy";i:349;s:6:"unique";i:350;s:9:"inventive";i:351;s:8:"cheerful";i:352;s:6:"heroic";i:353;s:10:"successful";i:354;s:8:"reverent";i:355;s:11:"imaginative";i:356;s:10:"delightful";i:357;s:13:"extraordinary";i:358;s:7:"focused";i:359;s:7:"content";i:360;s:9:"authentic";i:361;s:5:"swell";i:362;s:12:"professional";i:363;s:10:"determined";i:364;s:8:"grateful";i:365;s:5:"happy";i:366;s:5:"adore";i:367;s:6:"admire";i:368;s:5:"lovee";i:369;s:6:"thanks";i:370;s:4:"good";i:371;s:12:"notveryblame";i:372;s:8:"notblame";i:373;s:17:"notverysuspicious";i:374;s:13:"notsuspicious";i:375;s:17:"notverysuppressed";i:376;s:13:"notsuppressed";i:377;s:18:"notverysuperficial";i:378;s:14:"notsuperficial";i:379;s:15:"notverysuicidal";i:380;s:11:"notsuicidal";i:381;s:17:"notverysuffocated";i:382;s:13:"notsuffocated";i:383;s:16:"notverysuffering";i:384;s:12:"notsuffering";i:385;s:17:"notverysubmissive";i:386;s:13:"notsubmissive";i:387;s:13:"notverystupid";i:388;s:9:"notstupid";i:389;s:12:"notverystuck";i:390;s:8:"notstuck";i:391;s:16:"notverystretched";i:392;s:12:"notstretched";i:393;s:15:"notverystressed";i:394;s:11:"notstressed";i:395;s:14:"notverystrange";i:396;s:10:"notstrange";i:397;s:18:"notverystereotyped";i:398;s:14:"notstereotyped";i:399;s:15:"notveryspiteful";i:400;s:11:"notspiteful";i:401;s:16:"notverysmothered";i:402;s:12:"notsmothered";i:403;s:12:"notverysmall";i:404;s:8:"notsmall";i:405;s:11:"notveryslow";i:406;s:7:"notslow";i:407;s:10:"notveryshy";i:408;s:6:"notshy";i:409;s:16:"notverysensitive";i:410;s:12:"notsensitive";i:411;s:14:"notveryselfish";i:412;s:10:"notselfish";i:413;s:14:"notveryscrewed";i:414;s:10:"notscrewed";i:415;s:14:"notveryscarred";i:416;s:10:"notscarred";i:417;s:13:"notveryscared";i:418;s:9:"notscared";i:419;s:16:"notverysarcastic";i:420;s:12:"notsarcastic";i:421;s:15:"notverysadistic";i:422;s:11:"notsadistic";i:423;s:10:"notverysad";i:424;s:6:"notsad";i:425;s:13:"notveryrotten";i:426;s:9:"notrotten";i:427;s:13:"notveryrobbed";i:428;s:9:"notrobbed";i:429;s:17:"notveryridiculous";i:430;s:13:"notridiculous";i:431;s:16:"notveryridiculed";i:432;s:12:"notridiculed";i:433;s:17:"notveryrevengeful";i:434;s:13:"notrevengeful";i:435;s:15:"notveryretarded";i:436;s:11:"notretarded";i:437;s:16:"notveryresentful";i:438;s:12:"notresentful";i:439;s:15:"notveryresented";i:440;s:11:"notresented";i:441;s:15:"notveryrejected";i:442;s:11:"notrejected";i:443;s:13:"notveryregret";i:444;s:9:"notregret";i:445;s:14:"notveryrattled";i:446;s:10:"notrattled";i:447;s:12:"notveryraped";i:448;s:8:"notraped";i:449;s:11:"notveryrage";i:450;s:7:"notrage";i:451;s:12:"notveryquiet";i:452;s:8:"notquiet";i:453;s:17:"notveryquestioned";i:454;s:13:"notquestioned";i:455;s:12:"notveryqueer";i:456;s:8:"notqueer";i:457;s:18:"notveryquarrelsome";i:458;s:14:"notquarrelsome";i:459;s:14:"notverypuzzled";i:460;s:10:"notpuzzled";i:461;s:13:"notverypushed";i:462;s:9:"notpushed";i:463;s:15:"notverypunished";i:464;s:11:"notpunished";i:465;s:16:"notverypsychotic";i:466;s:12:"notpsychotic";i:467;s:19:"notverypsychopathic";i:468;s:15:"notpsychopathic";i:469;s:15:"notveryprovoked";i:470;s:11:"notprovoked";i:471;s:17:"notveryprosecuted";i:472;s:13:"notprosecuted";i:473;s:16:"notverypressured";i:474;s:12:"notpressured";i:475;s:18:"notverypredjudiced";i:476;s:14:"notpredjudiced";i:477;s:18:"notverypreoccupied";i:478;s:14:"notpreoccupied";i:479;s:16:"notverypowerless";i:480;s:12:"notpowerless";i:481;s:11:"notverypoor";i:482;s:7:"notpoor";i:483;s:13:"notverypooped";i:484;s:9:"notpooped";i:485;s:12:"notveryplain";i:486;s:8:"notplain";i:487;s:13:"notverypissed";i:488;s:9:"notpissed";i:489;s:12:"notveryphony";i:490;s:8:"notphony";i:491;s:16:"notverypetrified";i:492;s:12:"notpetrified";i:493;s:18:"notverypessimistic";i:494;s:14:"notpessimistic";i:495;s:15:"notverypathetic";i:496;s:11:"notpathetic";i:497;s:14:"notverypassive";i:498;s:10:"notpassive";i:499;s:15:"notveryparanoid";i:500;s:11:"notparanoid";i:501;s:12:"notverypanic";i:502;s:8:"notpanic";i:503;s:11:"notverypain";i:504;s:7:"notpain";i:505;s:18:"notveryoverwhelmed";i:506;s:14:"notoverwhelmed";i:507;s:16:"notveryoppressed";i:508;s:12:"notoppressed";i:509;s:14:"notveryopposed";i:510;s:10:"notopposed";i:511;s:15:"notveryoffended";i:512;s:11:"notoffended";i:513;s:10:"notveryodd";i:514;s:6:"notodd";i:515;s:17:"notveryobstructed";i:516;s:13:"notobstructed";i:517;s:16:"notveryobsessive";i:518;s:12:"notobsessive";i:519;s:15:"notveryobsessed";i:520;s:11:"notobsessed";i:521;s:16:"notveryobligated";i:522;s:12:"notobligated";i:523;s:18:"notveryobjectified";i:524;s:14:"notobjectified";i:525;s:12:"notverynutty";i:526;s:8:"notnutty";i:527;s:11:"notverynuts";i:528;s:7:"notnuts";i:529;s:11:"notverynumb";i:530;s:7:"notnumb";i:531;s:20:"notverynonconforming";i:532;s:16:"notnonconforming";i:533;s:15:"notveryneurotic";i:534;s:11:"notneurotic";i:535;s:14:"notverynervous";i:536;s:10:"notnervous";i:537;s:15:"notverynegative";i:538;s:11:"notnegative";i:539;s:12:"notveryneedy";i:540;s:8:"notneedy";i:541;s:13:"notverynagged";i:542;s:9:"notnagged";i:543;s:12:"notverymoody";i:544;s:8:"notmoody";i:545;s:15:"notverymolested";i:546;s:11:"notmolested";i:547;s:13:"notverymocked";i:548;s:9:"notmocked";i:549;s:20:"notverymisunderstood";i:550;s:16:"notmisunderstood";i:551;s:17:"notverymistrusted";i:552;s:13:"notmistrusted";i:553;s:17:"notverymistreated";i:554;s:13:"notmistreated";i:555;s:15:"notverymistaken";i:556;s:11:"notmistaken";i:557;s:13:"notverymisled";i:558;s:9:"notmisled";i:559;s:16:"notverymiserable";i:560;s:12:"notmiserable";i:561;s:13:"notverymiffed";i:562;s:9:"notmiffed";i:563;s:12:"notverymessy";i:564;s:8:"notmessy";i:565;s:18:"notverymasochistic";i:566;s:14:"notmasochistic";i:567;s:18:"notverymanipulated";i:568;s:14:"notmanipulated";i:569;s:10:"notverymad";i:570;s:6:"notmad";i:571;s:10:"notverylow";i:572;s:6:"notlow";i:573;s:15:"notveryloveless";i:574;s:11:"notloveless";i:575;s:12:"notverylousy";i:576;s:8:"notlousy";i:577;s:11:"notverylost";i:578;s:7:"notlost";i:579;s:14:"notverylonging";i:580;s:10:"notlonging";i:581;s:15:"notverylonesome";i:582;s:11:"notlonesome";i:583;s:13:"notverylonely";i:584;s:9:"notlonely";i:585;s:13:"notverylittle";i:586;s:9:"notlittle";i:587;s:14:"notverylimited";i:588;s:10:"notlimited";i:589;s:11:"notverylazy";i:590;s:7:"notlazy";i:591;s:16:"notverylaughable";i:592;s:12:"notlaughable";i:593;s:14:"notverylabeled";i:594;s:10:"notlabeled";i:595;s:13:"notveryjudged";i:596;s:9:"notjudged";i:597;s:14:"notveryjoyless";i:598;s:10:"notjoyless";i:599;s:14:"notveryjealous";i:600;s:10:"notjealous";i:601;s:12:"notveryjaded";i:602;s:8:"notjaded";i:603;s:15:"notveryisolated";i:604;s:11:"notisolated";i:605;s:16:"notveryirritated";i:606;s:12:"notirritated";i:607;s:16:"notveryirritable";i:608;s:12:"notirritable";i:609;s:17:"notveryirrational";i:610;s:13:"notirrational";i:611;s:16:"notveryinvisible";i:612;s:12:"notinvisible";i:613;s:18:"notveryinvalidated";i:614;s:14:"notinvalidated";i:615;s:18:"notveryintoxicated";i:616;s:14:"notintoxicated";i:617;s:18:"notveryintimidated";i:618;s:14:"notintimidated";i:619;s:18:"notveryinterrupted";i:620;s:14:"notinterrupted";i:621;s:19:"notveryinterrogated";i:622;s:15:"notinterrogated";i:623;s:14:"notveryintense";i:624;s:10:"notintense";i:625;s:15:"notveryinsulted";i:626;s:11:"notinsulted";i:627;s:19:"notveryinsufficient";i:628;s:15:"notinsufficient";i:629;s:16:"notveryinsincere";i:630;s:12:"notinsincere";i:631;s:20:"notveryinsignificant";i:632;s:16:"notinsignificant";i:633;s:15:"notveryinsecure";i:634;s:11:"notinsecure";i:635;s:13:"notveryinsane";i:636;s:9:"notinsane";i:637;s:17:"notveryinjusticed";i:638;s:13:"notinjusticed";i:639;s:14:"notveryinjured";i:640;s:10:"notinjured";i:641;s:15:"notveryinhumane";i:642;s:11:"notinhumane";i:643;s:16:"notveryinhibited";i:644;s:12:"notinhibited";i:645;s:17:"notveryinfuriated";i:646;s:13:"notinfuriated";i:647;s:15:"notveryinferior";i:648;s:11:"notinferior";i:649;s:18:"notveryinefficient";i:650;s:14:"notinefficient";i:651;s:18:"notveryineffective";i:652;s:14:"notineffective";i:653;s:17:"notveryinebriated";i:654;s:13:"notinebriated";i:655;s:20:"notveryindoctrinated";i:656;s:16:"notindoctrinated";i:657;s:18:"notveryindifferent";i:658;s:14:"notindifferent";i:659;s:17:"notveryindecisive";i:660;s:13:"notindecisive";i:661;s:16:"notveryincorrect";i:662;s:12:"notincorrect";i:663;s:17:"notveryincomplete";i:664;s:13:"notincomplete";i:665;s:19:"notveryincompatible";i:666;s:15:"notincompatible";i:667;s:18:"notveryincompetent";i:668;s:14:"notincompetent";i:669;s:22:"notveryincommunicative";i:670;s:18:"notincommunicative";i:671;s:16:"notveryincapable";i:672;s:12:"notincapable";i:673;s:17:"notveryinadequate";i:674;s:13:"notinadequate";i:675;s:15:"notveryinactive";i:676;s:11:"notinactive";i:677;s:16:"notveryimpulsive";i:678;s:12:"notimpulsive";i:679;s:17:"notveryimprisoned";i:680;s:13:"notimprisoned";i:681;s:15:"notveryimpotent";i:682;s:11:"notimpotent";i:683;s:17:"notveryimbalanced";i:684;s:13:"notimbalanced";i:685;s:10:"notveryill";i:686;s:6:"notill";i:687;s:14:"notveryignored";i:688;s:10:"notignored";i:689;s:15:"notveryignorant";i:690;s:11:"notignorant";i:691;s:14:"notveryidiotic";i:692;s:10:"notidiotic";i:693;s:13:"notveryguilty";i:694;s:9:"notguilty";i:695;s:13:"notverygrumpy";i:696;s:9:"notgrumpy";i:697;s:15:"notverygrounded";i:698;s:11:"notgrounded";i:699;s:14:"notverygrouchy";i:700;s:10:"notgrouchy";i:701;s:16:"notverygrotesque";i:702;s:12:"notgrotesque";i:703;s:12:"notverygross";i:704;s:8:"notgross";i:705;s:11:"notverygrim";i:706;s:7:"notgrim";i:707;s:12:"notverygrief";i:708;s:8:"notgrief";i:709;s:11:"notverygrey";i:710;s:7:"notgrey";i:711;s:13:"notverygothic";i:712;s:9:"notgothic";i:713;s:11:"notveryglum";i:714;s:7:"notglum";i:715;s:13:"notverygloomy";i:716;s:9:"notgloomy";i:717;s:14:"notveryfurious";i:718;s:10:"notfurious";i:719;s:17:"notveryfrustrated";i:720;s:13:"notfrustrated";i:721;s:13:"notveryfrigid";i:722;s:9:"notfrigid";i:723;s:17:"notveryfrightened";i:724;s:13:"notfrightened";i:725;s:14:"notveryfragile";i:726;s:10:"notfragile";i:727;s:16:"notveryforgotten";i:728;s:12:"notforgotten";i:729;s:18:"notveryforgettable";i:730;s:14:"notforgettable";i:731;s:16:"notveryforgetful";i:732;s:12:"notforgetful";i:733;s:13:"notveryforced";i:734;s:9:"notforced";i:735;s:13:"notveryflawed";i:736;s:9:"notflawed";i:737;s:14:"notveryfearful";i:738;s:10:"notfearful";i:739;s:11:"notveryfear";i:740;s:7:"notfear";i:741;s:12:"notveryfalse";i:742;s:8:"notfalse";i:743;s:11:"notveryfake";i:744;s:7:"notfake";i:745;s:14:"notveryfailful";i:746;s:10:"notfailful";i:747;s:16:"notveryexhausted";i:748;s:12:"notexhausted";i:749;s:15:"notveryexcluded";i:750;s:11:"notexcluded";i:751;s:16:"notveryexcessive";i:752;s:12:"notexcessive";i:753;s:14:"notveryevicted";i:754;s:10:"notevicted";i:755;s:14:"notveryevasive";i:756;s:10:"notevasive";i:757;s:13:"notveryevaded";i:758;s:9:"notevaded";i:759;s:16:"notveryentangled";i:760;s:12:"notentangled";i:761;s:15:"notveryenslaved";i:762;s:11:"notenslaved";i:763;s:14:"notveryenraged";i:764;s:10:"notenraged";i:765;s:17:"notveryendangered";i:766;s:13:"notendangered";i:767;s:17:"notveryencumbered";i:768;s:13:"notencumbered";i:769;s:12:"notveryempty";i:770;s:8:"notempty";i:771;s:18:"notveryemotionless";i:772;s:14:"notemotionless";i:773;s:16:"notveryemotional";i:774;s:12:"notemotional";i:775;s:18:"notveryembarrassed";i:776;s:14:"notembarrassed";i:777;s:18:"notveryemasculated";i:778;s:14:"notemasculated";i:779;s:18:"notveryemancipated";i:780;s:14:"notemancipated";i:781;s:14:"notveryelusive";i:782;s:10:"notelusive";i:783;s:18:"notveryegotistical";i:784;s:14:"notegotistical";i:785;s:16:"notveryegotistic";i:786;s:12:"notegotistic";i:787;s:17:"notveryegocentric";i:788;s:13:"notegocentric";i:789;s:11:"notveryedgy";i:790;s:7:"notedgy";i:791;s:12:"notveryduped";i:792;s:8:"notduped";i:793;s:13:"notverydumped";i:794;s:9:"notdumped";i:795;s:11:"notverydumb";i:796;s:7:"notdumb";i:797;s:10:"notverydry";i:798;s:6:"notdry";i:799;s:12:"notverydrunk";i:800;s:8:"notdrunk";i:801;s:14:"notverydropped";i:802;s:10:"notdropped";i:803;s:13:"notverydreary";i:804;s:9:"notdreary";i:805;s:15:"notverydreadful";i:806;s:11:"notdreadful";i:807;s:12:"notverydread";i:808;s:8:"notdread";i:809;s:15:"notverydramatic";i:810;s:11:"notdramatic";i:811;s:14:"notverydrained";i:812;s:10:"notdrained";i:813;s:18:"notverydowntrodden";i:814;s:14:"notdowntrodden";i:815;s:18:"notverydownhearted";i:816;s:14:"notdownhearted";i:817;s:11:"notverydown";i:818;s:7:"notdown";i:819;s:15:"notverydoubtful";i:820;s:11:"notdoubtful";i:821;s:14:"notverydoubted";i:822;s:10:"notdoubted";i:823;s:13:"notverydoomed";i:824;s:9:"notdoomed";i:825;s:16:"notverydominated";i:826;s:12:"notdominated";i:827;s:12:"notverydizzy";i:828;s:8:"notdizzy";i:829;s:16:"notverydisturbed";i:830;s:12:"notdisturbed";i:831;s:17:"notverydistressed";i:832;s:13:"notdistressed";i:833;s:17:"notverydistraught";i:834;s:13:"notdistraught";i:835;s:17:"notverydistracted";i:836;s:13:"notdistracted";i:837;s:14:"notverydistant";i:838;s:10:"notdistant";i:839;s:19:"notverydissatisfied";i:840;s:15:"notdissatisfied";i:841;s:19:"notverydisrespected";i:842;s:15:"notdisrespected";i:843;s:18:"notverydisregarded";i:844;s:14:"notdisregarded";i:845;s:17:"notverydisposable";i:846;s:13:"notdisposable";i:847;s:17:"notverydispleased";i:848;s:13:"notdispleased";i:849;s:15:"notverydisowned";i:850;s:11:"notdisowned";i:851;s:18:"notverydisoriented";i:852;s:14:"notdisoriented";i:853;s:19:"notverydisorganized";i:854;s:15:"notdisorganized";i:855;s:15:"notverydismayed";i:856;s:11:"notdismayed";i:857;s:13:"notverydismal";i:858;s:9:"notdismal";i:859;s:15:"notverydisliked";i:860;s:11:"notdisliked";i:861;s:14:"notverydislike";i:862;s:10:"notdislike";i:863;s:20:"notverydisillusioned";i:864;s:16:"notdisillusioned";i:865;s:19:"notverydishonorable";i:866;s:15:"notdishonorable";i:867;s:16:"notverydishonest";i:868;s:12:"notdishonest";i:869;s:19:"notverydisheartened";i:870;s:15:"notdisheartened";i:871;s:16:"notverydisgusted";i:872;s:12:"notdisgusted";i:873;s:14:"notverydisgust";i:874;s:10:"notdisgust";i:875;s:18:"notverydisgruntled";i:876;s:14:"notdisgruntled";i:877;s:16:"notverydisgraced";i:878;s:12:"notdisgraced";i:879;s:19:"notverydisenchanted";i:880;s:15:"notdisenchanted";i:881;s:19:"notverydisempowered";i:882;s:15:"notdisempowered";i:883;s:17:"notverydisdainful";i:884;s:13:"notdisdainful";i:885;s:14:"notverydisdain";i:886;s:10:"notdisdain";i:887;s:20:"notverydiscriminated";i:888;s:16:"notdiscriminated";i:889;s:18:"notverydiscouraged";i:890;s:14:"notdiscouraged";i:891;s:17:"notverydiscontent";i:892;s:13:"notdiscontent";i:893;s:19:"notverydisconnected";i:894;s:15:"notdisconnected";i:895;s:16:"notverydiscarded";i:896;s:12:"notdiscarded";i:897;s:18:"notverydiscardable";i:898;s:14:"notdiscardable";i:899;s:18:"notverydisbelieved";i:900;s:14:"notdisbelieved";i:901;s:20:"notverydisappointing";i:902;s:16:"notdisappointing";i:903;s:19:"notverydisappointed";i:904;s:15:"notdisappointed";i:905;s:19:"notverydisagreeable";i:906;s:15:"notdisagreeable";i:907;s:15:"notverydisabled";i:908;s:11:"notdisabled";i:909;s:12:"notverydirty";i:910;s:8:"notdirty";i:911;s:20:"notverydirectionless";i:912;s:16:"notdirectionless";i:913;s:16:"notverydifficult";i:914;s:12:"notdifficult";i:915;s:16:"notverydifferent";i:916;s:12:"notdifferent";i:917;s:16:"notverydiagnosed";i:918;s:12:"notdiagnosed";i:919;s:13:"notverydevoid";i:920;s:9:"notdevoid";i:921;s:14:"notverydeviant";i:922;s:10:"notdeviant";i:923;s:17:"notverydevastated";i:924;s:13:"notdevastated";i:925;s:15:"notverydevalued";i:926;s:11:"notdevalued";i:927;s:15:"notverydetested";i:928;s:11:"notdetested";i:929;s:17:"notverydetestable";i:930;s:13:"notdetestable";i:931;s:13:"notverydetest";i:932;s:9:"notdetest";i:933;s:15:"notverydetached";i:934;s:11:"notdetached";i:935;s:18:"notverydestructive";i:936;s:14:"notdestructive";i:937;s:16:"notverydestroyed";i:938;s:12:"notdestroyed";i:939;s:15:"notverydespised";i:940;s:11:"notdespised";i:941;s:17:"notverydespicable";i:942;s:13:"notdespicable";i:943;s:16:"notverydesperate";i:944;s:12:"notdesperate";i:945;s:17:"notverydespairing";i:946;s:13:"notdespairing";i:947;s:14:"notverydespair";i:948;s:10:"notdespair";i:949;s:15:"notverydesolate";i:950;s:11:"notdesolate";i:951;s:15:"notverydeserted";i:952;s:11:"notdeserted";i:953;s:15:"notverydeprived";i:954;s:11:"notdeprived";i:955;s:16:"notverydepressed";i:956;s:12:"notdepressed";i:957;s:15:"notverydepraved";i:958;s:11:"notdepraved";i:959;s:15:"notverydepleted";i:960;s:11:"notdepleted";i:961;s:16:"notverydependent";i:962;s:12:"notdependent";i:963;s:18:"notverydemotivated";i:964;s:14:"notdemotivated";i:965;s:18:"notverydemoralized";i:966;s:14:"notdemoralized";i:967;s:15:"notverydemented";i:968;s:11:"notdemented";i:969;s:15:"notverydemeaned";i:970;s:11:"notdemeaned";i:971;s:16:"notverydemanding";i:972;s:12:"notdemanding";i:973;s:14:"notverydeluded";i:974;s:10:"notdeluded";i:975;s:15:"notverydelicate";i:976;s:11:"notdelicate";i:977;s:15:"notverydejected";i:978;s:11:"notdejected";i:979;s:18:"notverydehumanized";i:980;s:14:"notdehumanized";i:981;s:15:"notverydegraded";i:982;s:11:"notdegraded";i:983;s:15:"notverydeflated";i:984;s:11:"notdeflated";i:985;s:16:"notverydeficient";i:986;s:12:"notdeficient";i:987;s:14:"notverydefiant";i:988;s:10:"notdefiant";i:989;s:16:"notverydefensive";i:990;s:12:"notdefensive";i:991;s:18:"notverydefenseless";i:992;s:14:"notdefenseless";i:993;s:16:"notverydefective";i:994;s:12:"notdefective";i:995;s:15:"notverydefeated";i:996;s:11:"notdefeated";i:997;s:14:"notverydefamed";i:998;s:10:"notdefamed";i:999;s:11:"notverydeep";i:1000;s:7:"notdeep";i:1001;s:15:"notverydeceived";i:1002;s:11:"notdeceived";i:1003;s:11:"notverydead";i:1004;s:7:"notdead";i:1005;s:12:"notverydazed";i:1006;s:8:"notdazed";i:1007;s:11:"notverydark";i:1008;s:7:"notdark";i:1009;s:16:"notverydangerous";i:1010;s:12:"notdangerous";i:1011;s:13:"notverydamned";i:1012;s:9:"notdamned";i:1013;s:14:"notverydamaged";i:1014;s:10:"notdamaged";i:1015;s:14:"notverycynical";i:1016;s:10:"notcynical";i:1017;s:14:"notverycrushed";i:1018;s:10:"notcrushed";i:1019;s:13:"notverycrummy";i:1020;s:9:"notcrummy";i:1021;s:13:"notverycruddy";i:1022;s:9:"notcruddy";i:1023;s:14:"notverycrowded";i:1024;s:10:"notcrowded";i:1025;s:12:"notverycross";i:1026;s:8:"notcross";i:1027;s:17:"notverycriticized";i:1028;s:13:"notcriticized";i:1029;s:15:"notverycritical";i:1030;s:11:"notcritical";i:1031;s:13:"notverycreepy";i:1032;s:9:"notcreepy";i:1033;s:12:"notverycrazy";i:1034;s:8:"notcrazy";i:1035;s:13:"notverycrappy";i:1036;s:9:"notcrappy";i:1037;s:11:"notverycrap";i:1038;s:7:"notcrap";i:1039;s:13:"notverycranky";i:1040;s:9:"notcranky";i:1041;s:14:"notverycramped";i:1042;s:10:"notcramped";i:1043;s:13:"notverycrabby";i:1044;s:9:"notcrabby";i:1045;s:15:"notverycowardly";i:1046;s:11:"notcowardly";i:1047;s:16:"notverycorralled";i:1048;s:12:"notcorralled";i:1049;s:15:"notverycornered";i:1050;s:11:"notcornered";i:1051;s:16:"notveryconvicted";i:1052;s:12:"notconvicted";i:1053;s:17:"notverycontrolled";i:1054;s:13:"notcontrolled";i:1055;s:18:"notverycontentious";i:1056;s:14:"notcontentious";i:1057;s:15:"notverycontempt";i:1058;s:11:"notcontempt";i:1059;s:20:"notverycontemplative";i:1060;s:16:"notcontemplative";i:1061;s:15:"notveryconsumed";i:1062;s:11:"notconsumed";i:1063;s:13:"notveryconned";i:1064;s:9:"notconned";i:1065;s:15:"notveryconfused";i:1066;s:11:"notconfused";i:1067;s:17:"notveryconfronted";i:1068;s:13:"notconfronted";i:1069;s:17:"notveryconflicted";i:1070;s:13:"notconflicted";i:1071;s:15:"notveryconfined";i:1072;s:11:"notconfined";i:1073;s:16:"notveryconcerned";i:1074;s:12:"notconcerned";i:1075;s:16:"notveryconceited";i:1076;s:12:"notconceited";i:1077;s:17:"notverycompulsive";i:1078;s:13:"notcompulsive";i:1079;s:18:"notverycompetitive";i:1080;s:14:"notcompetitive";i:1081;s:15:"notverycompared";i:1082;s:11:"notcompared";i:1083;s:16:"notverycommanded";i:1084;s:12:"notcommanded";i:1085;s:16:"notverycombative";i:1086;s:12:"notcombative";i:1087;s:11:"notverycold";i:1088;s:7:"notcold";i:1089;s:14:"notverycoerced";i:1090;s:10:"notcoerced";i:1091;s:18:"notverycodependent";i:1092;s:14:"notcodependent";i:1093;s:13:"notverycoaxed";i:1094;s:9:"notcoaxed";i:1095;s:13:"notveryclumsy";i:1096;s:9:"notclumsy";i:1097;s:15:"notveryclueless";i:1098;s:11:"notclueless";i:1099;s:13:"notveryclosed";i:1100;s:9:"notclosed";i:1101;s:13:"notveryclingy";i:1102;s:9:"notclingy";i:1103;s:21:"notveryclaustrophobic";i:1104;s:17:"notclaustrophobic";i:1105;s:14:"notverychicken";i:1106;s:10:"notchicken";i:1107;s:14:"notverycheated";i:1108;s:10:"notcheated";i:1109;s:13:"notverychased";i:1110;s:9:"notchased";i:1111;s:14:"notverychaotic";i:1112;s:10:"notchaotic";i:1113;s:15:"notverycareless";i:1114;s:11:"notcareless";i:1115;s:9:"notveryin";i:1116;s:5:"notin";i:1117;s:12:"notverycaged";i:1118;s:8:"notcaged";i:1119;s:13:"notveryburned";i:1120;s:9:"notburned";i:1121;s:17:"notveryburdensome";i:1122;s:13:"notburdensome";i:1123;s:15:"notveryburdened";i:1124;s:11:"notburdened";i:1125;s:13:"notverybummed";i:1126;s:9:"notbummed";i:1127;s:14:"notverybullied";i:1128;s:10:"notbullied";i:1129;s:13:"notverybugged";i:1130;s:9:"notbugged";i:1131;s:14:"notverybruised";i:1132;s:10:"notbruised";i:1133;s:13:"notverybroken";i:1134;s:9:"notbroken";i:1135;s:14:"notverybounded";i:1136;s:10:"notbounded";i:1137;s:17:"notverybothersome";i:1138;s:13:"notbothersome";i:1139;s:15:"notverybothered";i:1140;s:11:"notbothered";i:1141;s:13:"notveryboring";i:1142;s:9:"notboring";i:1143;s:12:"notverybored";i:1144;s:8:"notbored";i:1145;s:11:"notveryblur";i:1146;s:7:"notblur";i:1147;s:12:"notverybleak";i:1148;s:8:"notbleak";i:1149;s:13:"notveryblamed";i:1150;s:9:"notblamed";i:1151;s:18:"notveryblackmailed";i:1152;s:14:"notblackmailed";i:1153;s:18:"notveryblacklisted";i:1154;s:14:"notblacklisted";i:1155;s:14:"notverybizzare";i:1156;s:10:"notbizzare";i:1157;s:13:"notverybitter";i:1158;s:9:"notbitter";i:1159;s:15:"notverybetrayed";i:1160;s:11:"notbetrayed";i:1161;s:14:"notveryberated";i:1162;s:10:"notberated";i:1163;s:16:"notverybelittled";i:1164;s:12:"notbelittled";i:1165;s:13:"notverybeaten";i:1166;s:9:"notbeaten";i:1167;s:11:"notverybeat";i:1168;s:7:"notbeat";i:1169;s:13:"notverybarren";i:1170;s:9:"notbarren";i:1171;s:13:"notverybanned";i:1172;s:9:"notbanned";i:1173;s:14:"notverybaffled";i:1174;s:10:"notbaffled";i:1175;s:15:"notverybadgered";i:1176;s:11:"notbadgered";i:1177;s:10:"notverybad";i:1178;s:6:"notbad";i:1179;s:14:"notveryawkward";i:1180;s:10:"notawkward";i:1181;s:12:"notveryawful";i:1182;s:8:"notawful";i:1183;s:14:"notveryavoided";i:1184;s:10:"notavoided";i:1185;s:15:"notveryattacked";i:1186;s:11:"notattacked";i:1187;s:16:"notveryatrocious";i:1188;s:12:"notatrocious";i:1189;s:16:"notveryassaulted";i:1190;s:12:"notassaulted";i:1191;s:14:"notveryashamed";i:1192;s:10:"notashamed";i:1193;s:17:"notveryartificial";i:1194;s:13:"notartificial";i:1195;s:20:"notveryargumentative";i:1196;s:16:"notargumentative";i:1197;s:19:"notveryapprehensive";i:1198;s:15:"notapprehensive";i:1199;s:14:"notveryanxious";i:1200;s:10:"notanxious";i:1201;s:14:"notveryannoyed";i:1202;s:10:"notannoyed";i:1203;s:14:"notveryanguish";i:1204;s:10:"notanguish";i:1205;s:12:"notveryangry";i:1206;s:8:"notangry";i:1207;s:12:"notveryalone";i:1208;s:8:"notalone";i:1209;s:17:"notveryaggressive";i:1210;s:13:"notaggressive";i:1211;s:17:"notveryaggravated";i:1212;s:13:"notaggravated";i:1213;s:13:"notveryafraid";i:1214;s:9:"notafraid";i:1215;s:15:"notveryaddicted";i:1216;s:11:"notaddicted";i:1217;s:14:"notveryaccused";i:1218;s:10:"notaccused";i:1219;s:13:"notveryabused";i:1220;s:9:"notabused";i:1221;s:16:"notveryabandoned";i:1222;s:12:"notabandoned";i:1223;s:11:"notveryhate";i:1224;s:7:"nothate";i:1225;s:14:"notveryrubbish";i:1226;s:10:"notrubbish";i:1227;s:2:":)";i:1228;s:4:"}:)}";i:1229;s:2:"|d";i:1230;s:2:"xd";i:1231;s:3:"x3?";i:1232;s:3:"^_^";i:1233;s:2:"xp";i:1234;s:6:"@}->--";i:1235;s:3:">=d";i:1236;s:3:">:d";i:1237;s:3:">:)";i:1238;s:2:"=]";i:1239;s:2:"=)";i:1240;s:2:"<3";i:1241;s:3:";^)";i:1242;s:4:":'de";i:1243;s:2:":p";i:1244;s:3:":o)";i:1245;s:3:":b)";i:1246;s:2:":]";i:1247;s:2:":x";i:1248;s:2:":d";i:1249;s:2:":9";i:1250;s:2:":3";i:1251;s:3:":-}";i:1252;s:3:":-p";i:1253;s:3:":-d";i:1254;s:3:":-*";i:1255;s:3:":-)";i:1256;s:2:"8)";i:1257;s:3:"0:)";i:1258;s:6:"--^--@";i:1259;s:5:"*\o/*";i:1260;s:3:"(o:";i:1261;s:5:"(^_^)";i:1262;s:5:"(^.^)";i:1263;s:5:"(^-^)";i:1264;s:2:"^)";i:1265;s:2:"(^";i:1266;s:2:"(:";i:1267;s:3:"(-:";i:1268;s:3:"%-)";i:1269;s:3:"<3 ";i:1270;s:8:"abidance";i:1271;s:5:"abide";i:1272;s:9:"abilities";i:1273;s:7:"ability";i:1274;s:13:"above-average";i:1275;s:6:"abound";i:1276;s:7:"absolve";i:1277;s:8:"abundant";i:1278;s:9:"abundance";i:1279;s:6:"accede";i:1280;s:6:"accept";i:1281;s:10:"acceptance";i:1282;s:10:"acceptable";i:1283;s:7:"acclaim";i:1284;s:9:"acclaimed";i:1285;s:11:"acclamation";i:1286;s:8:"accolade";i:1287;s:9:"accolades";i:1288;s:13:"accommodative";i:1289;s:10:"accomplish";i:1290;s:14:"accomplishment";i:1291;s:15:"accomplishments";i:1292;s:6:"accord";i:1293;s:10:"accordance";i:1294;s:11:"accordantly";i:1295;s:8:"accurate";i:1296;s:10:"accurately";i:1297;s:10:"achievable";i:1298;s:7:"achieve";i:1299;s:11:"achievement";i:1300;s:12:"achievements";i:1301;s:11:"acknowledge";i:1302;s:15:"acknowledgement";i:1303;s:6:"acquit";i:1304;s:6:"acumen";i:1305;s:12:"adaptability";i:1306;s:8:"adaptive";i:1307;s:5:"adept";i:1308;s:7:"adeptly";i:1309;s:8:"adequate";i:1310;s:9:"adherence";i:1311;s:8:"adherent";i:1312;s:8:"adhesion";i:1313;s:7:"admirer";i:1314;s:9:"admirably";i:1315;s:10:"admiration";i:1316;s:8:"admiring";i:1317;s:10:"admiringly";i:1318;s:9:"admission";i:1319;s:5:"admit";i:1320;s:10:"admittedly";i:1321;s:6:"adored";i:1322;s:6:"adorer";i:1323;s:7:"adoring";i:1324;s:9:"adoringly";i:1325;s:8:"adroitly";i:1326;s:7:"adulate";i:1327;s:9:"adulation";i:1328;s:9:"adulatory";i:1329;s:8:"advanced";i:1330;s:9:"advantage";i:1331;s:12:"advantageous";i:1332;s:10:"advantages";i:1333;s:9:"adventure";i:1334;s:13:"adventuresome";i:1335;s:11:"adventurism";i:1336;s:11:"adventurous";i:1337;s:6:"advice";i:1338;s:9:"advisable";i:1339;s:8:"advocate";i:1340;s:8:"advocacy";i:1341;s:10:"affability";i:1342;s:7:"affably";i:1343;s:9:"affection";i:1344;s:8:"affinity";i:1345;s:6:"affirm";i:1346;s:11:"affirmation";i:1347;s:8:"affluent";i:1348;s:9:"affluence";i:1349;s:6:"afford";i:1350;s:10:"affordable";i:1351;s:6:"afloat";i:1352;s:7:"agilely";i:1353;s:7:"agility";i:1354;s:5:"agree";i:1355;s:12:"agreeability";i:1356;s:13:"agreeableness";i:1357;s:9:"agreeably";i:1358;s:9:"agreement";i:1359;s:5:"allay";i:1360;s:9:"alleviate";i:1361;s:9:"allowable";i:1362;s:6:"allure";i:1363;s:10:"alluringly";i:1364;s:4:"ally";i:1365;s:8:"almighty";i:1366;s:8:"altruist";i:1367;s:14:"altruistically";i:1368;s:5:"amaze";i:1369;s:6:"amazed";i:1370;s:9:"amazement";i:1371;s:9:"amazingly";i:1372;s:11:"ambitiously";i:1373;s:10:"ameliorate";i:1374;s:8:"amenable";i:1375;s:7:"amenity";i:1376;s:10:"amiability";i:1377;s:8:"amiabily";i:1378;s:11:"amicability";i:1379;s:8:"amicably";i:1380;s:5:"amity";i:1381;s:7:"amnesty";i:1382;s:5:"amour";i:1383;s:5:"ample";i:1384;s:5:"amply";i:1385;s:5:"amuse";i:1386;s:9:"amusement";i:1387;s:7:"amusing";i:1388;s:9:"amusingly";i:1389;s:5:"angel";i:1390;s:7:"angelic";i:1391;s:8:"animated";i:1392;s:7:"apostle";i:1393;s:10:"apotheosis";i:1394;s:6:"appeal";i:1395;s:9:"appealing";i:1396;s:7:"appease";i:1397;s:7:"applaud";i:1398;s:11:"appreciable";i:1399;s:12:"appreciation";i:1400;s:14:"appreciatively";i:1401;s:16:"appreciativeness";i:1402;s:8:"approval";i:1403;s:7:"approve";i:1404;s:3:"apt";i:1405;s:5:"aptly";i:1406;s:8:"aptitude";i:1407;s:6:"ardent";i:1408;s:8:"ardently";i:1409;s:5:"ardor";i:1410;s:12:"aristocratic";i:1411;s:7:"arousal";i:1412;s:6:"arouse";i:1413;s:8:"arousing";i:1414;s:9:"arresting";i:1415;s:10:"articulate";i:1416;s:9:"ascendant";i:1417;s:13:"ascertainable";i:1418;s:10:"aspiration";i:1419;s:11:"aspirations";i:1420;s:6:"aspire";i:1421;s:6:"assent";i:1422;s:10:"assertions";i:1423;s:9:"assertive";i:1424;s:5:"asset";i:1425;s:9:"assiduous";i:1426;s:11:"assiduously";i:1427;s:7:"assuage";i:1428;s:9:"assurance";i:1429;s:10:"assurances";i:1430;s:6:"assure";i:1431;s:9:"assuredly";i:1432;s:8:"astonish";i:1433;s:10:"astonished";i:1434;s:11:"astonishing";i:1435;s:13:"astonishingly";i:1436;s:12:"astonishment";i:1437;s:7:"astound";i:1438;s:9:"astounded";i:1439;s:10:"astounding";i:1440;s:12:"astoundingly";i:1441;s:8:"astutely";i:1442;s:6:"asylum";i:1443;s:6:"attain";i:1444;s:10:"attainable";i:1445;s:6:"attest";i:1446;s:10:"attraction";i:1447;s:12:"attractively";i:1448;s:6:"attune";i:1449;s:10:"auspicious";i:1450;s:5:"award";i:1451;s:4:"aver";i:1452;s:4:"avid";i:1453;s:6:"avidly";i:1454;s:3:"awe";i:1455;s:4:"awed";i:1456;s:9:"awesomely";i:1457;s:11:"awesomeness";i:1458;s:9:"awestruck";i:1459;s:4:"back";i:1460;s:8:"backbone";i:1461;s:7:"bargain";i:1462;s:5:"basic";i:1463;s:4:"bask";i:1464;s:6:"beacon";i:1465;s:7:"beatify";i:1466;s:9:"beauteous";i:1467;s:11:"beautifully";i:1468;s:8:"beautify";i:1469;s:6:"beauty";i:1470;s:5:"befit";i:1471;s:9:"befitting";i:1472;s:8:"befriend";i:1473;s:7:"beloved";i:1474;s:10:"benefactor";i:1475;s:10:"beneficial";i:1476;s:12:"beneficially";i:1477;s:11:"beneficiary";i:1478;s:7:"benefit";i:1479;s:8:"benefits";i:1480;s:11:"benevolence";i:1481;s:10:"best-known";i:1482;s:15:"best-performing";i:1483;s:12:"best-selling";i:1484;s:12:"better-known";i:1485;s:20:"better-than-expected";i:1486;s:9:"blameless";i:1487;s:5:"bless";i:1488;s:8:"blessing";i:1489;s:5:"bliss";i:1490;s:10:"blissfully";i:1491;s:6:"blithe";i:1492;s:5:"bloom";i:1493;s:7:"blossom";i:1494;s:5:"boast";i:1495;s:6:"boldly";i:1496;s:8:"boldness";i:1497;s:7:"bolster";i:1498;s:5:"bonny";i:1499;s:5:"bonus";i:1500;s:4:"boom";i:1501;s:7:"booming";i:1502;s:5:"boost";i:1503;s:9:"boundless";i:1504;s:9:"bountiful";i:1505;s:6:"brains";i:1506;s:7:"bravery";i:1507;s:12:"breakthrough";i:1508;s:13:"breakthroughs";i:1509;s:14:"breathlessness";i:1510;s:12:"breathtaking";i:1511;s:14:"breathtakingly";i:1512;s:8:"brighten";i:1513;s:10:"brightness";i:1514;s:10:"brilliance";i:1515;s:11:"brilliantly";i:1516;s:5:"brisk";i:1517;s:5:"broad";i:1518;s:5:"brook";i:1519;s:9:"brotherly";i:1520;s:4:"bull";i:1521;s:7:"bullish";i:1522;s:7:"buoyant";i:1523;s:7:"calming";i:1524;s:8:"calmness";i:1525;s:6:"candor";i:1526;s:7:"capable";i:1527;s:10:"capability";i:1528;s:7:"capably";i:1529;s:10:"capitalize";i:1530;s:9:"captivate";i:1531;s:11:"captivation";i:1532;s:4:"care";i:1533;s:8:"carefree";i:1534;s:7:"careful";i:1535;s:8:"catalyst";i:1536;s:6:"catchy";i:1537;s:9:"celebrate";i:1538;s:10:"celebrated";i:1539;s:11:"celebration";i:1540;s:11:"celebratory";i:1541;s:9:"celebrity";i:1542;s:8:"champion";i:1543;s:5:"champ";i:1544;s:11:"charismatic";i:1545;s:7:"charity";i:1546;s:5:"charm";i:1547;s:10:"charmingly";i:1548;s:5:"cheer";i:1549;s:6:"cheery";i:1550;s:7:"cherish";i:1551;s:9:"cherished";i:1552;s:6:"cherub";i:1553;s:8:"chivalry";i:1554;s:10:"chivalrous";i:1555;s:4:"chum";i:1556;s:8:"civility";i:1557;s:12:"civilization";i:1558;s:8:"civilize";i:1559;s:7:"clarity";i:1560;s:7:"classic";i:1561;s:5:"clean";i:1562;s:11:"cleanliness";i:1563;s:7:"cleanse";i:1564;s:5:"clear";i:1565;s:9:"clear-cut";i:1566;s:7:"clearer";i:1567;s:6:"clever";i:1568;s:9:"closeness";i:1569;s:5:"clout";i:1570;s:12:"co-operation";i:1571;s:4:"coax";i:1572;s:6:"coddle";i:1573;s:6:"cogent";i:1574;s:8:"cohesive";i:1575;s:6:"cohere";i:1576;s:9:"coherence";i:1577;s:8:"coherent";i:1578;s:8:"cohesion";i:1579;s:8:"colossal";i:1580;s:8:"comeback";i:1581;s:7:"comfort";i:1582;s:11:"comfortably";i:1583;s:10:"comforting";i:1584;s:7:"commend";i:1585;s:11:"commendably";i:1586;s:12:"commensurate";i:1587;s:11:"commonsense";i:1588;s:14:"commonsensible";i:1589;s:14:"commonsensibly";i:1590;s:14:"commonsensical";i:1591;s:10:"commodious";i:1592;s:10:"commitment";i:1593;s:7:"compact";i:1594;s:10:"compassion";i:1595;s:10:"compelling";i:1596;s:10:"compensate";i:1597;s:10:"competence";i:1598;s:10:"competency";i:1599;s:15:"competitiveness";i:1600;s:10:"complement";i:1601;s:9:"compliant";i:1602;s:10:"compliment";i:1603;s:13:"complimentary";i:1604;s:13:"comprehensive";i:1605;s:10:"compromise";i:1606;s:11:"compromises";i:1607;s:8:"comrades";i:1608;s:11:"conceivable";i:1609;s:10:"conciliate";i:1610;s:10:"conclusive";i:1611;s:8:"concrete";i:1612;s:6:"concur";i:1613;s:7:"condone";i:1614;s:9:"conducive";i:1615;s:6:"confer";i:1616;s:10:"confidence";i:1617;s:7:"confute";i:1618;s:12:"congratulate";i:1619;s:15:"congratulations";i:1620;s:14:"congratulatory";i:1621;s:7:"conquer";i:1622;s:10:"conscience";i:1623;s:13:"conscientious";i:1624;s:9:"consensus";i:1625;s:7:"consent";i:1626;s:7:"console";i:1627;s:9:"constancy";i:1628;s:12:"constructive";i:1629;s:11:"contentment";i:1630;s:10:"continuity";i:1631;s:12:"contribution";i:1632;s:10:"convenient";i:1633;s:12:"conveniently";i:1634;s:10:"conviction";i:1635;s:8:"convince";i:1636;s:12:"convincingly";i:1637;s:9:"cooperate";i:1638;s:11:"cooperation";i:1639;s:11:"cooperative";i:1640;s:13:"cooperatively";i:1641;s:11:"cornerstone";i:1642;s:7:"correct";i:1643;s:9:"correctly";i:1644;s:14:"cost-effective";i:1645;s:11:"cost-saving";i:1646;s:7:"courage";i:1647;s:12:"courageously";i:1648;s:14:"courageousness";i:1649;s:5:"court";i:1650;s:8:"courtesy";i:1651;s:7:"courtly";i:1652;s:8:"covenant";i:1653;s:5:"crave";i:1654;s:7:"craving";i:1655;s:8:"credence";i:1656;s:5:"crisp";i:1657;s:7:"crusade";i:1658;s:8:"crusader";i:1659;s:8:"cure-all";i:1660;s:7:"curious";i:1661;s:9:"curiously";i:1662;s:5:"dance";i:1663;s:4:"dare";i:1664;s:8:"daringly";i:1665;s:7:"darling";i:1666;s:7:"dashing";i:1667;s:9:"dauntless";i:1668;s:4:"dawn";i:1669;s:8:"daydream";i:1670;s:10:"daydreamer";i:1671;s:6:"dazzle";i:1672;s:7:"dazzled";i:1673;s:8:"dazzling";i:1674;s:4:"deal";i:1675;s:4:"dear";i:1676;s:7:"decency";i:1677;s:12:"decisiveness";i:1678;s:6:"defend";i:1679;s:8:"defender";i:1680;s:9:"deference";i:1681;s:7:"defense";i:1682;s:8:"definite";i:1683;s:10:"definitive";i:1684;s:12:"definitively";i:1685;s:12:"deflationary";i:1686;s:4:"deft";i:1687;s:8:"delicacy";i:1688;s:9:"delicious";i:1689;s:7:"delight";i:1690;s:9:"delighted";i:1691;s:12:"delightfully";i:1692;s:14:"delightfulness";i:1693;s:9:"demystify";i:1694;s:7:"deserve";i:1695;s:8:"deserved";i:1696;s:10:"deservedly";i:1697;s:6:"desire";i:1698;s:8:"desirous";i:1699;s:7:"destine";i:1700;s:8:"destined";i:1701;s:9:"destinies";i:1702;s:7:"destiny";i:1703;s:13:"determination";i:1704;s:6:"devote";i:1705;s:7:"devotee";i:1706;s:8:"devotion";i:1707;s:6:"devout";i:1708;s:9:"dexterity";i:1709;s:9:"dexterous";i:1710;s:11:"dexterously";i:1711;s:8:"dextrous";i:1712;s:3:"dig";i:1713;s:7:"dignify";i:1714;s:7:"dignity";i:1715;s:9:"diligence";i:1716;s:10:"diligently";i:1717;s:8:"discreet";i:1718;s:10:"discretion";i:1719;s:16:"discriminatingly";i:1720;s:8:"distinct";i:1721;s:11:"distinction";i:1722;s:11:"distinguish";i:1723;s:13:"distinguished";i:1724;s:11:"diversified";i:1725;s:6:"divine";i:1726;s:8:"divinely";i:1727;s:5:"dodge";i:1728;s:4:"dote";i:1729;s:8:"dotingly";i:1730;s:9:"doubtless";i:1731;s:5:"dream";i:1732;s:9:"dreamland";i:1733;s:6:"dreams";i:1734;s:6:"dreamy";i:1735;s:5:"drive";i:1736;s:6:"driven";i:1737;s:7:"durable";i:1738;s:10:"durability";i:1739;s:7:"dynamic";i:1740;s:5:"eager";i:1741;s:7:"eagerly";i:1742;s:9:"eagerness";i:1743;s:9:"earnestly";i:1744;s:11:"earnestness";i:1745;s:4:"ease";i:1746;s:6:"easier";i:1747;s:7:"easiest";i:1748;s:6:"easily";i:1749;s:8:"easiness";i:1750;s:4:"easy";i:1751;s:9:"easygoing";i:1752;s:10:"ebullience";i:1753;s:9:"ebullient";i:1754;s:11:"ebulliently";i:1755;s:8:"eclectic";i:1756;s:10:"economical";i:1757;s:9:"ecstasies";i:1758;s:7:"ecstasy";i:1759;s:12:"ecstatically";i:1760;s:5:"edify";i:1761;s:8:"educable";i:1762;s:8:"educated";i:1763;s:11:"educational";i:1764;s:9:"effective";i:1765;s:13:"effectiveness";i:1766;s:9:"effectual";i:1767;s:11:"efficacious";i:1768;s:10:"efficiency";i:1769;s:10:"effortless";i:1770;s:12:"effortlessly";i:1771;s:8:"effusion";i:1772;s:8:"effusive";i:1773;s:10:"effusively";i:1774;s:12:"effusiveness";i:1775;s:11:"egalitarian";i:1776;s:4:"elan";i:1777;s:5:"elate";i:1778;s:8:"elatedly";i:1779;s:7:"elation";i:1780;s:15:"electrification";i:1781;s:9:"electrify";i:1782;s:8:"elegance";i:1783;s:9:"elegantly";i:1784;s:7:"elevate";i:1785;s:8:"elevated";i:1786;s:8:"eligible";i:1787;s:5:"elite";i:1788;s:9:"eloquence";i:1789;s:10:"eloquently";i:1790;s:10:"emancipate";i:1791;s:9:"embellish";i:1792;s:8:"embolden";i:1793;s:7:"embrace";i:1794;s:8:"eminence";i:1795;s:7:"eminent";i:1796;s:7:"empower";i:1797;s:11:"empowerment";i:1798;s:6:"enable";i:1799;s:7:"enchant";i:1800;s:10:"enchanting";i:1801;s:12:"enchantingly";i:1802;s:9:"encourage";i:1803;s:13:"encouragement";i:1804;s:13:"encouragingly";i:1805;s:6:"endear";i:1806;s:9:"endearing";i:1807;s:7:"endorse";i:1808;s:11:"endorsement";i:1809;s:8:"endorser";i:1810;s:9:"endurable";i:1811;s:6:"endure";i:1812;s:8:"enduring";i:1813;s:8:"energize";i:1814;s:10:"engrossing";i:1815;s:7:"enhance";i:1816;s:8:"enhanced";i:1817;s:11:"enhancement";i:1818;s:5:"enjoy";i:1819;s:9:"enjoyable";i:1820;s:9:"enjoyably";i:1821;s:9:"enjoyment";i:1822;s:9:"enlighten";i:1823;s:13:"enlightenment";i:1824;s:7:"enliven";i:1825;s:7:"ennoble";i:1826;s:6:"enrapt";i:1827;s:9:"enrapture";i:1828;s:10:"enraptured";i:1829;s:6:"enrich";i:1830;s:10:"enrichment";i:1831;s:6:"ensure";i:1832;s:9:"entertain";i:1833;s:7:"enthral";i:1834;s:8:"enthrall";i:1835;s:10:"enthralled";i:1836;s:7:"enthuse";i:1837;s:10:"enthusiasm";i:1838;s:10:"enthusiast";i:1839;s:16:"enthusiastically";i:1840;s:6:"entice";i:1841;s:8:"enticing";i:1842;s:10:"enticingly";i:1843;s:8:"entrance";i:1844;s:9:"entranced";i:1845;s:10:"entrancing";i:1846;s:7:"entreat";i:1847;s:12:"entreatingly";i:1848;s:7:"entrust";i:1849;s:8:"enviable";i:1850;s:8:"enviably";i:1851;s:8:"envision";i:1852;s:9:"envisions";i:1853;s:4:"epic";i:1854;s:7:"epitome";i:1855;s:8:"equality";i:1856;s:9:"equitable";i:1857;s:7:"erudite";i:1858;s:9:"essential";i:1859;s:6:"esteem";i:1860;s:8:"eternity";i:1861;s:8:"eulogize";i:1862;s:8:"euphoria";i:1863;s:8:"euphoric";i:1864;s:12:"euphorically";i:1865;s:6:"evenly";i:1866;s:8:"eventful";i:1867;s:11:"everlasting";i:1868;s:7:"evident";i:1869;s:9:"evidently";i:1870;s:9:"evocative";i:1871;s:5:"exalt";i:1872;s:10:"exaltation";i:1873;s:7:"exalted";i:1874;s:9:"exaltedly";i:1875;s:8:"exalting";i:1876;s:10:"exaltingly";i:1877;s:6:"exceed";i:1878;s:9:"exceeding";i:1879;s:11:"exceedingly";i:1880;s:5:"excel";i:1881;s:10:"excellence";i:1882;s:10:"excellency";i:1883;s:11:"excellently";i:1884;s:11:"exceptional";i:1885;s:13:"exceptionally";i:1886;s:6:"excite";i:1887;s:7:"excited";i:1888;s:9:"excitedly";i:1889;s:11:"excitedness";i:1890;s:10:"excitement";i:1891;s:8:"exciting";i:1892;s:10:"excitingly";i:1893;s:9:"exclusive";i:1894;s:9:"excusable";i:1895;s:6:"excuse";i:1896;s:8:"exemplar";i:1897;s:9:"exemplary";i:1898;s:10:"exhaustive";i:1899;s:12:"exhaustively";i:1900;s:10:"exhilarate";i:1901;s:12:"exhilarating";i:1902;s:14:"exhilaratingly";i:1903;s:12:"exhilaration";i:1904;s:9:"exonerate";i:1905;s:9:"expansive";i:1906;s:11:"experienced";i:1907;s:6:"expert";i:1908;s:8:"expertly";i:1909;s:8:"explicit";i:1910;s:10:"explicitly";i:1911;s:10:"expressive";i:1912;s:9:"exquisite";i:1913;s:11:"exquisitely";i:1914;s:5:"extol";i:1915;s:6:"extoll";i:1916;s:15:"extraordinarily";i:1917;s:10:"exuberance";i:1918;s:9:"exuberant";i:1919;s:11:"exuberantly";i:1920;s:5:"exult";i:1921;s:10:"exultation";i:1922;s:10:"exultingly";i:1923;s:10:"fabulously";i:1924;s:10:"facilitate";i:1925;s:4:"fair";i:1926;s:6:"fairly";i:1927;s:8:"fairness";i:1928;s:5:"faith";i:1929;s:10:"faithfully";i:1930;s:12:"faithfulness";i:1931;s:5:"famed";i:1932;s:4:"fame";i:1933;s:6:"famous";i:1934;s:8:"famously";i:1935;s:5:"fancy";i:1936;s:7:"fanfare";i:1937;s:13:"fantastically";i:1938;s:7:"fantasy";i:1939;s:10:"farsighted";i:1940;s:9:"fascinate";i:1941;s:13:"fascinatingly";i:1942;s:11:"fascination";i:1943;s:11:"fashionably";i:1944;s:12:"fast-growing";i:1945;s:10:"fast-paced";i:1946;s:15:"fastest-growing";i:1947;s:6:"fathom";i:1948;s:5:"favor";i:1949;s:9:"favorable";i:1950;s:7:"favored";i:1951;s:8:"favorite";i:1952;s:6:"favour";i:1953;s:8:"fearless";i:1954;s:10:"fearlessly";i:1955;s:8:"feasible";i:1956;s:8:"feasibly";i:1957;s:4:"feat";i:1958;s:6:"featly";i:1959;s:6:"feisty";i:1960;s:10:"felicitate";i:1961;s:8:"felicity";i:1962;s:7:"fervent";i:1963;s:9:"fervently";i:1964;s:6:"fervid";i:1965;s:8:"fervidly";i:1966;s:6:"fervor";i:1967;s:7:"festive";i:1968;s:8:"fidelity";i:1969;s:5:"fiery";i:1970;s:6:"finely";i:1971;s:11:"first-class";i:1972;s:10:"first-rate";i:1973;s:3:"fit";i:1974;s:7:"fitting";i:1975;s:5:"flair";i:1976;s:5:"flame";i:1977;s:7:"flatter";i:1978;s:10:"flattering";i:1979;s:12:"flatteringly";i:1980;s:8:"flawless";i:1981;s:10:"flawlessly";i:1982;s:8:"flourish";i:1983;s:11:"flourishing";i:1984;s:6:"fluent";i:1985;s:4:"fond";i:1986;s:6:"fondly";i:1987;s:8:"fondness";i:1988;s:9:"foolproof";i:1989;s:8:"foremost";i:1990;s:9:"foresight";i:1991;s:7:"forgave";i:1992;s:7:"forgive";i:1993;s:8:"forgiven";i:1994;s:11:"forgiveness";i:1995;s:11:"forgivingly";i:1996;s:9:"fortitude";i:1997;s:10:"fortuitous";i:1998;s:12:"fortuitously";i:1999;s:9:"fortunate";i:2000;s:11:"fortunately";i:2001;s:7:"fortune";i:2002;s:8:"fragrant";i:2003;s:5:"frank";i:2004;s:7:"freedom";i:2005;s:8:"freedoms";i:2006;s:5:"fresh";i:2007;s:6:"friend";i:2008;s:12:"friendliness";i:2009;s:8:"friendly";i:2010;s:7:"friends";i:2011;s:10:"friendship";i:2012;s:6:"frolic";i:2013;s:11:"fulfillment";i:2014;s:12:"full-fledged";i:2015;s:10:"functional";i:2016;s:6:"gaiety";i:2017;s:5:"gaily";i:2018;s:4:"gain";i:2019;s:7:"gainful";i:2020;s:9:"gainfully";i:2021;s:9:"gallantly";i:2022;s:6:"galore";i:2023;s:3:"gem";i:2024;s:4:"gems";i:2025;s:10:"generosity";i:2026;s:10:"generously";i:2027;s:6:"genius";i:2028;s:7:"germane";i:2029;s:5:"giddy";i:2030;s:6:"gifted";i:2031;s:7:"gladden";i:2032;s:6:"gladly";i:2033;s:8:"gladness";i:2034;s:9:"glamorous";i:2035;s:4:"glee";i:2036;s:9:"gleefully";i:2037;s:7:"glimmer";i:2038;s:10:"glimmering";i:2039;s:7:"glisten";i:2040;s:10:"glistening";i:2041;s:7:"glitter";i:2042;s:7:"glorify";i:2043;s:8:"glorious";i:2044;s:10:"gloriously";i:2045;s:5:"glory";i:2046;s:6:"glossy";i:2047;s:4:"glow";i:2048;s:7:"glowing";i:2049;s:9:"glowingly";i:2050;s:8:"go-ahead";i:2051;s:9:"god-given";i:2052;s:7:"godlike";i:2053;s:4:"gold";i:2054;s:6:"golden";i:2055;s:6:"goodly";i:2056;s:8:"goodness";i:2057;s:8:"goodwill";i:2058;s:10:"gorgeously";i:2059;s:5:"grace";i:2060;s:8:"graceful";i:2061;s:10:"gracefully";i:2062;s:10:"graciously";i:2063;s:12:"graciousness";i:2064;s:5:"grail";i:2065;s:8:"grandeur";i:2066;s:10:"gratefully";i:2067;s:13:"gratification";i:2068;s:7:"gratify";i:2069;s:10:"gratifying";i:2070;s:12:"gratifyingly";i:2071;s:9:"gratitude";i:2072;s:8:"greatest";i:2073;s:9:"greatness";i:2074;s:5:"greet";i:2075;s:4:"grin";i:2076;s:4:"grit";i:2077;s:6:"groove";i:2078;s:14:"groundbreaking";i:2079;s:9:"guarantee";i:2080;s:8:"guardian";i:2081;s:8:"guidance";i:2082;s:9:"guiltless";i:2083;s:4:"gush";i:2084;s:8:"gumption";i:2085;s:5:"gusto";i:2086;s:5:"gutsy";i:2087;s:4:"hail";i:2088;s:7:"halcyon";i:2089;s:4:"hale";i:2090;s:8:"hallowed";i:2091;s:7:"handily";i:2092;s:8:"handsome";i:2093;s:6:"hanker";i:2094;s:7:"happily";i:2095;s:9:"happiness";i:2096;s:12:"hard-working";i:2097;s:7:"hardier";i:2098;s:8:"harmless";i:2099;s:12:"harmoniously";i:2100;s:9:"harmonize";i:2101;s:7:"harmony";i:2102;s:5:"haven";i:2103;s:7:"headway";i:2104;s:5:"heady";i:2105;s:4:"heal";i:2106;s:9:"healthful";i:2107;s:5:"heart";i:2108;s:7:"hearten";i:2109;s:10:"heartening";i:2110;s:9:"heartfelt";i:2111;s:8:"heartily";i:2112;s:12:"heartwarming";i:2113;s:6:"heaven";i:2114;s:6:"herald";i:2115;s:4:"hero";i:2116;s:10:"heroically";i:2117;s:7:"heroine";i:2118;s:7:"heroize";i:2119;s:5:"heros";i:2120;s:12:"high-quality";i:2121;s:9:"highlight";i:2122;s:11:"hilariously";i:2123;s:13:"hilariousness";i:2124;s:8:"hilarity";i:2125;s:8:"historic";i:2126;s:4:"holy";i:2127;s:6:"homage";i:2128;s:6:"honest";i:2129;s:8:"honestly";i:2130;s:7:"honesty";i:2131;s:9:"honeymoon";i:2132;s:5:"honor";i:2133;s:9:"honorable";i:2134;s:4:"hope";i:2135;s:11:"hopefulness";i:2136;s:5:"hopes";i:2137;s:3:"hot";i:2138;s:3:"hug";i:2139;s:6:"humane";i:2140;s:9:"humanists";i:2141;s:8:"humanity";i:2142;s:9:"humankind";i:2143;s:6:"humble";i:2144;s:8:"humility";i:2145;s:5:"humor";i:2146;s:10:"humorously";i:2147;s:6:"humour";i:2148;s:9:"humourous";i:2149;s:5:"ideal";i:2150;s:8:"idealism";i:2151;s:8:"idealist";i:2152;s:8:"idealize";i:2153;s:7:"ideally";i:2154;s:4:"idol";i:2155;s:7:"idolize";i:2156;s:8:"idolized";i:2157;s:7:"idyllic";i:2158;s:10:"illuminate";i:2159;s:10:"illuminati";i:2160;s:12:"illuminating";i:2161;s:8:"illumine";i:2162;s:11:"illustrious";i:2163;s:12:"immaculately";i:2164;s:12:"impartiality";i:2165;s:11:"impartially";i:2166;s:11:"impassioned";i:2167;s:10:"impeccable";i:2168;s:10:"impeccably";i:2169;s:5:"impel";i:2170;s:8:"imperial";i:2171;s:13:"imperturbable";i:2172;s:10:"impervious";i:2173;s:7:"impetus";i:2174;s:10:"importance";i:2175;s:11:"importantly";i:2176;s:11:"impregnable";i:2177;s:7:"impress";i:2178;s:10:"impression";i:2179;s:11:"impressions";i:2180;s:12:"impressively";i:2181;s:14:"impressiveness";i:2182;s:9:"improving";i:2183;s:7:"improve";i:2184;s:8:"improved";i:2185;s:11:"improvement";i:2186;s:9:"improvise";i:2187;s:11:"inalienable";i:2188;s:8:"incisive";i:2189;s:10:"incisively";i:2190;s:12:"incisiveness";i:2191;s:11:"inclination";i:2192;s:12:"inclinations";i:2193;s:8:"inclined";i:2194;s:9:"inclusive";i:2195;s:13:"incontestable";i:2196;s:16:"incontrovertible";i:2197;s:13:"incorruptible";i:2198;s:10:"incredible";i:2199;s:10:"incredibly";i:2200;s:8:"indebted";i:2201;s:13:"indefatigable";i:2202;s:9:"indelible";i:2203;s:9:"indelibly";i:2204;s:12:"independence";i:2205;s:13:"indescribable";i:2206;s:13:"indescribably";i:2207;s:14:"indestructible";i:2208;s:13:"indispensable";i:2209;s:16:"indispensability";i:2210;s:12:"indisputable";i:2211;s:13:"individuality";i:2212;s:11:"indomitable";i:2213;s:11:"indomitably";i:2214;s:11:"indubitable";i:2215;s:11:"indubitably";i:2216;s:10:"indulgence";i:2217;s:9:"indulgent";i:2218;s:11:"inestimable";i:2219;s:11:"inestimably";i:2220;s:11:"inexpensive";i:2221;s:10:"infallible";i:2222;s:10:"infallibly";i:2223;s:13:"infallibility";i:2224;s:11:"informative";i:2225;s:11:"ingeniously";i:2226;s:9:"ingenuity";i:2227;s:9:"ingenuous";i:2228;s:11:"ingenuously";i:2229;s:10:"ingratiate";i:2230;s:12:"ingratiating";i:2231;s:14:"ingratiatingly";i:2232;s:9:"innocence";i:2233;s:10:"innocently";i:2234;s:9:"innocuous";i:2235;s:10:"innovation";i:2236;s:10:"innovative";i:2237;s:11:"inoffensive";i:2238;s:11:"inquisitive";i:2239;s:7:"insight";i:2240;s:10:"insightful";i:2241;s:12:"insightfully";i:2242;s:6:"insist";i:2243;s:10:"insistence";i:2244;s:9:"insistent";i:2245;s:11:"insistently";i:2246;s:11:"inspiration";i:2247;s:13:"inspirational";i:2248;s:7:"inspire";i:2249;s:9:"inspiring";i:2250;s:11:"instructive";i:2251;s:12:"instrumental";i:2252;s:6:"intact";i:2253;s:8:"integral";i:2254;s:9:"integrity";i:2255;s:12:"intelligence";i:2256;s:12:"intelligible";i:2257;s:9:"intercede";i:2258;s:8:"interest";i:2259;s:10:"interested";i:2260;s:11:"interesting";i:2261;s:9:"interests";i:2262;s:8:"intimacy";i:2263;s:8:"intimate";i:2264;s:9:"intricate";i:2265;s:8:"intrigue";i:2266;s:10:"intriguing";i:2267;s:12:"intriguingly";i:2268;s:10:"invaluable";i:2269;s:12:"invaluablely";i:2270;s:10:"invigorate";i:2271;s:12:"invigorating";i:2272;s:13:"invincibility";i:2273;s:10:"invincible";i:2274;s:10:"inviolable";i:2275;s:9:"inviolate";i:2276;s:12:"invulnerable";i:2277;s:11:"irrefutable";i:2278;s:11:"irrefutably";i:2279;s:14:"irreproachable";i:2280;s:12:"irresistible";i:2281;s:12:"irresistibly";i:2282;s:8:"jauntily";i:2283;s:6:"jaunty";i:2284;s:4:"jest";i:2285;s:4:"joke";i:2286;s:7:"jollify";i:2287;s:6:"jovial";i:2288;s:3:"joy";i:2289;s:8:"joyfully";i:2290;s:6:"joyous";i:2291;s:8:"joyously";i:2292;s:10:"jubilantly";i:2293;s:8:"jubilate";i:2294;s:10:"jubilation";i:2295;s:9:"judicious";i:2296;s:7:"justice";i:2297;s:11:"justifiable";i:2298;s:11:"justifiably";i:2299;s:13:"justification";i:2300;s:7:"justify";i:2301;s:6:"justly";i:2302;s:6:"keenly";i:2303;s:8:"keenness";i:2304;s:4:"kemp";i:2305;s:3:"kid";i:2306;s:4:"kind";i:2307;s:6:"kindly";i:2308;s:10:"kindliness";i:2309;s:8:"kindness";i:2310;s:9:"kingmaker";i:2311;s:4:"kiss";i:2312;s:5:"large";i:2313;s:4:"lark";i:2314;s:4:"laud";i:2315;s:8:"laudably";i:2316;s:6:"lavish";i:2317;s:8:"lavishly";i:2318;s:11:"law-abiding";i:2319;s:6:"lawful";i:2320;s:8:"lawfully";i:2321;s:7:"leading";i:2322;s:4:"lean";i:2323;s:8:"learning";i:2324;s:9:"legendary";i:2325;s:10:"legitimacy";i:2326;s:10:"legitimate";i:2327;s:12:"legitimately";i:2328;s:9:"leniently";i:2329;s:14:"less-expensive";i:2330;s:8:"leverage";i:2331;s:6:"levity";i:2332;s:10:"liberation";i:2333;s:10:"liberalism";i:2334;s:9:"liberally";i:2335;s:8:"liberate";i:2336;s:7:"liberty";i:2337;s:9:"lifeblood";i:2338;s:8:"lifelong";i:2339;s:13:"light-hearted";i:2340;s:7:"lighten";i:2341;s:7:"likable";i:2342;s:6:"liking";i:2343;s:11:"lionhearted";i:2344;s:8:"literate";i:2345;s:4:"live";i:2346;s:5:"lofty";i:2347;s:7:"lovable";i:2348;s:7:"lovably";i:2349;s:4:"love";i:2350;s:10:"loveliness";i:2351;s:5:"lover";i:2352;s:8:"low-cost";i:2353;s:8:"low-risk";i:2354;s:12:"lower-priced";i:2355;s:7:"loyalty";i:2356;s:7:"lucidly";i:2357;s:4:"luck";i:2358;s:7:"luckier";i:2359;s:8:"luckiest";i:2360;s:7:"luckily";i:2361;s:9:"luckiness";i:2362;s:9:"lucrative";i:2363;s:4:"lush";i:2364;s:6:"luster";i:2365;s:8:"lustrous";i:2366;s:9:"luxuriant";i:2367;s:9:"luxuriate";i:2368;s:9:"luxurious";i:2369;s:11:"luxuriously";i:2370;s:6:"luxury";i:2371;s:7:"lyrical";i:2372;s:5:"magic";i:2373;s:7:"magical";i:2374;s:11:"magnanimous";i:2375;s:13:"magnanimously";i:2376;s:12:"magnificence";i:2377;s:11:"magnificent";i:2378;s:13:"magnificently";i:2379;s:7:"magnify";i:2380;s:8:"majestic";i:2381;s:7:"majesty";i:2382;s:10:"manageable";i:2383;s:8:"manifest";i:2384;s:5:"manly";i:2385;s:8:"mannerly";i:2386;s:6:"marvel";i:2387;s:10:"marvellous";i:2388;s:9:"marvelous";i:2389;s:11:"marvelously";i:2390;s:13:"marvelousness";i:2391;s:7:"marvels";i:2392;s:6:"master";i:2393;s:9:"masterful";i:2394;s:11:"masterfully";i:2395;s:11:"masterpiece";i:2396;s:12:"masterpieces";i:2397;s:7:"masters";i:2398;s:7:"mastery";i:2399;s:9:"matchless";i:2400;s:8:"maturely";i:2401;s:8:"maturity";i:2402;s:8:"maximize";i:2403;s:10:"meaningful";i:2404;s:4:"meek";i:2405;s:6:"mellow";i:2406;s:9:"memorable";i:2407;s:11:"memorialize";i:2408;s:4:"mend";i:2409;s:6:"mentor";i:2410;s:10:"mercifully";i:2411;s:5:"mercy";i:2412;s:5:"merit";i:2413;s:7:"merrily";i:2414;s:9:"merriment";i:2415;s:9:"merriness";i:2416;s:9:"mesmerize";i:2417;s:11:"mesmerizing";i:2418;s:13:"mesmerizingly";i:2419;s:10:"meticulous";i:2420;s:12:"meticulously";i:2421;s:8:"mightily";i:2422;s:6:"mighty";i:2423;s:8:"minister";i:2424;s:7:"miracle";i:2425;s:8:"miracles";i:2426;s:10:"miraculous";i:2427;s:12:"miraculously";i:2428;s:14:"miraculousness";i:2429;s:5:"mirth";i:2430;s:10:"moderation";i:2431;s:6:"modern";i:2432;s:7:"modesty";i:2433;s:7:"mollify";i:2434;s:9:"momentous";i:2435;s:10:"monumental";i:2436;s:12:"monumentally";i:2437;s:8:"morality";i:2438;s:8:"moralize";i:2439;s:8:"motivate";i:2440;s:9:"motivated";i:2441;s:10:"motivation";i:2442;s:6:"moving";i:2443;s:6:"myriad";i:2444;s:9:"naturally";i:2445;s:9:"navigable";i:2446;s:4:"neat";i:2447;s:6:"neatly";i:2448;s:11:"necessarily";i:2449;s:10:"neutralize";i:2450;s:6:"nicely";i:2451;s:5:"nifty";i:2452;s:5:"nobly";i:2453;s:12:"non-violence";i:2454;s:11:"non-violent";i:2455;s:6:"normal";i:2456;s:7:"notable";i:2457;s:7:"notably";i:2458;s:10:"noteworthy";i:2459;s:10:"noticeable";i:2460;s:7:"nourish";i:2461;s:11:"nourishment";i:2462;s:7:"nurture";i:2463;s:9:"nurturing";i:2464;s:5:"oasis";i:2465;s:9:"obedience";i:2466;s:8:"obedient";i:2467;s:10:"obediently";i:2468;s:4:"obey";i:2469;s:9:"objective";i:2470;s:11:"objectively";i:2471;s:7:"obliged";i:2472;s:7:"obviate";i:2473;s:7:"offbeat";i:2474;s:6:"offset";i:2475;s:6:"onward";i:2476;s:4:"open";i:2477;s:6:"openly";i:2478;s:8:"openness";i:2479;s:9:"opportune";i:2480;s:11:"opportunity";i:2481;s:7:"optimal";i:2482;s:8:"optimism";i:2483;s:10:"optimistic";i:2484;s:7:"opulent";i:2485;s:7:"orderly";i:2486;s:11:"originality";i:2487;s:5:"outdo";i:2488;s:8:"outgoing";i:2489;s:8:"outshine";i:2490;s:8:"outsmart";i:2491;s:11:"outstanding";i:2492;s:13:"outstandingly";i:2493;s:8:"outstrip";i:2494;s:6:"outwit";i:2495;s:7:"ovation";i:2496;s:12:"overachiever";i:2497;s:9:"overjoyed";i:2498;s:8:"overture";i:2499;s:8:"pacifist";i:2500;s:9:"pacifists";i:2501;s:8:"painless";i:2502;s:10:"painlessly";i:2503;s:11:"painstaking";i:2504;s:13:"painstakingly";i:2505;s:9:"palatable";i:2506;s:8:"palatial";i:2507;s:8:"palliate";i:2508;s:6:"pamper";i:2509;s:8:"paradise";i:2510;s:9:"paramount";i:2511;s:6:"pardon";i:2512;s:7:"passion";i:2513;s:12:"passionately";i:2514;s:8:"patience";i:2515;s:7:"patient";i:2516;s:9:"patiently";i:2517;s:7:"patriot";i:2518;s:9:"patriotic";i:2519;s:5:"peace";i:2520;s:9:"peaceable";i:2521;s:10:"peacefully";i:2522;s:12:"peacekeepers";i:2523;s:8:"peerless";i:2524;s:11:"penetrating";i:2525;s:8:"penitent";i:2526;s:10:"perceptive";i:2527;s:10:"perfection";i:2528;s:9:"perfectly";i:2529;s:11:"permissible";i:2530;s:12:"perseverance";i:2531;s:9:"persevere";i:2532;s:10:"persistent";i:2533;s:10:"personages";i:2534;s:11:"personality";i:2535;s:11:"perspicuous";i:2536;s:13:"perspicuously";i:2537;s:8:"persuade";i:2538;s:12:"persuasively";i:2539;s:9:"pertinent";i:2540;s:10:"phenomenal";i:2541;s:12:"phenomenally";i:2542;s:11:"picturesque";i:2543;s:5:"piety";i:2544;s:6:"pillar";i:2545;s:8:"pinnacle";i:2546;s:5:"pious";i:2547;s:5:"pithy";i:2548;s:7:"placate";i:2549;s:6:"placid";i:2550;s:7:"plainly";i:2551;s:12:"plausibility";i:2552;s:9:"plausible";i:2553;s:9:"playfully";i:2554;s:10:"pleasantly";i:2555;s:7:"pleased";i:2556;s:8:"pleasing";i:2557;s:10:"pleasingly";i:2558;s:11:"pleasurable";i:2559;s:11:"pleasurably";i:2560;s:8:"pleasure";i:2561;s:6:"pledge";i:2562;s:7:"pledges";i:2563;s:9:"plentiful";i:2564;s:6:"plenty";i:2565;s:5:"plush";i:2566;s:9:"poeticize";i:2567;s:8:"poignant";i:2568;s:5:"poise";i:2569;s:6:"poised";i:2570;s:6:"polite";i:2571;s:10:"politeness";i:2572;s:7:"popular";i:2573;s:10:"popularity";i:2574;s:8:"portable";i:2575;s:4:"posh";i:2576;s:12:"positiveness";i:2577;s:10:"positively";i:2578;s:9:"posterity";i:2579;s:6:"potent";i:2580;s:9:"potential";i:2581;s:10:"powerfully";i:2582;s:11:"practicable";i:2583;s:6:"praise";i:2584;s:12:"praiseworthy";i:2585;s:8:"praising";i:2586;s:11:"pre-eminent";i:2587;s:6:"preach";i:2588;s:9:"preaching";i:2589;s:10:"precaution";i:2590;s:11:"precautions";i:2591;s:9:"precedent";i:2592;s:7:"precise";i:2593;s:9:"precisely";i:2594;s:9:"precision";i:2595;s:10:"preeminent";i:2596;s:10:"preemptive";i:2597;s:6:"prefer";i:2598;s:10:"preferable";i:2599;s:10:"preferably";i:2600;s:10:"preference";i:2601;s:11:"preferences";i:2602;s:7:"premier";i:2603;s:7:"premium";i:2604;s:8:"prepared";i:2605;s:13:"preponderance";i:2606;s:5:"press";i:2607;s:8:"prestige";i:2608;s:11:"prestigious";i:2609;s:8:"prettily";i:2610;s:6:"pretty";i:2611;s:5:"pride";i:2612;s:9:"principle";i:2613;s:10:"principled";i:2614;s:9:"privilege";i:2615;s:5:"prize";i:2616;s:3:"pro";i:2617;s:12:"pro-american";i:2618;s:11:"pro-beijing";i:2619;s:8:"pro-cuba";i:2620;s:9:"pro-peace";i:2621;s:9:"proactive";i:2622;s:10:"prodigious";i:2623;s:12:"prodigiously";i:2624;s:7:"prodigy";i:2625;s:7:"profess";i:2626;s:10:"proficient";i:2627;s:12:"proficiently";i:2628;s:6:"profit";i:2629;s:10:"profitable";i:2630;s:10:"profoundly";i:2631;s:7:"profuse";i:2632;s:9:"profusely";i:2633;s:9:"profusion";i:2634;s:8:"progress";i:2635;s:9:"prominent";i:2636;s:10:"prominence";i:2637;s:7:"promise";i:2638;s:9:"promising";i:2639;s:8:"promoter";i:2640;s:8:"promptly";i:2641;s:8:"properly";i:2642;s:10:"propitious";i:2643;s:12:"propitiously";i:2644;s:8:"prospect";i:2645;s:9:"prospects";i:2646;s:7:"prosper";i:2647;s:10:"prosperity";i:2648;s:10:"prosperous";i:2649;s:7:"protect";i:2650;s:10:"protection";i:2651;s:10:"protective";i:2652;s:9:"protector";i:2653;s:5:"proud";i:2654;s:10:"providence";i:2655;s:7:"prowess";i:2656;s:8:"prudence";i:2657;s:9:"prudently";i:2658;s:7:"pundits";i:2659;s:4:"pure";i:2660;s:12:"purification";i:2661;s:6:"purify";i:2662;s:6:"purity";i:2663;s:6:"quaint";i:2664;s:9:"qualified";i:2665;s:7:"qualify";i:2666;s:10:"quasi-ally";i:2667;s:6:"quench";i:2668;s:7:"quicken";i:2669;s:8:"radiance";i:2670;s:5:"rally";i:2671;s:13:"rapprochement";i:2672;s:7:"rapport";i:2673;s:4:"rapt";i:2674;s:7:"rapture";i:2675;s:10:"raptureous";i:2676;s:12:"raptureously";i:2677;s:9:"rapturous";i:2678;s:11:"rapturously";i:2679;s:8:"rational";i:2680;s:11:"rationality";i:2681;s:4:"rave";i:2682;s:11:"re-conquest";i:2683;s:7:"readily";i:2684;s:8:"reaffirm";i:2685;s:13:"reaffirmation";i:2686;s:7:"realist";i:2687;s:9:"realistic";i:2688;s:13:"realistically";i:2689;s:6:"reason";i:2690;s:10:"reasonably";i:2691;s:8:"reasoned";i:2692;s:11:"reassurance";i:2693;s:8:"reassure";i:2694;s:7:"reclaim";i:2695;s:11:"recognition";i:2696;s:9:"recommend";i:2697;s:14:"recommendation";i:2698;s:15:"recommendations";i:2699;s:11:"recommended";i:2700;s:10:"recompense";i:2701;s:9:"reconcile";i:2702;s:14:"reconciliation";i:2703;s:14:"record-setting";i:2704;s:7:"recover";i:2705;s:13:"rectification";i:2706;s:7:"rectify";i:2707;s:10:"rectifying";i:2708;s:6:"redeem";i:2709;s:9:"redeeming";i:2710;s:10:"redemption";i:2711;s:11:"reestablish";i:2712;s:6:"refine";i:2713;s:10:"refinement";i:2714;s:6:"reform";i:2715;s:7:"refresh";i:2716;s:10:"refreshing";i:2717;s:6:"refuge";i:2718;s:5:"regal";i:2719;s:7:"regally";i:2720;s:6:"regard";i:2721;s:12:"rehabilitate";i:2722;s:14:"rehabilitation";i:2723;s:9:"reinforce";i:2724;s:13:"reinforcement";i:2725;s:7:"rejoice";i:2726;s:11:"rejoicingly";i:2727;s:5:"relax";i:2728;s:6:"relent";i:2729;s:8:"relevant";i:2730;s:9:"relevance";i:2731;s:11:"reliability";i:2732;s:8:"reliably";i:2733;s:6:"relief";i:2734;s:7:"relieve";i:2735;s:6:"relish";i:2736;s:10:"remarkably";i:2737;s:6:"remedy";i:2738;s:11:"reminiscent";i:2739;s:10:"remunerate";i:2740;s:11:"renaissance";i:2741;s:7:"renewal";i:2742;s:8:"renovate";i:2743;s:10:"renovation";i:2744;s:6:"renown";i:2745;s:8:"renowned";i:2746;s:6:"repair";i:2747;s:10:"reparation";i:2748;s:5:"repay";i:2749;s:6:"repent";i:2750;s:10:"repentance";i:2751;s:9:"reputable";i:2752;s:6:"rescue";i:2753;s:9:"resilient";i:2754;s:7:"resolve";i:2755;s:8:"resolved";i:2756;s:7:"resound";i:2757;s:10:"resounding";i:2758;s:11:"resourceful";i:2759;s:15:"resourcefulness";i:2760;s:7:"respect";i:2761;s:11:"respectable";i:2762;s:12:"respectfully";i:2763;s:7:"respite";i:2764;s:14:"responsibility";i:2765;s:11:"responsibly";i:2766;s:7:"restful";i:2767;s:11:"restoration";i:2768;s:7:"restore";i:2769;s:9:"restraint";i:2770;s:9:"resurgent";i:2771;s:7:"reunite";i:2772;s:5:"revel";i:2773;s:10:"revelation";i:2774;s:6:"revere";i:2775;s:9:"reverence";i:2776;s:10:"reverently";i:2777;s:7:"revival";i:2778;s:6:"revive";i:2779;s:10:"revitalize";i:2780;s:10:"revolution";i:2781;s:6:"reward";i:2782;s:9:"rewarding";i:2783;s:11:"rewardingly";i:2784;s:6:"riches";i:2785;s:6:"richly";i:2786;s:8:"richness";i:2787;s:7:"righten";i:2788;s:11:"righteously";i:2789;s:13:"righteousness";i:2790;s:8:"rightful";i:2791;s:10:"rightfully";i:2792;s:7:"rightly";i:2793;s:9:"rightness";i:2794;s:6:"rights";i:2795;s:4:"ripe";i:2796;s:9:"risk-free";i:2797;s:12:"romantically";i:2798;s:11:"romanticize";i:2799;s:7:"rousing";i:2800;s:6:"sacred";i:2801;s:4:"safe";i:2802;s:9:"safeguard";i:2803;s:8:"sagacity";i:2804;s:4:"sage";i:2805;s:6:"sagely";i:2806;s:5:"saint";i:2807;s:11:"saintliness";i:2808;s:7:"salable";i:2809;s:8:"salivate";i:2810;s:8:"salutary";i:2811;s:6:"salute";i:2812;s:9:"salvation";i:2813;s:8:"sanctify";i:2814;s:8:"sanction";i:2815;s:8:"sanctity";i:2816;s:9:"sanctuary";i:2817;s:8:"sanguine";i:2818;s:4:"sane";i:2819;s:6:"sanity";i:2820;s:12:"satisfaction";i:2821;s:14:"satisfactorily";i:2822;s:12:"satisfactory";i:2823;s:7:"satisfy";i:2824;s:10:"satisfying";i:2825;s:5:"savor";i:2826;s:5:"savvy";i:2827;s:6:"scenic";i:2828;s:8:"scruples";i:2829;s:10:"scrupulous";i:2830;s:12:"scrupulously";i:2831;s:8:"seamless";i:2832;s:8:"seasoned";i:2833;s:6:"secure";i:2834;s:8:"securely";i:2835;s:8:"security";i:2836;s:9:"seductive";i:2837;s:9:"selective";i:2838;s:18:"self-determination";i:2839;s:12:"self-respect";i:2840;s:17:"self-satisfaction";i:2841;s:16:"self-sufficiency";i:2842;s:15:"self-sufficient";i:2843;s:9:"semblance";i:2844;s:9:"sensation";i:2845;s:11:"sensational";i:2846;s:13:"sensationally";i:2847;s:10:"sensations";i:2848;s:5:"sense";i:2849;s:8:"sensibly";i:2850;s:11:"sensitively";i:2851;s:11:"sensitivity";i:2852;s:9:"sentiment";i:2853;s:14:"sentimentality";i:2854;s:13:"sentimentally";i:2855;s:10:"sentiments";i:2856;s:8:"serenity";i:2857;s:6:"settle";i:2858;s:7:"shelter";i:2859;s:6:"shield";i:2860;s:7:"shimmer";i:2861;s:10:"shimmering";i:2862;s:12:"shimmeringly";i:2863;s:5:"shine";i:2864;s:5:"shiny";i:2865;s:8:"shrewdly";i:2866;s:10:"shrewdness";i:2867;s:11:"significant";i:2868;s:12:"significance";i:2869;s:7:"signify";i:2870;s:6:"simple";i:2871;s:10:"simplicity";i:2872;s:10:"simplified";i:2873;s:8:"simplify";i:2874;s:9:"sincerely";i:2875;s:9:"sincerity";i:2876;s:5:"skill";i:2877;s:7:"skilled";i:2878;s:8:"skillful";i:2879;s:10:"skillfully";i:2880;s:5:"sleek";i:2881;s:7:"slender";i:2882;s:4:"slim";i:2883;s:5:"smart";i:2884;s:7:"smarter";i:2885;s:8:"smartest";i:2886;s:7:"smartly";i:2887;s:5:"smile";i:2888;s:7:"smiling";i:2889;s:9:"smilingly";i:2890;s:7:"smitten";i:2891;s:11:"soft-spoken";i:2892;s:6:"soften";i:2893;s:6:"solace";i:2894;s:10:"solicitous";i:2895;s:12:"solicitously";i:2896;s:10:"solicitude";i:2897;s:10:"solidarity";i:2898;s:6:"soothe";i:2899;s:10:"soothingly";i:2900;s:5:"sound";i:2901;s:9:"soundness";i:2902;s:8:"spacious";i:2903;s:5:"spare";i:2904;s:7:"sparing";i:2905;s:9:"sparingly";i:2906;s:7:"sparkle";i:2907;s:11:"spectacular";i:2908;s:13:"spectacularly";i:2909;s:9:"spellbind";i:2910;s:12:"spellbinding";i:2911;s:14:"spellbindingly";i:2912;s:10:"spellbound";i:2913;s:6:"spirit";i:2914;s:10:"splendidly";i:2915;s:8:"splendor";i:2916;s:8:"spotless";i:2917;s:9:"sprightly";i:2918;s:4:"spur";i:2919;s:8:"squarely";i:2920;s:9:"stability";i:2921;s:9:"stabilize";i:2922;s:9:"stainless";i:2923;s:5:"stand";i:2924;s:4:"star";i:2925;s:5:"stars";i:2926;s:7:"stately";i:2927;s:10:"statuesque";i:2928;s:7:"staunch";i:2929;s:9:"staunchly";i:2930;s:11:"staunchness";i:2931;s:9:"steadfast";i:2932;s:11:"steadfastly";i:2933;s:13:"steadfastness";i:2934;s:10:"steadiness";i:2935;s:7:"stellar";i:2936;s:9:"stellarly";i:2937;s:9:"stimulate";i:2938;s:11:"stimulating";i:2939;s:11:"stimulative";i:2940;s:8:"stirring";i:2941;s:10:"stirringly";i:2942;s:5:"stood";i:2943;s:8:"straight";i:2944;s:15:"straightforward";i:2945;s:11:"streamlined";i:2946;s:6:"stride";i:2947;s:7:"strides";i:2948;s:8:"striking";i:2949;s:10:"strikingly";i:2950;s:8:"striving";i:2951;s:10:"studiously";i:2952;s:7:"stunned";i:2953;s:8:"stunning";i:2954;s:10:"stunningly";i:2955;s:10:"stupendous";i:2956;s:12:"stupendously";i:2957;s:6:"sturdy";i:2958;s:9:"stylishly";i:2959;s:9:"subscribe";i:2960;s:11:"substantial";i:2961;s:13:"substantially";i:2962;s:11:"substantive";i:2963;s:7:"succeed";i:2964;s:7:"success";i:2965;s:12:"successfully";i:2966;s:7:"suffice";i:2967;s:10:"sufficient";i:2968;s:12:"sufficiently";i:2969;s:7:"suggest";i:2970;s:11:"suggestions";i:2971;s:4:"suit";i:2972;s:8:"suitable";i:2973;s:9:"sumptuous";i:2974;s:11:"sumptuously";i:2975;s:13:"sumptuousness";i:2976;s:5:"super";i:2977;s:8:"superbly";i:2978;s:8:"superior";i:2979;s:11:"superlative";i:2980;s:7:"support";i:2981;s:9:"supporter";i:2982;s:10:"supportive";i:2983;s:7:"supreme";i:2984;s:9:"supremely";i:2985;s:6:"supurb";i:2986;s:8:"supurbly";i:2987;s:6:"surely";i:2988;s:5:"surge";i:2989;s:7:"surging";i:2990;s:7:"surmise";i:2991;s:8:"surmount";i:2992;s:7:"surpass";i:2993;s:8:"survival";i:2994;s:7:"survive";i:2995;s:8:"survivor";i:2996;s:14:"sustainability";i:2997;s:11:"sustainable";i:2998;s:9:"sustained";i:2999;s:8:"sweeping";i:3000;s:7:"sweeten";i:3001;s:10:"sweetheart";i:3002;s:7:"sweetly";i:3003;s:9:"sweetness";i:3004;s:5:"swift";i:3005;s:9:"swiftness";i:3006;s:5:"sworn";i:3007;s:4:"tact";i:3008;s:6:"talent";i:3009;s:8:"talented";i:3010;s:9:"tantalize";i:3011;s:11:"tantalizing";i:3012;s:13:"tantalizingly";i:3013;s:5:"taste";i:3014;s:10:"temperance";i:3015;s:9:"temperate";i:3016;s:5:"tempt";i:3017;s:8:"tempting";i:3018;s:10:"temptingly";i:3019;s:9:"tenacious";i:3020;s:11:"tenaciously";i:3021;s:8:"tenacity";i:3022;s:8:"tenderly";i:3023;s:10:"tenderness";i:3024;s:12:"terrifically";i:3025;s:9:"terrified";i:3026;s:7:"terrify";i:3027;s:10:"terrifying";i:3028;s:12:"terrifyingly";i:3029;s:10:"thankfully";i:3030;s:9:"thinkable";i:3031;s:12:"thoughtfully";i:3032;s:14:"thoughtfulness";i:3033;s:6:"thrift";i:3034;s:6:"thrill";i:3035;s:9:"thrilling";i:3036;s:11:"thrillingly";i:3037;s:7:"thrills";i:3038;s:6:"thrive";i:3039;s:8:"thriving";i:3040;s:6:"tickle";i:3041;s:12:"time-honored";i:3042;s:6:"timely";i:3043;s:6:"tingle";i:3044;s:9:"titillate";i:3045;s:11:"titillating";i:3046;s:13:"titillatingly";i:3047;s:5:"toast";i:3048;s:12:"togetherness";i:3049;s:9:"tolerable";i:3050;s:9:"tolerably";i:3051;s:9:"tolerance";i:3052;s:10:"tolerantly";i:3053;s:8:"tolerate";i:3054;s:10:"toleration";i:3055;s:3:"top";i:3056;s:6:"torrid";i:3057;s:8:"torridly";i:3058;s:9:"tradition";i:3059;s:11:"traditional";i:3060;s:11:"tranquility";i:3061;s:8:"treasure";i:3062;s:5:"treat";i:3063;s:10:"tremendous";i:3064;s:12:"tremendously";i:3065;s:6:"trendy";i:3066;s:11:"trepidation";i:3067;s:7:"tribute";i:3068;s:4:"trim";i:3069;s:7:"triumph";i:3070;s:9:"triumphal";i:3071;s:10:"triumphant";i:3072;s:12:"triumphantly";i:3073;s:9:"truculent";i:3074;s:11:"truculently";i:3075;s:4:"true";i:3076;s:5:"trump";i:3077;s:7:"trumpet";i:3078;s:5:"trust";i:3079;s:8:"trusting";i:3080;s:10:"trustingly";i:3081;s:15:"trustworthiness";i:3082;s:11:"trustworthy";i:3083;s:5:"truth";i:3084;s:10:"truthfully";i:3085;s:12:"truthfulness";i:3086;s:7:"twinkly";i:3087;s:8:"ultimate";i:3088;s:10:"ultimately";i:3089;s:5:"ultra";i:3090;s:9:"unabashed";i:3091;s:11:"unabashedly";i:3092;s:9:"unanimous";i:3093;s:12:"unassailable";i:3094;s:8:"unbiased";i:3095;s:7:"unbosom";i:3096;s:7:"unbound";i:3097;s:8:"unbroken";i:3098;s:8:"uncommon";i:3099;s:10:"uncommonly";i:3100;s:11:"unconcerned";i:3101;s:13:"unconditional";i:3102;s:14:"unconventional";i:3103;s:9:"undaunted";i:3104;s:10:"understand";i:3105;s:14:"understandable";i:3106;s:10:"understood";i:3107;s:10:"understate";i:3108;s:11:"understated";i:3109;s:13:"understatedly";i:3110;s:12:"undisputable";i:3111;s:12:"undisputably";i:3112;s:10:"undisputed";i:3113;s:9:"undoubted";i:3114;s:11:"undoubtedly";i:3115;s:12:"unencumbered";i:3116;s:11:"unequivocal";i:3117;s:13:"unequivocally";i:3118;s:7:"unfazed";i:3119;s:10:"unfettered";i:3120;s:13:"unforgettable";i:3121;s:7:"uniform";i:3122;s:9:"uniformly";i:3123;s:5:"unity";i:3124;s:9:"universal";i:3125;s:9:"unlimited";i:3126;s:12:"unparalleled";i:3127;s:13:"unpretentious";i:3128;s:14:"unquestionable";i:3129;s:14:"unquestionably";i:3130;s:12:"unrestricted";i:3131;s:9:"unscathed";i:3132;s:9:"unselfish";i:3133;s:9:"untouched";i:3134;s:9:"untrained";i:3135;s:6:"upbeat";i:3136;s:7:"upfront";i:3137;s:7:"upgrade";i:3138;s:6:"upheld";i:3139;s:6:"uphold";i:3140;s:6:"uplift";i:3141;s:9:"uplifting";i:3142;s:11:"upliftingly";i:3143;s:10:"upliftment";i:3144;s:7:"upscale";i:3145;s:6:"upside";i:3146;s:6:"upward";i:3147;s:4:"urge";i:3148;s:6:"usable";i:3149;s:6:"useful";i:3150;s:10:"usefulness";i:3151;s:11:"utilitarian";i:3152;s:6:"utmost";i:3153;s:9:"uttermost";i:3154;s:9:"valiantly";i:3155;s:5:"valid";i:3156;s:8:"validity";i:3157;s:5:"valor";i:3158;s:8:"valuable";i:3159;s:6:"values";i:3160;s:8:"vanquish";i:3161;s:4:"vast";i:3162;s:6:"vastly";i:3163;s:8:"vastness";i:3164;s:9:"venerable";i:3165;s:9:"venerably";i:3166;s:8:"venerate";i:3167;s:10:"verifiable";i:3168;s:9:"veritable";i:3169;s:11:"versatility";i:3170;s:6:"viable";i:3171;s:9:"viability";i:3172;s:7:"vibrant";i:3173;s:9:"vibrantly";i:3174;s:10:"victorious";i:3175;s:7:"victory";i:3176;s:9:"vigilance";i:3177;s:8:"vigilant";i:3178;s:10:"vigorously";i:3179;s:9:"vindicate";i:3180;s:7:"vintage";i:3181;s:6:"virtue";i:3182;s:10:"virtuously";i:3183;s:5:"vital";i:3184;s:8:"vitality";i:3185;s:5:"vivid";i:3186;s:11:"voluntarily";i:3187;s:9:"voluntary";i:3188;s:5:"vouch";i:3189;s:9:"vouchsafe";i:3190;s:3:"vow";i:3191;s:10:"vulnerable";i:3192;s:11:"warmhearted";i:3193;s:6:"warmly";i:3194;s:6:"warmth";i:3195;s:7:"wealthy";i:3196;s:7:"welfare";i:3197;s:10:"well-being";i:3198;s:14:"well-connected";i:3199;s:13:"well-educated";i:3200;s:16:"well-established";i:3201;s:13:"well-informed";i:3202;s:16:"well-intentioned";i:3203;s:12:"well-managed";i:3204;s:15:"well-positioned";i:3205;s:15:"well-publicized";i:3206;s:13:"well-received";i:3207;s:13:"well-regarded";i:3208;s:8:"well-run";i:3209;s:12:"well-wishers";i:3210;s:9:"wellbeing";i:3211;s:5:"white";i:3212;s:14:"wholeheartedly";i:3213;s:9:"wholesome";i:3214;s:4:"wide";i:3215;s:9:"wide-open";i:3216;s:12:"wide-ranging";i:3217;s:7:"willful";i:3218;s:9:"willfully";i:3219;s:11:"willingness";i:3220;s:4:"wink";i:3221;s:8:"winnable";i:3222;s:7:"winners";i:3223;s:6:"wisdom";i:3224;s:6:"wisely";i:3225;s:6:"wishes";i:3226;s:7:"wishing";i:3227;s:11:"wonderfully";i:3228;s:9:"wonderous";i:3229;s:11:"wonderously";i:3230;s:8:"wondrous";i:3231;s:3:"woo";i:3232;s:8:"workable";i:3233;s:12:"world-famous";i:3234;s:7:"worship";i:3235;s:5:"worth";i:3236;s:11:"worth-while";i:3237;s:10:"worthiness";i:3238;s:10:"worthwhile";i:3239;s:3:"wow";i:3240;s:3:"wry";i:3241;s:5:"yearn";i:3242;s:8:"yearning";i:3243;s:10:"yearningly";i:3244;s:3:"yep";i:3245;s:8:"youthful";i:3246;s:4:"zeal";i:3247;s:6:"zenith";i:3248;s:4:"zest";i:3249;s:14:"notabandonment";i:3250;s:18:"notveryabandonment";i:3251;s:10:"notabandon";i:3252;s:14:"notveryabandon";i:3253;s:8:"notabase";i:3254;s:12:"notveryabase";i:3255;s:12:"notabasement";i:3256;s:16:"notveryabasement";i:3257;s:8:"notabash";i:3258;s:12:"notveryabash";i:3259;s:8:"notabate";i:3260;s:12:"notveryabate";i:3261;s:11:"notabdicate";i:3262;s:15:"notveryabdicate";i:3263;s:13:"notaberration";i:3264;s:17:"notveryaberration";i:3265;s:8:"notabhor";i:3266;s:12:"notveryabhor";i:3267;s:11:"notabhorred";i:3268;s:15:"notveryabhorred";i:3269;s:13:"notabhorrence";i:3270;s:17:"notveryabhorrence";i:3271;s:12:"notabhorrent";i:3272;s:16:"notveryabhorrent";i:3273;s:14:"notabhorrently";i:3274;s:18:"notveryabhorrently";i:3275;s:9:"notabhors";i:3276;s:13:"notveryabhors";i:3277;s:9:"notabject";i:3278;s:13:"notveryabject";i:3279;s:11:"notabjectly";i:3280;s:15:"notveryabjectly";i:3281;s:9:"notabjure";i:3282;s:13:"notveryabjure";i:3283;s:11:"notabnormal";i:3284;s:15:"notveryabnormal";i:3285;s:10:"notabolish";i:3286;s:14:"notveryabolish";i:3287;s:13:"notabominable";i:3288;s:17:"notveryabominable";i:3289;s:13:"notabominably";i:3290;s:17:"notveryabominably";i:3291;s:12:"notabominate";i:3292;s:16:"notveryabominate";i:3293;s:14:"notabomination";i:3294;s:18:"notveryabomination";i:3295;s:9:"notabrade";i:3296;s:13:"notveryabrade";i:3297;s:11:"notabrasive";i:3298;s:15:"notveryabrasive";i:3299;s:9:"notabrupt";i:3300;s:13:"notveryabrupt";i:3301;s:10:"notabscond";i:3302;s:14:"notveryabscond";i:3303;s:10:"notabsence";i:3304;s:14:"notveryabsence";i:3305;s:11:"notabsentee";i:3306;s:15:"notveryabsentee";i:3307;s:16:"notabsent-minded";i:3308;s:20:"notveryabsent-minded";i:3309;s:9:"notabsurd";i:3310;s:13:"notveryabsurd";i:3311;s:12:"notabsurdity";i:3312;s:16:"notveryabsurdity";i:3313;s:11:"notabsurdly";i:3314;s:15:"notveryabsurdly";i:3315;s:13:"notabsurdness";i:3316;s:17:"notveryabsurdness";i:3317;s:8:"notabuse";i:3318;s:12:"notveryabuse";i:3319;s:9:"notabuses";i:3320;s:13:"notveryabuses";i:3321;s:10:"notabusive";i:3322;s:14:"notveryabusive";i:3323;s:10:"notabysmal";i:3324;s:14:"notveryabysmal";i:3325;s:12:"notabysmally";i:3326;s:16:"notveryabysmally";i:3327;s:8:"notabyss";i:3328;s:12:"notveryabyss";i:3329;s:13:"notaccidental";i:3330;s:17:"notveryaccidental";i:3331;s:9:"notaccost";i:3332;s:13:"notveryaccost";i:3333;s:11:"notaccursed";i:3334;s:15:"notveryaccursed";i:3335;s:13:"notaccusation";i:3336;s:17:"notveryaccusation";i:3337;s:14:"notaccusations";i:3338;s:18:"notveryaccusations";i:3339;s:9:"notaccuse";i:3340;s:13:"notveryaccuse";i:3341;s:10:"notaccuses";i:3342;s:14:"notveryaccuses";i:3343;s:11:"notaccusing";i:3344;s:15:"notveryaccusing";i:3345;s:13:"notaccusingly";i:3346;s:17:"notveryaccusingly";i:3347;s:11:"notacerbate";i:3348;s:15:"notveryacerbate";i:3349;s:10:"notacerbic";i:3350;s:14:"notveryacerbic";i:3351;s:14:"notacerbically";i:3352;s:18:"notveryacerbically";i:3353;s:7:"notache";i:3354;s:11:"notveryache";i:3355;s:8:"notacrid";i:3356;s:12:"notveryacrid";i:3357;s:10:"notacridly";i:3358;s:14:"notveryacridly";i:3359;s:12:"notacridness";i:3360;s:16:"notveryacridness";i:3361;s:14:"notacrimonious";i:3362;s:18:"notveryacrimonious";i:3363;s:16:"notacrimoniously";i:3364;s:20:"notveryacrimoniously";i:3365;s:11:"notacrimony";i:3366;s:15:"notveryacrimony";i:3367;s:10:"notadamant";i:3368;s:14:"notveryadamant";i:3369;s:12:"notadamantly";i:3370;s:16:"notveryadamantly";i:3371;s:9:"notaddict";i:3372;s:13:"notveryaddict";i:3373;s:12:"notaddiction";i:3374;s:16:"notveryaddiction";i:3375;s:11:"notadmonish";i:3376;s:15:"notveryadmonish";i:3377;s:13:"notadmonisher";i:3378;s:17:"notveryadmonisher";i:3379;s:16:"notadmonishingly";i:3380;s:20:"notveryadmonishingly";i:3381;s:15:"notadmonishment";i:3382;s:19:"notveryadmonishment";i:3383;s:13:"notadmonition";i:3384;s:17:"notveryadmonition";i:3385;s:9:"notadrift";i:3386;s:13:"notveryadrift";i:3387;s:13:"notadulterate";i:3388;s:17:"notveryadulterate";i:3389;s:14:"notadulterated";i:3390;s:18:"notveryadulterated";i:3391;s:15:"notadulteration";i:3392;s:19:"notveryadulteration";i:3393;s:14:"notadversarial";i:3394;s:18:"notveryadversarial";i:3395;s:12:"notadversary";i:3396;s:16:"notveryadversary";i:3397;s:10:"notadverse";i:3398;s:14:"notveryadverse";i:3399;s:12:"notadversity";i:3400;s:16:"notveryadversity";i:3401;s:14:"notaffectation";i:3402;s:18:"notveryaffectation";i:3403;s:10:"notafflict";i:3404;s:14:"notveryafflict";i:3405;s:13:"notaffliction";i:3406;s:17:"notveryaffliction";i:3407;s:13:"notafflictive";i:3408;s:17:"notveryafflictive";i:3409;s:10:"notaffront";i:3410;s:14:"notveryaffront";i:3411;s:12:"notaggravate";i:3412;s:16:"notveryaggravate";i:3413;s:14:"notaggravating";i:3414;s:18:"notveryaggravating";i:3415;s:14:"notaggravation";i:3416;s:18:"notveryaggravation";i:3417;s:13:"notaggression";i:3418;s:17:"notveryaggression";i:3419;s:17:"notaggressiveness";i:3420;s:21:"notveryaggressiveness";i:3421;s:12:"notaggressor";i:3422;s:16:"notveryaggressor";i:3423;s:11:"notaggrieve";i:3424;s:15:"notveryaggrieve";i:3425;s:12:"notaggrieved";i:3426;s:16:"notveryaggrieved";i:3427;s:9:"notaghast";i:3428;s:13:"notveryaghast";i:3429;s:10:"notagitate";i:3430;s:14:"notveryagitate";i:3431;s:11:"notagitated";i:3432;s:15:"notveryagitated";i:3433;s:12:"notagitation";i:3434;s:16:"notveryagitation";i:3435;s:11:"notagitator";i:3436;s:15:"notveryagitator";i:3437;s:10:"notagonies";i:3438;s:14:"notveryagonies";i:3439;s:10:"notagonize";i:3440;s:14:"notveryagonize";i:3441;s:12:"notagonizing";i:3442;s:16:"notveryagonizing";i:3443;s:14:"notagonizingly";i:3444;s:18:"notveryagonizingly";i:3445;s:8:"notagony";i:3446;s:12:"notveryagony";i:3447;s:6:"notail";i:3448;s:10:"notveryail";i:3449;s:10:"notailment";i:3450;s:14:"notveryailment";i:3451;s:10:"notaimless";i:3452;s:14:"notveryaimless";i:3453;s:7:"notairs";i:3454;s:11:"notveryairs";i:3455;s:8:"notalarm";i:3456;s:12:"notveryalarm";i:3457;s:10:"notalarmed";i:3458;s:14:"notveryalarmed";i:3459;s:11:"notalarming";i:3460;s:15:"notveryalarming";i:3461;s:13:"notalarmingly";i:3462;s:17:"notveryalarmingly";i:3463;s:7:"notalas";i:3464;s:11:"notveryalas";i:3465;s:11:"notalienate";i:3466;s:15:"notveryalienate";i:3467;s:12:"notalienated";i:3468;s:16:"notveryalienated";i:3469;s:13:"notalienation";i:3470;s:17:"notveryalienation";i:3471;s:13:"notallegation";i:3472;s:17:"notveryallegation";i:3473;s:14:"notallegations";i:3474;s:18:"notveryallegations";i:3475;s:9:"notallege";i:3476;s:13:"notveryallege";i:3477;s:11:"notallergic";i:3478;s:15:"notveryallergic";i:3479;s:8:"notaloof";i:3480;s:12:"notveryaloof";i:3481;s:14:"notaltercation";i:3482;s:18:"notveryaltercation";i:3483;s:12:"notambiguous";i:3484;s:16:"notveryambiguous";i:3485;s:12:"notambiguity";i:3486;s:16:"notveryambiguity";i:3487;s:14:"notambivalence";i:3488;s:18:"notveryambivalence";i:3489;s:13:"notambivalent";i:3490;s:17:"notveryambivalent";i:3491;s:9:"notambush";i:3492;s:13:"notveryambush";i:3493;s:8:"notamiss";i:3494;s:12:"notveryamiss";i:3495;s:11:"notamputate";i:3496;s:15:"notveryamputate";i:3497;s:12:"notanarchism";i:3498;s:16:"notveryanarchism";i:3499;s:12:"notanarchist";i:3500;s:16:"notveryanarchist";i:3501;s:14:"notanarchistic";i:3502;s:18:"notveryanarchistic";i:3503;s:10:"notanarchy";i:3504;s:14:"notveryanarchy";i:3505;s:9:"notanemic";i:3506;s:13:"notveryanemic";i:3507;s:8:"notanger";i:3508;s:12:"notveryanger";i:3509;s:10:"notangrily";i:3510;s:14:"notveryangrily";i:3511;s:12:"notangriness";i:3512;s:16:"notveryangriness";i:3513;s:13:"notannihilate";i:3514;s:17:"notveryannihilate";i:3515;s:15:"notannihilation";i:3516;s:19:"notveryannihilation";i:3517;s:12:"notanimosity";i:3518;s:16:"notveryanimosity";i:3519;s:8:"notannoy";i:3520;s:12:"notveryannoy";i:3521;s:12:"notannoyance";i:3522;s:16:"notveryannoyance";i:3523;s:11:"notannoying";i:3524;s:15:"notveryannoying";i:3525;s:13:"notannoyingly";i:3526;s:17:"notveryannoyingly";i:3527;s:12:"notanomalous";i:3528;s:16:"notveryanomalous";i:3529;s:10:"notanomaly";i:3530;s:14:"notveryanomaly";i:3531;s:13:"notantagonism";i:3532;s:17:"notveryantagonism";i:3533;s:13:"notantagonist";i:3534;s:17:"notveryantagonist";i:3535;s:15:"notantagonistic";i:3536;s:19:"notveryantagonistic";i:3537;s:13:"notantagonize";i:3538;s:17:"notveryantagonize";i:3539;s:8:"notanti-";i:3540;s:12:"notveryanti-";i:3541;s:16:"notanti-american";i:3542;s:20:"notveryanti-american";i:3543;s:15:"notanti-israeli";i:3544;s:19:"notveryanti-israeli";i:3545;s:15:"notanti-semites";i:3546;s:19:"notveryanti-semites";i:3547;s:10:"notanti-us";i:3548;s:14:"notveryanti-us";i:3549;s:18:"notanti-occupation";i:3550;s:22:"notveryanti-occupation";i:3551;s:21:"notanti-proliferation";i:3552;s:25:"notveryanti-proliferation";i:3553;s:14:"notanti-social";i:3554;s:18:"notveryanti-social";i:3555;s:13:"notanti-white";i:3556;s:17:"notveryanti-white";i:3557;s:12:"notantipathy";i:3558;s:16:"notveryantipathy";i:3559;s:13:"notantiquated";i:3560;s:17:"notveryantiquated";i:3561;s:15:"notantithetical";i:3562;s:19:"notveryantithetical";i:3563;s:12:"notanxieties";i:3564;s:16:"notveryanxieties";i:3565;s:10:"notanxiety";i:3566;s:14:"notveryanxiety";i:3567;s:12:"notanxiously";i:3568;s:16:"notveryanxiously";i:3569;s:14:"notanxiousness";i:3570;s:18:"notveryanxiousness";i:3571;s:12:"notapathetic";i:3572;s:16:"notveryapathetic";i:3573;s:16:"notapathetically";i:3574;s:20:"notveryapathetically";i:3575;s:9:"notapathy";i:3576;s:13:"notveryapathy";i:3577;s:6:"notape";i:3578;s:10:"notveryape";i:3579;s:13:"notapocalypse";i:3580;s:17:"notveryapocalypse";i:3581;s:14:"notapocalyptic";i:3582;s:18:"notveryapocalyptic";i:3583;s:12:"notapologist";i:3584;s:16:"notveryapologist";i:3585;s:13:"notapologists";i:3586;s:17:"notveryapologists";i:3587;s:8:"notappal";i:3588;s:12:"notveryappal";i:3589;s:9:"notappall";i:3590;s:13:"notveryappall";i:3591;s:11:"notappalled";i:3592;s:15:"notveryappalled";i:3593;s:12:"notappalling";i:3594;s:16:"notveryappalling";i:3595;s:14:"notappallingly";i:3596;s:18:"notveryappallingly";i:3597;s:15:"notapprehension";i:3598;s:19:"notveryapprehension";i:3599;s:16:"notapprehensions";i:3600;s:20:"notveryapprehensions";i:3601;s:17:"notapprehensively";i:3602;s:21:"notveryapprehensively";i:3603;s:12:"notarbitrary";i:3604;s:16:"notveryarbitrary";i:3605;s:9:"notarcane";i:3606;s:13:"notveryarcane";i:3607;s:10:"notarchaic";i:3608;s:14:"notveryarchaic";i:3609;s:10:"notarduous";i:3610;s:14:"notveryarduous";i:3611;s:12:"notarduously";i:3612;s:16:"notveryarduously";i:3613;s:8:"notargue";i:3614;s:12:"notveryargue";i:3615;s:11:"notargument";i:3616;s:15:"notveryargument";i:3617;s:12:"notarguments";i:3618;s:16:"notveryarguments";i:3619;s:12:"notarrogance";i:3620;s:16:"notveryarrogance";i:3621;s:11:"notarrogant";i:3622;s:15:"notveryarrogant";i:3623;s:13:"notarrogantly";i:3624;s:17:"notveryarrogantly";i:3625;s:10:"notasinine";i:3626;s:14:"notveryasinine";i:3627;s:12:"notasininely";i:3628;s:16:"notveryasininely";i:3629;s:14:"notasinininity";i:3630;s:18:"notveryasinininity";i:3631;s:10:"notaskance";i:3632;s:14:"notveryaskance";i:3633;s:10:"notasperse";i:3634;s:14:"notveryasperse";i:3635;s:12:"notaspersion";i:3636;s:16:"notveryaspersion";i:3637;s:13:"notaspersions";i:3638;s:17:"notveryaspersions";i:3639;s:9:"notassail";i:3640;s:13:"notveryassail";i:3641;s:14:"notassassinate";i:3642;s:18:"notveryassassinate";i:3643;s:11:"notassassin";i:3644;s:15:"notveryassassin";i:3645;s:10:"notassault";i:3646;s:14:"notveryassault";i:3647;s:9:"notastray";i:3648;s:13:"notveryastray";i:3649;s:10:"notasunder";i:3650;s:14:"notveryasunder";i:3651;s:13:"notatrocities";i:3652;s:17:"notveryatrocities";i:3653;s:11:"notatrocity";i:3654;s:15:"notveryatrocity";i:3655;s:10:"notatrophy";i:3656;s:14:"notveryatrophy";i:3657;s:9:"notattack";i:3658;s:13:"notveryattack";i:3659;s:12:"notaudacious";i:3660;s:16:"notveryaudacious";i:3661;s:14:"notaudaciously";i:3662;s:18:"notveryaudaciously";i:3663;s:16:"notaudaciousness";i:3664;s:20:"notveryaudaciousness";i:3665;s:11:"notaudacity";i:3666;s:15:"notveryaudacity";i:3667;s:10:"notaustere";i:3668;s:14:"notveryaustere";i:3669;s:16:"notauthoritarian";i:3670;s:20:"notveryauthoritarian";i:3671;s:11:"notautocrat";i:3672;s:15:"notveryautocrat";i:3673;s:13:"notautocratic";i:3674;s:17:"notveryautocratic";i:3675;s:12:"notavalanche";i:3676;s:16:"notveryavalanche";i:3677;s:10:"notavarice";i:3678;s:14:"notveryavarice";i:3679;s:13:"notavaricious";i:3680;s:17:"notveryavaricious";i:3681;s:15:"notavariciously";i:3682;s:19:"notveryavariciously";i:3683;s:9:"notavenge";i:3684;s:13:"notveryavenge";i:3685;s:9:"notaverse";i:3686;s:13:"notveryaverse";i:3687;s:11:"notaversion";i:3688;s:15:"notveryaversion";i:3689;s:8:"notavoid";i:3690;s:12:"notveryavoid";i:3691;s:12:"notavoidance";i:3692;s:16:"notveryavoidance";i:3693;s:12:"notawfulness";i:3694;s:16:"notveryawfulness";i:3695;s:14:"notawkwardness";i:3696;s:18:"notveryawkwardness";i:3697;s:5:"notax";i:3698;s:9:"notveryax";i:3699;s:9:"notbabble";i:3700;s:13:"notverybabble";i:3701;s:11:"notbackbite";i:3702;s:15:"notverybackbite";i:3703;s:13:"notbackbiting";i:3704;s:17:"notverybackbiting";i:3705;s:11:"notbackward";i:3706;s:15:"notverybackward";i:3707;s:15:"notbackwardness";i:3708;s:19:"notverybackwardness";i:3709;s:8:"notbadly";i:3710;s:12:"notverybadly";i:3711;s:9:"notbaffle";i:3712;s:13:"notverybaffle";i:3713;s:13:"notbafflement";i:3714;s:17:"notverybafflement";i:3715;s:11:"notbaffling";i:3716;s:15:"notverybaffling";i:3717;s:7:"notbait";i:3718;s:11:"notverybait";i:3719;s:7:"notbalk";i:3720;s:11:"notverybalk";i:3721;s:8:"notbanal";i:3722;s:12:"notverybanal";i:3723;s:11:"notbanalize";i:3724;s:15:"notverybanalize";i:3725;s:7:"notbane";i:3726;s:11:"notverybane";i:3727;s:9:"notbanish";i:3728;s:13:"notverybanish";i:3729;s:13:"notbanishment";i:3730;s:17:"notverybanishment";i:3731;s:11:"notbankrupt";i:3732;s:15:"notverybankrupt";i:3733;s:6:"notbar";i:3734;s:10:"notverybar";i:3735;s:12:"notbarbarian";i:3736;s:16:"notverybarbarian";i:3737;s:11:"notbarbaric";i:3738;s:15:"notverybarbaric";i:3739;s:15:"notbarbarically";i:3740;s:19:"notverybarbarically";i:3741;s:12:"notbarbarity";i:3742;s:16:"notverybarbarity";i:3743;s:12:"notbarbarous";i:3744;s:16:"notverybarbarous";i:3745;s:14:"notbarbarously";i:3746;s:18:"notverybarbarously";i:3747;s:9:"notbarely";i:3748;s:13:"notverybarely";i:3749;s:11:"notbaseless";i:3750;s:15:"notverybaseless";i:3751;s:10:"notbashful";i:3752;s:14:"notverybashful";i:3753;s:10:"notbastard";i:3754;s:14:"notverybastard";i:3755;s:11:"notbattered";i:3756;s:15:"notverybattered";i:3757;s:12:"notbattering";i:3758;s:16:"notverybattering";i:3759;s:9:"notbattle";i:3760;s:13:"notverybattle";i:3761;s:15:"notbattle-lines";i:3762;s:19:"notverybattle-lines";i:3763;s:14:"notbattlefield";i:3764;s:18:"notverybattlefield";i:3765;s:15:"notbattleground";i:3766;s:19:"notverybattleground";i:3767;s:8:"notbatty";i:3768;s:12:"notverybatty";i:3769;s:10:"notbearish";i:3770;s:14:"notverybearish";i:3771;s:8:"notbeast";i:3772;s:12:"notverybeast";i:3773;s:10:"notbeastly";i:3774;s:14:"notverybeastly";i:3775;s:9:"notbedlam";i:3776;s:13:"notverybedlam";i:3777;s:12:"notbedlamite";i:3778;s:16:"notverybedlamite";i:3779;s:9:"notbefoul";i:3780;s:13:"notverybefoul";i:3781;s:6:"notbeg";i:3782;s:10:"notverybeg";i:3783;s:9:"notbeggar";i:3784;s:13:"notverybeggar";i:3785;s:11:"notbeggarly";i:3786;s:15:"notverybeggarly";i:3787;s:10:"notbegging";i:3788;s:14:"notverybegging";i:3789;s:10:"notbeguile";i:3790;s:14:"notverybeguile";i:3791;s:10:"notbelated";i:3792;s:14:"notverybelated";i:3793;s:10:"notbelabor";i:3794;s:14:"notverybelabor";i:3795;s:12:"notbeleaguer";i:3796;s:16:"notverybeleaguer";i:3797;s:8:"notbelie";i:3798;s:12:"notverybelie";i:3799;s:11:"notbelittle";i:3800;s:15:"notverybelittle";i:3801;s:13:"notbelittling";i:3802;s:17:"notverybelittling";i:3803;s:12:"notbellicose";i:3804;s:16:"notverybellicose";i:3805;s:15:"notbelligerence";i:3806;s:19:"notverybelligerence";i:3807;s:14:"notbelligerent";i:3808;s:18:"notverybelligerent";i:3809;s:16:"notbelligerently";i:3810;s:20:"notverybelligerently";i:3811;s:9:"notbemoan";i:3812;s:13:"notverybemoan";i:3813;s:12:"notbemoaning";i:3814;s:16:"notverybemoaning";i:3815;s:10:"notbemused";i:3816;s:14:"notverybemused";i:3817;s:7:"notbent";i:3818;s:11:"notverybent";i:3819;s:9:"notberate";i:3820;s:13:"notveryberate";i:3821;s:10:"notbereave";i:3822;s:14:"notverybereave";i:3823;s:14:"notbereavement";i:3824;s:18:"notverybereavement";i:3825;s:9:"notbereft";i:3826;s:13:"notverybereft";i:3827;s:10:"notberserk";i:3828;s:14:"notveryberserk";i:3829;s:10:"notbeseech";i:3830;s:14:"notverybeseech";i:3831;s:8:"notbeset";i:3832;s:12:"notverybeset";i:3833;s:10:"notbesiege";i:3834;s:14:"notverybesiege";i:3835;s:11:"notbesmirch";i:3836;s:15:"notverybesmirch";i:3837;s:10:"notbestial";i:3838;s:14:"notverybestial";i:3839;s:9:"notbetray";i:3840;s:13:"notverybetray";i:3841;s:11:"notbetrayal";i:3842;s:15:"notverybetrayal";i:3843;s:12:"notbetrayals";i:3844;s:16:"notverybetrayals";i:3845;s:11:"notbetrayer";i:3846;s:15:"notverybetrayer";i:3847;s:9:"notbewail";i:3848;s:13:"notverybewail";i:3849;s:9:"notbeware";i:3850;s:13:"notverybeware";i:3851;s:11:"notbewilder";i:3852;s:15:"notverybewilder";i:3853;s:13:"notbewildered";i:3854;s:17:"notverybewildered";i:3855;s:14:"notbewildering";i:3856;s:18:"notverybewildering";i:3857;s:16:"notbewilderingly";i:3858;s:20:"notverybewilderingly";i:3859;s:15:"notbewilderment";i:3860;s:19:"notverybewilderment";i:3861;s:10:"notbewitch";i:3862;s:14:"notverybewitch";i:3863;s:7:"notbias";i:3864;s:11:"notverybias";i:3865;s:9:"notbiased";i:3866;s:13:"notverybiased";i:3867;s:9:"notbiases";i:3868;s:13:"notverybiases";i:3869;s:9:"notbicker";i:3870;s:13:"notverybicker";i:3871;s:12:"notbickering";i:3872;s:16:"notverybickering";i:3873;s:14:"notbid-rigging";i:3874;s:18:"notverybid-rigging";i:3875;s:8:"notbitch";i:3876;s:12:"notverybitch";i:3877;s:9:"notbitchy";i:3878;s:13:"notverybitchy";i:3879;s:9:"notbiting";i:3880;s:13:"notverybiting";i:3881;s:11:"notbitingly";i:3882;s:15:"notverybitingly";i:3883;s:11:"notbitterly";i:3884;s:15:"notverybitterly";i:3885;s:13:"notbitterness";i:3886;s:17:"notverybitterness";i:3887;s:10:"notbizarre";i:3888;s:14:"notverybizarre";i:3889;s:7:"notblab";i:3890;s:11:"notveryblab";i:3891;s:10:"notblabber";i:3892;s:14:"notveryblabber";i:3893;s:8:"notblack";i:3894;s:12:"notveryblack";i:3895;s:12:"notblackmail";i:3896;s:16:"notveryblackmail";i:3897;s:7:"notblah";i:3898;s:11:"notveryblah";i:3899;s:14:"notblameworthy";i:3900;s:18:"notveryblameworthy";i:3901;s:8:"notbland";i:3902;s:12:"notverybland";i:3903;s:11:"notblandish";i:3904;s:15:"notveryblandish";i:3905;s:12:"notblaspheme";i:3906;s:16:"notveryblaspheme";i:3907;s:14:"notblasphemous";i:3908;s:18:"notveryblasphemous";i:3909;s:12:"notblasphemy";i:3910;s:16:"notveryblasphemy";i:3911;s:8:"notblast";i:3912;s:12:"notveryblast";i:3913;s:10:"notblasted";i:3914;s:14:"notveryblasted";i:3915;s:10:"notblatant";i:3916;s:14:"notveryblatant";i:3917;s:12:"notblatantly";i:3918;s:16:"notveryblatantly";i:3919;s:10:"notblather";i:3920;s:14:"notveryblather";i:3921;s:10:"notbleakly";i:3922;s:14:"notverybleakly";i:3923;s:12:"notbleakness";i:3924;s:16:"notverybleakness";i:3925;s:8:"notbleed";i:3926;s:12:"notverybleed";i:3927;s:10:"notblemish";i:3928;s:14:"notveryblemish";i:3929;s:8:"notblind";i:3930;s:12:"notveryblind";i:3931;s:11:"notblinding";i:3932;s:15:"notveryblinding";i:3933;s:13:"notblindingly";i:3934;s:17:"notveryblindingly";i:3935;s:12:"notblindness";i:3936;s:16:"notveryblindness";i:3937;s:12:"notblindside";i:3938;s:16:"notveryblindside";i:3939;s:10:"notblister";i:3940;s:14:"notveryblister";i:3941;s:13:"notblistering";i:3942;s:17:"notveryblistering";i:3943;s:10:"notbloated";i:3944;s:14:"notverybloated";i:3945;s:8:"notblock";i:3946;s:12:"notveryblock";i:3947;s:12:"notblockhead";i:3948;s:16:"notveryblockhead";i:3949;s:8:"notblood";i:3950;s:12:"notveryblood";i:3951;s:12:"notbloodshed";i:3952;s:16:"notverybloodshed";i:3953;s:15:"notbloodthirsty";i:3954;s:19:"notverybloodthirsty";i:3955;s:9:"notbloody";i:3956;s:13:"notverybloody";i:3957;s:7:"notblow";i:3958;s:11:"notveryblow";i:3959;s:10:"notblunder";i:3960;s:14:"notveryblunder";i:3961;s:13:"notblundering";i:3962;s:17:"notveryblundering";i:3963;s:11:"notblunders";i:3964;s:15:"notveryblunders";i:3965;s:8:"notblunt";i:3966;s:12:"notveryblunt";i:3967;s:8:"notblurt";i:3968;s:12:"notveryblurt";i:3969;s:8:"notboast";i:3970;s:12:"notveryboast";i:3971;s:11:"notboastful";i:3972;s:15:"notveryboastful";i:3973;s:9:"notboggle";i:3974;s:13:"notveryboggle";i:3975;s:8:"notbogus";i:3976;s:12:"notverybogus";i:3977;s:7:"notboil";i:3978;s:11:"notveryboil";i:3979;s:10:"notboiling";i:3980;s:14:"notveryboiling";i:3981;s:13:"notboisterous";i:3982;s:17:"notveryboisterous";i:3983;s:10:"notbombard";i:3984;s:14:"notverybombard";i:3985;s:7:"notbomb";i:3986;s:11:"notverybomb";i:3987;s:14:"notbombardment";i:3988;s:18:"notverybombardment";i:3989;s:12:"notbombastic";i:3990;s:16:"notverybombastic";i:3991;s:10:"notbondage";i:3992;s:14:"notverybondage";i:3993;s:10:"notbonkers";i:3994;s:14:"notverybonkers";i:3995;s:7:"notbore";i:3996;s:11:"notverybore";i:3997;s:10:"notboredom";i:3998;s:14:"notveryboredom";i:3999;s:8:"notbotch";i:4000;s:12:"notverybotch";i:4001;s:9:"notbother";i:4002;s:13:"notverybother";i:4003;s:13:"notbowdlerize";i:4004;s:17:"notverybowdlerize";i:4005;s:10:"notboycott";i:4006;s:14:"notveryboycott";i:4007;s:7:"notbrag";i:4008;s:11:"notverybrag";i:4009;s:11:"notbraggart";i:4010;s:15:"notverybraggart";i:4011;s:10:"notbragger";i:4012;s:14:"notverybragger";i:4013;s:12:"notbrainwash";i:4014;s:16:"notverybrainwash";i:4015;s:8:"notbrash";i:4016;s:12:"notverybrash";i:4017;s:10:"notbrashly";i:4018;s:14:"notverybrashly";i:4019;s:12:"notbrashness";i:4020;s:16:"notverybrashness";i:4021;s:7:"notbrat";i:4022;s:11:"notverybrat";i:4023;s:10:"notbravado";i:4024;s:14:"notverybravado";i:4025;s:9:"notbrazen";i:4026;s:13:"notverybrazen";i:4027;s:11:"notbrazenly";i:4028;s:15:"notverybrazenly";i:4029;s:13:"notbrazenness";i:4030;s:17:"notverybrazenness";i:4031;s:9:"notbreach";i:4032;s:13:"notverybreach";i:4033;s:8:"notbreak";i:4034;s:12:"notverybreak";i:4035;s:14:"notbreak-point";i:4036;s:18:"notverybreak-point";i:4037;s:12:"notbreakdown";i:4038;s:16:"notverybreakdown";i:4039;s:12:"notbrimstone";i:4040;s:16:"notverybrimstone";i:4041;s:10:"notbristle";i:4042;s:14:"notverybristle";i:4043;s:10:"notbrittle";i:4044;s:14:"notverybrittle";i:4045;s:8:"notbroke";i:4046;s:12:"notverybroke";i:4047;s:17:"notbroken-hearted";i:4048;s:21:"notverybroken-hearted";i:4049;s:8:"notbrood";i:4050;s:12:"notverybrood";i:4051;s:11:"notbrowbeat";i:4052;s:15:"notverybrowbeat";i:4053;s:9:"notbruise";i:4054;s:13:"notverybruise";i:4055;s:10:"notbrusque";i:4056;s:14:"notverybrusque";i:4057;s:9:"notbrutal";i:4058;s:13:"notverybrutal";i:4059;s:14:"notbrutalising";i:4060;s:18:"notverybrutalising";i:4061;s:14:"notbrutalities";i:4062;s:18:"notverybrutalities";i:4063;s:12:"notbrutality";i:4064;s:16:"notverybrutality";i:4065;s:12:"notbrutalize";i:4066;s:16:"notverybrutalize";i:4067;s:14:"notbrutalizing";i:4068;s:18:"notverybrutalizing";i:4069;s:11:"notbrutally";i:4070;s:15:"notverybrutally";i:4071;s:8:"notbrute";i:4072;s:12:"notverybrute";i:4073;s:10:"notbrutish";i:4074;s:14:"notverybrutish";i:4075;s:6:"notbug";i:4076;s:10:"notverybug";i:4077;s:9:"notbuckle";i:4078;s:13:"notverybuckle";i:4079;s:8:"notbulky";i:4080;s:12:"notverybulky";i:4081;s:10:"notbullies";i:4082;s:14:"notverybullies";i:4083;s:8:"notbully";i:4084;s:12:"notverybully";i:4085;s:13:"notbullyingly";i:4086;s:17:"notverybullyingly";i:4087;s:6:"notbum";i:4088;s:10:"notverybum";i:4089;s:8:"notbumpy";i:4090;s:12:"notverybumpy";i:4091;s:9:"notbungle";i:4092;s:13:"notverybungle";i:4093;s:10:"notbungler";i:4094;s:14:"notverybungler";i:4095;s:7:"notbunk";i:4096;s:11:"notverybunk";i:4097;s:9:"notburden";i:4098;s:13:"notveryburden";i:4099;s:15:"notburdensomely";i:4100;s:19:"notveryburdensomely";i:4101;s:7:"notburn";i:4102;s:11:"notveryburn";i:4103;s:7:"notbusy";i:4104;s:11:"notverybusy";i:4105;s:11:"notbusybody";i:4106;s:15:"notverybusybody";i:4107;s:10:"notbutcher";i:4108;s:14:"notverybutcher";i:4109;s:11:"notbutchery";i:4110;s:15:"notverybutchery";i:4111;s:12:"notbyzantine";i:4112;s:16:"notverybyzantine";i:4113;s:9:"notcackle";i:4114;s:13:"notverycackle";i:4115;s:9:"notcajole";i:4116;s:13:"notverycajole";i:4117;s:13:"notcalamities";i:4118;s:17:"notverycalamities";i:4119;s:13:"notcalamitous";i:4120;s:17:"notverycalamitous";i:4121;s:15:"notcalamitously";i:4122;s:19:"notverycalamitously";i:4123;s:11:"notcalamity";i:4124;s:15:"notverycalamity";i:4125;s:10:"notcallous";i:4126;s:14:"notverycallous";i:4127;s:13:"notcalumniate";i:4128;s:17:"notverycalumniate";i:4129;s:15:"notcalumniation";i:4130;s:19:"notverycalumniation";i:4131;s:12:"notcalumnies";i:4132;s:16:"notverycalumnies";i:4133;s:13:"notcalumnious";i:4134;s:17:"notverycalumnious";i:4135;s:15:"notcalumniously";i:4136;s:19:"notverycalumniously";i:4137;s:10:"notcalumny";i:4138;s:14:"notverycalumny";i:4139;s:9:"notcancer";i:4140;s:13:"notverycancer";i:4141;s:12:"notcancerous";i:4142;s:16:"notverycancerous";i:4143;s:11:"notcannibal";i:4144;s:15:"notverycannibal";i:4145;s:14:"notcannibalize";i:4146;s:18:"notverycannibalize";i:4147;s:13:"notcapitulate";i:4148;s:17:"notverycapitulate";i:4149;s:13:"notcapricious";i:4150;s:17:"notverycapricious";i:4151;s:15:"notcapriciously";i:4152;s:19:"notverycapriciously";i:4153;s:17:"notcapriciousness";i:4154;s:21:"notverycapriciousness";i:4155;s:10:"notcapsize";i:4156;s:14:"notverycapsize";i:4157;s:10:"notcaptive";i:4158;s:14:"notverycaptive";i:4159;s:15:"notcarelessness";i:4160;s:19:"notverycarelessness";i:4161;s:13:"notcaricature";i:4162;s:17:"notverycaricature";i:4163;s:10:"notcarnage";i:4164;s:14:"notverycarnage";i:4165;s:7:"notcarp";i:4166;s:11:"notverycarp";i:4167;s:10:"notcartoon";i:4168;s:14:"notverycartoon";i:4169;s:13:"notcartoonish";i:4170;s:17:"notverycartoonish";i:4171;s:16:"notcash-strapped";i:4172;s:20:"notverycash-strapped";i:4173;s:12:"notcastigate";i:4174;s:16:"notverycastigate";i:4175;s:11:"notcasualty";i:4176;s:15:"notverycasualty";i:4177;s:12:"notcataclysm";i:4178;s:16:"notverycataclysm";i:4179;s:14:"notcataclysmal";i:4180;s:18:"notverycataclysmal";i:4181;s:14:"notcataclysmic";i:4182;s:18:"notverycataclysmic";i:4183;s:18:"notcataclysmically";i:4184;s:22:"notverycataclysmically";i:4185;s:14:"notcatastrophe";i:4186;s:18:"notverycatastrophe";i:4187;s:15:"notcatastrophes";i:4188;s:19:"notverycatastrophes";i:4189;s:15:"notcatastrophic";i:4190;s:19:"notverycatastrophic";i:4191;s:19:"notcatastrophically";i:4192;s:23:"notverycatastrophically";i:4193;s:10:"notcaustic";i:4194;s:14:"notverycaustic";i:4195;s:14:"notcaustically";i:4196;s:18:"notverycaustically";i:4197;s:13:"notcautionary";i:4198;s:17:"notverycautionary";i:4199;s:11:"notcautious";i:4200;s:15:"notverycautious";i:4201;s:7:"notcave";i:4202;s:11:"notverycave";i:4203;s:10:"notcensure";i:4204;s:14:"notverycensure";i:4205;s:8:"notchafe";i:4206;s:12:"notverychafe";i:4207;s:8:"notchaff";i:4208;s:12:"notverychaff";i:4209;s:10:"notchagrin";i:4210;s:14:"notverychagrin";i:4211;s:12:"notchallenge";i:4212;s:16:"notverychallenge";i:4213;s:14:"notchallenging";i:4214;s:18:"notverychallenging";i:4215;s:8:"notchaos";i:4216;s:12:"notverychaos";i:4217;s:11:"notcharisma";i:4218;s:15:"notverycharisma";i:4219;s:10:"notchasten";i:4220;s:14:"notverychasten";i:4221;s:11:"notchastise";i:4222;s:15:"notverychastise";i:4223;s:15:"notchastisement";i:4224;s:19:"notverychastisement";i:4225;s:10:"notchatter";i:4226;s:14:"notverychatter";i:4227;s:13:"notchatterbox";i:4228;s:17:"notverychatterbox";i:4229;s:10:"notcheapen";i:4230;s:14:"notverycheapen";i:4231;s:8:"notcheap";i:4232;s:12:"notverycheap";i:4233;s:8:"notcheat";i:4234;s:12:"notverycheat";i:4235;s:10:"notcheater";i:4236;s:14:"notverycheater";i:4237;s:12:"notcheerless";i:4238;s:16:"notverycheerless";i:4239;s:8:"notchide";i:4240;s:12:"notverychide";i:4241;s:11:"notchildish";i:4242;s:15:"notverychildish";i:4243;s:8:"notchill";i:4244;s:12:"notverychill";i:4245;s:9:"notchilly";i:4246;s:13:"notverychilly";i:4247;s:7:"notchit";i:4248;s:11:"notverychit";i:4249;s:9:"notchoppy";i:4250;s:13:"notverychoppy";i:4251;s:8:"notchoke";i:4252;s:12:"notverychoke";i:4253;s:8:"notchore";i:4254;s:12:"notverychore";i:4255;s:10:"notchronic";i:4256;s:14:"notverychronic";i:4257;s:9:"notclamor";i:4258;s:13:"notveryclamor";i:4259;s:12:"notclamorous";i:4260;s:16:"notveryclamorous";i:4261;s:8:"notclash";i:4262;s:12:"notveryclash";i:4263;s:9:"notcliche";i:4264;s:13:"notverycliche";i:4265;s:10:"notcliched";i:4266;s:14:"notverycliched";i:4267;s:9:"notclique";i:4268;s:13:"notveryclique";i:4269;s:7:"notclog";i:4270;s:11:"notveryclog";i:4271;s:8:"notclose";i:4272;s:12:"notveryclose";i:4273;s:8:"notcloud";i:4274;s:12:"notverycloud";i:4275;s:9:"notcoarse";i:4276;s:13:"notverycoarse";i:4277;s:8:"notcocky";i:4278;s:12:"notverycocky";i:4279;s:9:"notcoerce";i:4280;s:13:"notverycoerce";i:4281;s:11:"notcoercion";i:4282;s:15:"notverycoercion";i:4283;s:11:"notcoercive";i:4284;s:15:"notverycoercive";i:4285;s:9:"notcoldly";i:4286;s:13:"notverycoldly";i:4287;s:11:"notcollapse";i:4288;s:15:"notverycollapse";i:4289;s:10:"notcollide";i:4290;s:14:"notverycollide";i:4291;s:10:"notcollude";i:4292;s:14:"notverycollude";i:4293;s:12:"notcollusion";i:4294;s:16:"notverycollusion";i:4295;s:9:"notcomedy";i:4296;s:13:"notverycomedy";i:4297;s:10:"notcomical";i:4298;s:14:"notverycomical";i:4299;s:14:"notcommiserate";i:4300;s:18:"notverycommiserate";i:4301;s:14:"notcommonplace";i:4302;s:18:"notverycommonplace";i:4303;s:12:"notcommotion";i:4304;s:16:"notverycommotion";i:4305;s:9:"notcompel";i:4306;s:13:"notverycompel";i:4307;s:13:"notcomplacent";i:4308;s:17:"notverycomplacent";i:4309;s:11:"notcomplain";i:4310;s:15:"notverycomplain";i:4311;s:14:"notcomplaining";i:4312;s:18:"notverycomplaining";i:4313;s:12:"notcomplaint";i:4314;s:16:"notverycomplaint";i:4315;s:13:"notcomplaints";i:4316;s:17:"notverycomplaints";i:4317;s:13:"notcomplicate";i:4318;s:17:"notverycomplicate";i:4319;s:14:"notcomplicated";i:4320;s:18:"notverycomplicated";i:4321;s:15:"notcomplication";i:4322;s:19:"notverycomplication";i:4323;s:12:"notcomplicit";i:4324;s:16:"notverycomplicit";i:4325;s:13:"notcompulsion";i:4326;s:17:"notverycompulsion";i:4327;s:13:"notcompulsory";i:4328;s:17:"notverycompulsory";i:4329;s:10:"notconcede";i:4330;s:14:"notveryconcede";i:4331;s:10:"notconceit";i:4332;s:14:"notveryconceit";i:4333;s:10:"notconcern";i:4334;s:14:"notveryconcern";i:4335;s:11:"notconcerns";i:4336;s:15:"notveryconcerns";i:4337;s:13:"notconcession";i:4338;s:17:"notveryconcession";i:4339;s:14:"notconcessions";i:4340;s:18:"notveryconcessions";i:4341;s:13:"notcondescend";i:4342;s:17:"notverycondescend";i:4343;s:16:"notcondescending";i:4344;s:20:"notverycondescending";i:4345;s:18:"notcondescendingly";i:4346;s:22:"notverycondescendingly";i:4347;s:16:"notcondescension";i:4348;s:20:"notverycondescension";i:4349;s:10:"notcondemn";i:4350;s:14:"notverycondemn";i:4351;s:14:"notcondemnable";i:4352;s:18:"notverycondemnable";i:4353;s:15:"notcondemnation";i:4354;s:19:"notverycondemnation";i:4355;s:13:"notcondolence";i:4356;s:17:"notverycondolence";i:4357;s:14:"notcondolences";i:4358;s:18:"notverycondolences";i:4359;s:10:"notconfess";i:4360;s:14:"notveryconfess";i:4361;s:13:"notconfession";i:4362;s:17:"notveryconfession";i:4363;s:14:"notconfessions";i:4364;s:18:"notveryconfessions";i:4365;s:11:"notconflict";i:4366;s:15:"notveryconflict";i:4367;s:11:"notconfound";i:4368;s:15:"notveryconfound";i:4369;s:13:"notconfounded";i:4370;s:17:"notveryconfounded";i:4371;s:14:"notconfounding";i:4372;s:18:"notveryconfounding";i:4373;s:11:"notconfront";i:4374;s:15:"notveryconfront";i:4375;s:16:"notconfrontation";i:4376;s:20:"notveryconfrontation";i:4377;s:18:"notconfrontational";i:4378;s:22:"notveryconfrontational";i:4379;s:10:"notconfuse";i:4380;s:14:"notveryconfuse";i:4381;s:12:"notconfusing";i:4382;s:16:"notveryconfusing";i:4383;s:12:"notconfusion";i:4384;s:16:"notveryconfusion";i:4385;s:12:"notcongested";i:4386;s:16:"notverycongested";i:4387;s:13:"notcongestion";i:4388;s:17:"notverycongestion";i:4389;s:14:"notconspicuous";i:4390;s:18:"notveryconspicuous";i:4391;s:16:"notconspicuously";i:4392;s:20:"notveryconspicuously";i:4393;s:15:"notconspiracies";i:4394;s:19:"notveryconspiracies";i:4395;s:13:"notconspiracy";i:4396;s:17:"notveryconspiracy";i:4397;s:14:"notconspirator";i:4398;s:18:"notveryconspirator";i:4399;s:17:"notconspiratorial";i:4400;s:21:"notveryconspiratorial";i:4401;s:11:"notconspire";i:4402;s:15:"notveryconspire";i:4403;s:16:"notconsternation";i:4404;s:20:"notveryconsternation";i:4405;s:12:"notconstrain";i:4406;s:16:"notveryconstrain";i:4407;s:13:"notconstraint";i:4408;s:17:"notveryconstraint";i:4409;s:10:"notconsume";i:4410;s:14:"notveryconsume";i:4411;s:13:"notcontagious";i:4412;s:17:"notverycontagious";i:4413;s:14:"notcontaminate";i:4414;s:18:"notverycontaminate";i:4415;s:16:"notcontamination";i:4416;s:20:"notverycontamination";i:4417;s:15:"notcontemptible";i:4418;s:19:"notverycontemptible";i:4419;s:15:"notcontemptuous";i:4420;s:19:"notverycontemptuous";i:4421;s:17:"notcontemptuously";i:4422;s:21:"notverycontemptuously";i:4423;s:10:"notcontend";i:4424;s:14:"notverycontend";i:4425;s:13:"notcontention";i:4426;s:17:"notverycontention";i:4427;s:10:"notcontort";i:4428;s:14:"notverycontort";i:4429;s:14:"notcontortions";i:4430;s:18:"notverycontortions";i:4431;s:13:"notcontradict";i:4432;s:17:"notverycontradict";i:4433;s:16:"notcontradiction";i:4434;s:20:"notverycontradiction";i:4435;s:16:"notcontradictory";i:4436;s:20:"notverycontradictory";i:4437;s:15:"notcontrariness";i:4438;s:19:"notverycontrariness";i:4439;s:11:"notcontrary";i:4440;s:15:"notverycontrary";i:4441;s:13:"notcontravene";i:4442;s:17:"notverycontravene";i:4443;s:11:"notcontrive";i:4444;s:15:"notverycontrive";i:4445;s:12:"notcontrived";i:4446;s:16:"notverycontrived";i:4447;s:16:"notcontroversial";i:4448;s:20:"notverycontroversial";i:4449;s:14:"notcontroversy";i:4450;s:18:"notverycontroversy";i:4451;s:13:"notconvoluted";i:4452;s:17:"notveryconvoluted";i:4453;s:9:"notcoping";i:4454;s:13:"notverycoping";i:4455;s:10:"notcorrode";i:4456;s:14:"notverycorrode";i:4457;s:12:"notcorrosion";i:4458;s:16:"notverycorrosion";i:4459;s:12:"notcorrosive";i:4460;s:16:"notverycorrosive";i:4461;s:10:"notcorrupt";i:4462;s:14:"notverycorrupt";i:4463;s:13:"notcorruption";i:4464;s:17:"notverycorruption";i:4465;s:9:"notcostly";i:4466;s:13:"notverycostly";i:4467;s:20:"notcounterproductive";i:4468;s:24:"notverycounterproductive";i:4469;s:11:"notcoupists";i:4470;s:15:"notverycoupists";i:4471;s:11:"notcovetous";i:4472;s:15:"notverycovetous";i:4473;s:13:"notcovetously";i:4474;s:17:"notverycovetously";i:4475;s:6:"notcow";i:4476;s:10:"notverycow";i:4477;s:9:"notcoward";i:4478;s:13:"notverycoward";i:4479;s:12:"notcrackdown";i:4480;s:16:"notverycrackdown";i:4481;s:9:"notcrafty";i:4482;s:13:"notverycrafty";i:4483;s:8:"notcrass";i:4484;s:12:"notverycrass";i:4485;s:9:"notcraven";i:4486;s:13:"notverycraven";i:4487;s:11:"notcravenly";i:4488;s:15:"notverycravenly";i:4489;s:8:"notcraze";i:4490;s:12:"notverycraze";i:4491;s:10:"notcrazily";i:4492;s:14:"notverycrazily";i:4493;s:12:"notcraziness";i:4494;s:16:"notverycraziness";i:4495;s:12:"notcredulous";i:4496;s:16:"notverycredulous";i:4497;s:8:"notcrime";i:4498;s:12:"notverycrime";i:4499;s:11:"notcriminal";i:4500;s:15:"notverycriminal";i:4501;s:9:"notcringe";i:4502;s:13:"notverycringe";i:4503;s:10:"notcripple";i:4504;s:14:"notverycripple";i:4505;s:12:"notcrippling";i:4506;s:16:"notverycrippling";i:4507;s:9:"notcrisis";i:4508;s:13:"notverycrisis";i:4509;s:9:"notcritic";i:4510;s:13:"notverycritic";i:4511;s:12:"notcriticism";i:4512;s:16:"notverycriticism";i:4513;s:13:"notcriticisms";i:4514;s:17:"notverycriticisms";i:4515;s:12:"notcriticize";i:4516;s:16:"notverycriticize";i:4517;s:10:"notcritics";i:4518;s:14:"notverycritics";i:4519;s:8:"notcrook";i:4520;s:12:"notverycrook";i:4521;s:10:"notcrooked";i:4522;s:14:"notverycrooked";i:4523;s:8:"notcrude";i:4524;s:12:"notverycrude";i:4525;s:8:"notcruel";i:4526;s:12:"notverycruel";i:4527;s:12:"notcruelties";i:4528;s:16:"notverycruelties";i:4529;s:10:"notcruelty";i:4530;s:14:"notverycruelty";i:4531;s:10:"notcrumble";i:4532;s:14:"notverycrumble";i:4533;s:10:"notcrumple";i:4534;s:14:"notverycrumple";i:4535;s:8:"notcrush";i:4536;s:12:"notverycrush";i:4537;s:11:"notcrushing";i:4538;s:15:"notverycrushing";i:4539;s:6:"notcry";i:4540;s:10:"notverycry";i:4541;s:11:"notculpable";i:4542;s:15:"notveryculpable";i:4543;s:10:"notcuplrit";i:4544;s:14:"notverycuplrit";i:4545;s:13:"notcumbersome";i:4546;s:17:"notverycumbersome";i:4547;s:8:"notcurse";i:4548;s:12:"notverycurse";i:4549;s:9:"notcursed";i:4550;s:13:"notverycursed";i:4551;s:9:"notcurses";i:4552;s:13:"notverycurses";i:4553;s:10:"notcursory";i:4554;s:14:"notverycursory";i:4555;s:7:"notcurt";i:4556;s:11:"notverycurt";i:4557;s:7:"notcuss";i:4558;s:11:"notverycuss";i:4559;s:6:"notcut";i:4560;s:10:"notverycut";i:4561;s:12:"notcutthroat";i:4562;s:16:"notverycutthroat";i:4563;s:11:"notcynicism";i:4564;s:15:"notverycynicism";i:4565;s:9:"notdamage";i:4566;s:13:"notverydamage";i:4567;s:11:"notdamaging";i:4568;s:15:"notverydamaging";i:4569;s:7:"notdamn";i:4570;s:11:"notverydamn";i:4571;s:11:"notdamnable";i:4572;s:15:"notverydamnable";i:4573;s:11:"notdamnably";i:4574;s:15:"notverydamnably";i:4575;s:12:"notdamnation";i:4576;s:16:"notverydamnation";i:4577;s:10:"notdamning";i:4578;s:14:"notverydamning";i:4579;s:9:"notdanger";i:4580;s:13:"notverydanger";i:4581;s:16:"notdangerousness";i:4582;s:20:"notverydangerousness";i:4583;s:9:"notdangle";i:4584;s:13:"notverydangle";i:4585;s:9:"notdarken";i:4586;s:13:"notverydarken";i:4587;s:11:"notdarkness";i:4588;s:15:"notverydarkness";i:4589;s:7:"notdarn";i:4590;s:11:"notverydarn";i:4591;s:7:"notdash";i:4592;s:11:"notverydash";i:4593;s:10:"notdastard";i:4594;s:14:"notverydastard";i:4595;s:12:"notdastardly";i:4596;s:16:"notverydastardly";i:4597;s:8:"notdaunt";i:4598;s:12:"notverydaunt";i:4599;s:11:"notdaunting";i:4600;s:15:"notverydaunting";i:4601;s:13:"notdauntingly";i:4602;s:17:"notverydauntingly";i:4603;s:9:"notdawdle";i:4604;s:13:"notverydawdle";i:4605;s:7:"notdaze";i:4606;s:11:"notverydaze";i:4607;s:11:"notdeadbeat";i:4608;s:15:"notverydeadbeat";i:4609;s:11:"notdeadlock";i:4610;s:15:"notverydeadlock";i:4611;s:9:"notdeadly";i:4612;s:13:"notverydeadly";i:4613;s:13:"notdeadweight";i:4614;s:17:"notverydeadweight";i:4615;s:7:"notdeaf";i:4616;s:11:"notverydeaf";i:4617;s:9:"notdearth";i:4618;s:13:"notverydearth";i:4619;s:8:"notdeath";i:4620;s:12:"notverydeath";i:4621;s:10:"notdebacle";i:4622;s:14:"notverydebacle";i:4623;s:9:"notdebase";i:4624;s:13:"notverydebase";i:4625;s:13:"notdebasement";i:4626;s:17:"notverydebasement";i:4627;s:10:"notdebaser";i:4628;s:14:"notverydebaser";i:4629;s:12:"notdebatable";i:4630;s:16:"notverydebatable";i:4631;s:9:"notdebate";i:4632;s:13:"notverydebate";i:4633;s:10:"notdebauch";i:4634;s:14:"notverydebauch";i:4635;s:12:"notdebaucher";i:4636;s:16:"notverydebaucher";i:4637;s:13:"notdebauchery";i:4638;s:17:"notverydebauchery";i:4639;s:13:"notdebilitate";i:4640;s:17:"notverydebilitate";i:4641;s:15:"notdebilitating";i:4642;s:19:"notverydebilitating";i:4643;s:11:"notdebility";i:4644;s:15:"notverydebility";i:4645;s:12:"notdecadence";i:4646;s:16:"notverydecadence";i:4647;s:11:"notdecadent";i:4648;s:15:"notverydecadent";i:4649;s:8:"notdecay";i:4650;s:12:"notverydecay";i:4651;s:10:"notdecayed";i:4652;s:14:"notverydecayed";i:4653;s:9:"notdeceit";i:4654;s:13:"notverydeceit";i:4655;s:12:"notdeceitful";i:4656;s:16:"notverydeceitful";i:4657;s:14:"notdeceitfully";i:4658;s:18:"notverydeceitfully";i:4659;s:16:"notdeceitfulness";i:4660;s:20:"notverydeceitfulness";i:4661;s:12:"notdeceiving";i:4662;s:16:"notverydeceiving";i:4663;s:10:"notdeceive";i:4664;s:14:"notverydeceive";i:4665;s:11:"notdeceiver";i:4666;s:15:"notverydeceiver";i:4667;s:12:"notdeceivers";i:4668;s:16:"notverydeceivers";i:4669;s:12:"notdeception";i:4670;s:16:"notverydeception";i:4671;s:12:"notdeceptive";i:4672;s:16:"notverydeceptive";i:4673;s:14:"notdeceptively";i:4674;s:18:"notverydeceptively";i:4675;s:10:"notdeclaim";i:4676;s:14:"notverydeclaim";i:4677;s:10:"notdecline";i:4678;s:14:"notverydecline";i:4679;s:12:"notdeclining";i:4680;s:16:"notverydeclining";i:4681;s:11:"notdecrease";i:4682;s:15:"notverydecrease";i:4683;s:13:"notdecreasing";i:4684;s:17:"notverydecreasing";i:4685;s:12:"notdecrement";i:4686;s:16:"notverydecrement";i:4687;s:11:"notdecrepit";i:4688;s:15:"notverydecrepit";i:4689;s:14:"notdecrepitude";i:4690;s:18:"notverydecrepitude";i:4691;s:8:"notdecry";i:4692;s:12:"notverydecry";i:4693;s:12:"notdeepening";i:4694;s:16:"notverydeepening";i:4695;s:13:"notdefamation";i:4696;s:17:"notverydefamation";i:4697;s:14:"notdefamations";i:4698;s:18:"notverydefamations";i:4699;s:13:"notdefamatory";i:4700;s:17:"notverydefamatory";i:4701;s:9:"notdefame";i:4702;s:13:"notverydefame";i:4703;s:9:"notdefeat";i:4704;s:13:"notverydefeat";i:4705;s:9:"notdefect";i:4706;s:13:"notverydefect";i:4707;s:11:"notdefiance";i:4708;s:15:"notverydefiance";i:4709;s:12:"notdefiantly";i:4710;s:16:"notverydefiantly";i:4711;s:13:"notdeficiency";i:4712;s:17:"notverydeficiency";i:4713;s:9:"notdefile";i:4714;s:13:"notverydefile";i:4715;s:10:"notdefiler";i:4716;s:14:"notverydefiler";i:4717;s:9:"notdeform";i:4718;s:13:"notverydeform";i:4719;s:11:"notdeformed";i:4720;s:15:"notverydeformed";i:4721;s:13:"notdefrauding";i:4722;s:17:"notverydefrauding";i:4723;s:10:"notdefunct";i:4724;s:14:"notverydefunct";i:4725;s:7:"notdefy";i:4726;s:11:"notverydefy";i:4727;s:13:"notdegenerate";i:4728;s:17:"notverydegenerate";i:4729;s:15:"notdegenerately";i:4730;s:19:"notverydegenerately";i:4731;s:15:"notdegeneration";i:4732;s:19:"notverydegeneration";i:4733;s:14:"notdegradation";i:4734;s:18:"notverydegradation";i:4735;s:10:"notdegrade";i:4736;s:14:"notverydegrade";i:4737;s:12:"notdegrading";i:4738;s:16:"notverydegrading";i:4739;s:14:"notdegradingly";i:4740;s:18:"notverydegradingly";i:4741;s:17:"notdehumanization";i:4742;s:21:"notverydehumanization";i:4743;s:13:"notdehumanize";i:4744;s:17:"notverydehumanize";i:4745;s:8:"notdeign";i:4746;s:12:"notverydeign";i:4747;s:9:"notdeject";i:4748;s:13:"notverydeject";i:4749;s:13:"notdejectedly";i:4750;s:17:"notverydejectedly";i:4751;s:12:"notdejection";i:4752;s:16:"notverydejection";i:4753;s:14:"notdelinquency";i:4754;s:18:"notverydelinquency";i:4755;s:13:"notdelinquent";i:4756;s:17:"notverydelinquent";i:4757;s:12:"notdelirious";i:4758;s:16:"notverydelirious";i:4759;s:11:"notdelirium";i:4760;s:15:"notverydelirium";i:4761;s:9:"notdelude";i:4762;s:13:"notverydelude";i:4763;s:9:"notdeluge";i:4764;s:13:"notverydeluge";i:4765;s:11:"notdelusion";i:4766;s:15:"notverydelusion";i:4767;s:13:"notdelusional";i:4768;s:17:"notverydelusional";i:4769;s:12:"notdelusions";i:4770;s:16:"notverydelusions";i:4771;s:9:"notdemand";i:4772;s:13:"notverydemand";i:4773;s:10:"notdemands";i:4774;s:14:"notverydemands";i:4775;s:9:"notdemean";i:4776;s:13:"notverydemean";i:4777;s:12:"notdemeaning";i:4778;s:16:"notverydemeaning";i:4779;s:9:"notdemise";i:4780;s:13:"notverydemise";i:4781;s:11:"notdemolish";i:4782;s:15:"notverydemolish";i:4783;s:13:"notdemolisher";i:4784;s:17:"notverydemolisher";i:4785;s:8:"notdemon";i:4786;s:12:"notverydemon";i:4787;s:10:"notdemonic";i:4788;s:14:"notverydemonic";i:4789;s:11:"notdemonize";i:4790;s:15:"notverydemonize";i:4791;s:13:"notdemoralize";i:4792;s:17:"notverydemoralize";i:4793;s:15:"notdemoralizing";i:4794;s:19:"notverydemoralizing";i:4795;s:17:"notdemoralizingly";i:4796;s:21:"notverydemoralizingly";i:4797;s:9:"notdenial";i:4798;s:13:"notverydenial";i:4799;s:12:"notdenigrate";i:4800;s:16:"notverydenigrate";i:4801;s:7:"notdeny";i:4802;s:11:"notverydeny";i:4803;s:11:"notdenounce";i:4804;s:15:"notverydenounce";i:4805;s:13:"notdenunciate";i:4806;s:17:"notverydenunciate";i:4807;s:15:"notdenunciation";i:4808;s:19:"notverydenunciation";i:4809;s:16:"notdenunciations";i:4810;s:20:"notverydenunciations";i:4811;s:10:"notdeplete";i:4812;s:14:"notverydeplete";i:4813;s:13:"notdeplorable";i:4814;s:17:"notverydeplorable";i:4815;s:13:"notdeplorably";i:4816;s:17:"notverydeplorably";i:4817;s:10:"notdeplore";i:4818;s:14:"notverydeplore";i:4819;s:12:"notdeploring";i:4820;s:16:"notverydeploring";i:4821;s:14:"notdeploringly";i:4822;s:18:"notverydeploringly";i:4823;s:10:"notdeprave";i:4824;s:14:"notverydeprave";i:4825;s:13:"notdepravedly";i:4826;s:17:"notverydepravedly";i:4827;s:12:"notdeprecate";i:4828;s:16:"notverydeprecate";i:4829;s:10:"notdepress";i:4830;s:14:"notverydepress";i:4831;s:13:"notdepressing";i:4832;s:17:"notverydepressing";i:4833;s:15:"notdepressingly";i:4834;s:19:"notverydepressingly";i:4835;s:13:"notdepression";i:4836;s:17:"notverydepression";i:4837;s:10:"notdeprive";i:4838;s:14:"notverydeprive";i:4839;s:9:"notderide";i:4840;s:13:"notveryderide";i:4841;s:11:"notderision";i:4842;s:15:"notveryderision";i:4843;s:11:"notderisive";i:4844;s:15:"notveryderisive";i:4845;s:13:"notderisively";i:4846;s:17:"notveryderisively";i:4847;s:15:"notderisiveness";i:4848;s:19:"notveryderisiveness";i:4849;s:13:"notderogatory";i:4850;s:17:"notveryderogatory";i:4851;s:12:"notdesecrate";i:4852;s:16:"notverydesecrate";i:4853;s:9:"notdesert";i:4854;s:13:"notverydesert";i:4855;s:12:"notdesertion";i:4856;s:16:"notverydesertion";i:4857;s:12:"notdesiccate";i:4858;s:16:"notverydesiccate";i:4859;s:13:"notdesiccated";i:4860;s:17:"notverydesiccated";i:4861;s:13:"notdesolately";i:4862;s:17:"notverydesolately";i:4863;s:13:"notdesolation";i:4864;s:17:"notverydesolation";i:4865;s:15:"notdespairingly";i:4866;s:19:"notverydespairingly";i:4867;s:14:"notdesperately";i:4868;s:18:"notverydesperately";i:4869;s:14:"notdesperation";i:4870;s:18:"notverydesperation";i:4871;s:13:"notdespicably";i:4872;s:17:"notverydespicably";i:4873;s:10:"notdespise";i:4874;s:14:"notverydespise";i:4875;s:10:"notdespoil";i:4876;s:14:"notverydespoil";i:4877;s:12:"notdespoiler";i:4878;s:16:"notverydespoiler";i:4879;s:14:"notdespondence";i:4880;s:18:"notverydespondence";i:4881;s:14:"notdespondency";i:4882;s:18:"notverydespondency";i:4883;s:13:"notdespondent";i:4884;s:17:"notverydespondent";i:4885;s:15:"notdespondently";i:4886;s:19:"notverydespondently";i:4887;s:9:"notdespot";i:4888;s:13:"notverydespot";i:4889;s:11:"notdespotic";i:4890;s:15:"notverydespotic";i:4891;s:12:"notdespotism";i:4892;s:16:"notverydespotism";i:4893;s:18:"notdestabilisation";i:4894;s:22:"notverydestabilisation";i:4895;s:12:"notdestitute";i:4896;s:16:"notverydestitute";i:4897;s:14:"notdestitution";i:4898;s:18:"notverydestitution";i:4899;s:10:"notdestroy";i:4900;s:14:"notverydestroy";i:4901;s:12:"notdestroyer";i:4902;s:16:"notverydestroyer";i:4903;s:14:"notdestruction";i:4904;s:18:"notverydestruction";i:4905;s:12:"notdesultory";i:4906;s:16:"notverydesultory";i:4907;s:8:"notdeter";i:4908;s:12:"notverydeter";i:4909;s:14:"notdeteriorate";i:4910;s:18:"notverydeteriorate";i:4911;s:16:"notdeteriorating";i:4912;s:20:"notverydeteriorating";i:4913;s:16:"notdeterioration";i:4914;s:20:"notverydeterioration";i:4915;s:12:"notdeterrent";i:4916;s:16:"notverydeterrent";i:4917;s:13:"notdetestably";i:4918;s:17:"notverydetestably";i:4919;s:10:"notdetract";i:4920;s:14:"notverydetract";i:4921;s:13:"notdetraction";i:4922;s:17:"notverydetraction";i:4923;s:12:"notdetriment";i:4924;s:16:"notverydetriment";i:4925;s:14:"notdetrimental";i:4926;s:18:"notverydetrimental";i:4927;s:12:"notdevastate";i:4928;s:16:"notverydevastate";i:4929;s:14:"notdevastating";i:4930;s:18:"notverydevastating";i:4931;s:16:"notdevastatingly";i:4932;s:20:"notverydevastatingly";i:4933;s:14:"notdevastation";i:4934;s:18:"notverydevastation";i:4935;s:10:"notdeviate";i:4936;s:14:"notverydeviate";i:4937;s:12:"notdeviation";i:4938;s:16:"notverydeviation";i:4939;s:8:"notdevil";i:4940;s:12:"notverydevil";i:4941;s:11:"notdevilish";i:4942;s:15:"notverydevilish";i:4943;s:13:"notdevilishly";i:4944;s:17:"notverydevilishly";i:4945;s:12:"notdevilment";i:4946;s:16:"notverydevilment";i:4947;s:10:"notdevilry";i:4948;s:14:"notverydevilry";i:4949;s:10:"notdevious";i:4950;s:14:"notverydevious";i:4951;s:12:"notdeviously";i:4952;s:16:"notverydeviously";i:4953;s:14:"notdeviousness";i:4954;s:18:"notverydeviousness";i:4955;s:11:"notdiabolic";i:4956;s:15:"notverydiabolic";i:4957;s:13:"notdiabolical";i:4958;s:17:"notverydiabolical";i:4959;s:15:"notdiabolically";i:4960;s:19:"notverydiabolically";i:4961;s:16:"notdiametrically";i:4962;s:20:"notverydiametrically";i:4963;s:11:"notdiatribe";i:4964;s:15:"notverydiatribe";i:4965;s:12:"notdiatribes";i:4966;s:16:"notverydiatribes";i:4967;s:11:"notdictator";i:4968;s:15:"notverydictator";i:4969;s:14:"notdictatorial";i:4970;s:18:"notverydictatorial";i:4971;s:9:"notdiffer";i:4972;s:13:"notverydiffer";i:4973;s:15:"notdifficulties";i:4974;s:19:"notverydifficulties";i:4975;s:13:"notdifficulty";i:4976;s:17:"notverydifficulty";i:4977;s:13:"notdiffidence";i:4978;s:17:"notverydiffidence";i:4979;s:6:"notdig";i:4980;s:10:"notverydig";i:4981;s:10:"notdigress";i:4982;s:14:"notverydigress";i:4983;s:14:"notdilapidated";i:4984;s:18:"notverydilapidated";i:4985;s:10:"notdilemma";i:4986;s:14:"notverydilemma";i:4987;s:14:"notdilly-dally";i:4988;s:18:"notverydilly-dally";i:4989;s:6:"notdim";i:4990;s:10:"notverydim";i:4991;s:11:"notdiminish";i:4992;s:15:"notverydiminish";i:4993;s:14:"notdiminishing";i:4994;s:18:"notverydiminishing";i:4995;s:6:"notdin";i:4996;s:10:"notverydin";i:4997;s:8:"notdinky";i:4998;s:12:"notverydinky";i:4999;s:7:"notdire";i:5000;s:11:"notverydire";i:5001;s:9:"notdirely";i:5002;s:13:"notverydirely";i:5003;s:11:"notdireness";i:5004;s:15:"notverydireness";i:5005;s:7:"notdirt";i:5006;s:11:"notverydirt";i:5007;s:10:"notdisable";i:5008;s:14:"notverydisable";i:5009;s:12:"notdisaccord";i:5010;s:16:"notverydisaccord";i:5011;s:15:"notdisadvantage";i:5012;s:19:"notverydisadvantage";i:5013;s:16:"notdisadvantaged";i:5014;s:20:"notverydisadvantaged";i:5015;s:18:"notdisadvantageous";i:5016;s:22:"notverydisadvantageous";i:5017;s:12:"notdisaffect";i:5018;s:16:"notverydisaffect";i:5019;s:14:"notdisaffected";i:5020;s:18:"notverydisaffected";i:5021;s:12:"notdisaffirm";i:5022;s:16:"notverydisaffirm";i:5023;s:11:"notdisagree";i:5024;s:15:"notverydisagree";i:5025;s:15:"notdisagreeably";i:5026;s:19:"notverydisagreeably";i:5027;s:15:"notdisagreement";i:5028;s:19:"notverydisagreement";i:5029;s:11:"notdisallow";i:5030;s:15:"notverydisallow";i:5031;s:13:"notdisappoint";i:5032;s:17:"notverydisappoint";i:5033;s:18:"notdisappointingly";i:5034;s:22:"notverydisappointingly";i:5035;s:17:"notdisappointment";i:5036;s:21:"notverydisappointment";i:5037;s:17:"notdisapprobation";i:5038;s:21:"notverydisapprobation";i:5039;s:14:"notdisapproval";i:5040;s:18:"notverydisapproval";i:5041;s:13:"notdisapprove";i:5042;s:17:"notverydisapprove";i:5043;s:15:"notdisapproving";i:5044;s:19:"notverydisapproving";i:5045;s:9:"notdisarm";i:5046;s:13:"notverydisarm";i:5047;s:11:"notdisarray";i:5048;s:15:"notverydisarray";i:5049;s:11:"notdisaster";i:5050;s:15:"notverydisaster";i:5051;s:13:"notdisastrous";i:5052;s:17:"notverydisastrous";i:5053;s:15:"notdisastrously";i:5054;s:19:"notverydisastrously";i:5055;s:10:"notdisavow";i:5056;s:14:"notverydisavow";i:5057;s:12:"notdisavowal";i:5058;s:16:"notverydisavowal";i:5059;s:12:"notdisbelief";i:5060;s:16:"notverydisbelief";i:5061;s:13:"notdisbelieve";i:5062;s:17:"notverydisbelieve";i:5063;s:14:"notdisbeliever";i:5064;s:18:"notverydisbeliever";i:5065;s:11:"notdisclaim";i:5066;s:15:"notverydisclaim";i:5067;s:17:"notdiscombobulate";i:5068;s:21:"notverydiscombobulate";i:5069;s:12:"notdiscomfit";i:5070;s:16:"notverydiscomfit";i:5071;s:17:"notdiscomfititure";i:5072;s:21:"notverydiscomfititure";i:5073;s:13:"notdiscomfort";i:5074;s:17:"notverydiscomfort";i:5075;s:13:"notdiscompose";i:5076;s:17:"notverydiscompose";i:5077;s:13:"notdisconcert";i:5078;s:17:"notverydisconcert";i:5079;s:15:"notdisconcerted";i:5080;s:19:"notverydisconcerted";i:5081;s:16:"notdisconcerting";i:5082;s:20:"notverydisconcerting";i:5083;s:18:"notdisconcertingly";i:5084;s:22:"notverydisconcertingly";i:5085;s:15:"notdisconsolate";i:5086;s:19:"notverydisconsolate";i:5087;s:17:"notdisconsolately";i:5088;s:21:"notverydisconsolately";i:5089;s:17:"notdisconsolation";i:5090;s:21:"notverydisconsolation";i:5091;s:15:"notdiscontented";i:5092;s:19:"notverydiscontented";i:5093;s:17:"notdiscontentedly";i:5094;s:21:"notverydiscontentedly";i:5095;s:16:"notdiscontinuity";i:5096;s:20:"notverydiscontinuity";i:5097;s:10:"notdiscord";i:5098;s:14:"notverydiscord";i:5099;s:14:"notdiscordance";i:5100;s:18:"notverydiscordance";i:5101;s:13:"notdiscordant";i:5102;s:17:"notverydiscordant";i:5103;s:17:"notdiscountenance";i:5104;s:21:"notverydiscountenance";i:5105;s:13:"notdiscourage";i:5106;s:17:"notverydiscourage";i:5107;s:17:"notdiscouragement";i:5108;s:21:"notverydiscouragement";i:5109;s:15:"notdiscouraging";i:5110;s:19:"notverydiscouraging";i:5111;s:17:"notdiscouragingly";i:5112;s:21:"notverydiscouragingly";i:5113;s:15:"notdiscourteous";i:5114;s:19:"notverydiscourteous";i:5115;s:17:"notdiscourteously";i:5116;s:21:"notverydiscourteously";i:5117;s:12:"notdiscredit";i:5118;s:16:"notverydiscredit";i:5119;s:13:"notdiscrepant";i:5120;s:17:"notverydiscrepant";i:5121;s:15:"notdiscriminate";i:5122;s:19:"notverydiscriminate";i:5123;s:17:"notdiscrimination";i:5124;s:21:"notverydiscrimination";i:5125;s:17:"notdiscriminatory";i:5126;s:21:"notverydiscriminatory";i:5127;s:15:"notdisdainfully";i:5128;s:19:"notverydisdainfully";i:5129;s:10:"notdisease";i:5130;s:14:"notverydisease";i:5131;s:11:"notdiseased";i:5132;s:15:"notverydiseased";i:5133;s:11:"notdisfavor";i:5134;s:15:"notverydisfavor";i:5135;s:11:"notdisgrace";i:5136;s:15:"notverydisgrace";i:5137;s:14:"notdisgraceful";i:5138;s:18:"notverydisgraceful";i:5139;s:16:"notdisgracefully";i:5140;s:20:"notverydisgracefully";i:5141;s:13:"notdisgruntle";i:5142;s:17:"notverydisgruntle";i:5143;s:14:"notdisgustedly";i:5144;s:18:"notverydisgustedly";i:5145;s:13:"notdisgustful";i:5146;s:17:"notverydisgustful";i:5147;s:15:"notdisgustfully";i:5148;s:19:"notverydisgustfully";i:5149;s:13:"notdisgusting";i:5150;s:17:"notverydisgusting";i:5151;s:15:"notdisgustingly";i:5152;s:19:"notverydisgustingly";i:5153;s:13:"notdishearten";i:5154;s:17:"notverydishearten";i:5155;s:16:"notdisheartening";i:5156;s:20:"notverydisheartening";i:5157;s:18:"notdishearteningly";i:5158;s:22:"notverydishearteningly";i:5159;s:14:"notdishonestly";i:5160;s:18:"notverydishonestly";i:5161;s:13:"notdishonesty";i:5162;s:17:"notverydishonesty";i:5163;s:11:"notdishonor";i:5164;s:15:"notverydishonor";i:5165;s:17:"notdishonorablely";i:5166;s:21:"notverydishonorablely";i:5167;s:14:"notdisillusion";i:5168;s:18:"notverydisillusion";i:5169;s:17:"notdisinclination";i:5170;s:21:"notverydisinclination";i:5171;s:14:"notdisinclined";i:5172;s:18:"notverydisinclined";i:5173;s:15:"notdisingenuous";i:5174;s:19:"notverydisingenuous";i:5175;s:17:"notdisingenuously";i:5176;s:21:"notverydisingenuously";i:5177;s:15:"notdisintegrate";i:5178;s:19:"notverydisintegrate";i:5179;s:16:"notdisinterested";i:5180;s:20:"notverydisinterested";i:5181;s:17:"notdisintegration";i:5182;s:21:"notverydisintegration";i:5183;s:14:"notdisinterest";i:5184;s:18:"notverydisinterest";i:5185;s:13:"notdislocated";i:5186;s:17:"notverydislocated";i:5187;s:11:"notdisloyal";i:5188;s:15:"notverydisloyal";i:5189;s:13:"notdisloyalty";i:5190;s:17:"notverydisloyalty";i:5191;s:11:"notdismally";i:5192;s:15:"notverydismally";i:5193;s:13:"notdismalness";i:5194;s:17:"notverydismalness";i:5195;s:9:"notdismay";i:5196;s:13:"notverydismay";i:5197;s:12:"notdismaying";i:5198;s:16:"notverydismaying";i:5199;s:14:"notdismayingly";i:5200;s:18:"notverydismayingly";i:5201;s:13:"notdismissive";i:5202;s:17:"notverydismissive";i:5203;s:15:"notdismissively";i:5204;s:19:"notverydismissively";i:5205;s:15:"notdisobedience";i:5206;s:19:"notverydisobedience";i:5207;s:14:"notdisobedient";i:5208;s:18:"notverydisobedient";i:5209;s:10:"notdisobey";i:5210;s:14:"notverydisobey";i:5211;s:9:"notdisown";i:5212;s:13:"notverydisown";i:5213;s:11:"notdisorder";i:5214;s:15:"notverydisorder";i:5215;s:13:"notdisordered";i:5216;s:17:"notverydisordered";i:5217;s:13:"notdisorderly";i:5218;s:17:"notverydisorderly";i:5219;s:12:"notdisorient";i:5220;s:16:"notverydisorient";i:5221;s:12:"notdisparage";i:5222;s:16:"notverydisparage";i:5223;s:14:"notdisparaging";i:5224;s:18:"notverydisparaging";i:5225;s:16:"notdisparagingly";i:5226;s:20:"notverydisparagingly";i:5227;s:14:"notdispensable";i:5228;s:18:"notverydispensable";i:5229;s:11:"notdispirit";i:5230;s:15:"notverydispirit";i:5231;s:13:"notdispirited";i:5232;s:17:"notverydispirited";i:5233;s:15:"notdispiritedly";i:5234;s:19:"notverydispiritedly";i:5235;s:14:"notdispiriting";i:5236;s:18:"notverydispiriting";i:5237;s:11:"notdisplace";i:5238;s:15:"notverydisplace";i:5239;s:12:"notdisplaced";i:5240;s:16:"notverydisplaced";i:5241;s:12:"notdisplease";i:5242;s:16:"notverydisplease";i:5243;s:14:"notdispleasing";i:5244;s:18:"notverydispleasing";i:5245;s:14:"notdispleasure";i:5246;s:18:"notverydispleasure";i:5247;s:19:"notdisproportionate";i:5248;s:23:"notverydisproportionate";i:5249;s:11:"notdisprove";i:5250;s:15:"notverydisprove";i:5251;s:13:"notdisputable";i:5252;s:17:"notverydisputable";i:5253;s:10:"notdispute";i:5254;s:14:"notverydispute";i:5255;s:11:"notdisputed";i:5256;s:15:"notverydisputed";i:5257;s:11:"notdisquiet";i:5258;s:15:"notverydisquiet";i:5259;s:14:"notdisquieting";i:5260;s:18:"notverydisquieting";i:5261;s:16:"notdisquietingly";i:5262;s:20:"notverydisquietingly";i:5263;s:14:"notdisquietude";i:5264;s:18:"notverydisquietude";i:5265;s:12:"notdisregard";i:5266;s:16:"notverydisregard";i:5267;s:15:"notdisregardful";i:5268;s:19:"notverydisregardful";i:5269;s:15:"notdisreputable";i:5270;s:19:"notverydisreputable";i:5271;s:12:"notdisrepute";i:5272;s:16:"notverydisrepute";i:5273;s:13:"notdisrespect";i:5274;s:17:"notverydisrespect";i:5275;s:17:"notdisrespectable";i:5276;s:21:"notverydisrespectable";i:5277;s:19:"notdisrespectablity";i:5278;s:23:"notverydisrespectablity";i:5279;s:16:"notdisrespectful";i:5280;s:20:"notverydisrespectful";i:5281;s:18:"notdisrespectfully";i:5282;s:22:"notverydisrespectfully";i:5283;s:20:"notdisrespectfulness";i:5284;s:24:"notverydisrespectfulness";i:5285;s:16:"notdisrespecting";i:5286;s:20:"notverydisrespecting";i:5287;s:10:"notdisrupt";i:5288;s:14:"notverydisrupt";i:5289;s:13:"notdisruption";i:5290;s:17:"notverydisruption";i:5291;s:13:"notdisruptive";i:5292;s:17:"notverydisruptive";i:5293;s:18:"notdissatisfaction";i:5294;s:22:"notverydissatisfaction";i:5295;s:18:"notdissatisfactory";i:5296;s:22:"notverydissatisfactory";i:5297;s:13:"notdissatisfy";i:5298;s:17:"notverydissatisfy";i:5299;s:16:"notdissatisfying";i:5300;s:20:"notverydissatisfying";i:5301;s:12:"notdissemble";i:5302;s:16:"notverydissemble";i:5303;s:13:"notdissembler";i:5304;s:17:"notverydissembler";i:5305;s:13:"notdissension";i:5306;s:17:"notverydissension";i:5307;s:10:"notdissent";i:5308;s:14:"notverydissent";i:5309;s:12:"notdissenter";i:5310;s:16:"notverydissenter";i:5311;s:13:"notdissention";i:5312;s:17:"notverydissention";i:5313;s:13:"notdisservice";i:5314;s:17:"notverydisservice";i:5315;s:13:"notdissidence";i:5316;s:17:"notverydissidence";i:5317;s:12:"notdissident";i:5318;s:16:"notverydissident";i:5319;s:13:"notdissidents";i:5320;s:17:"notverydissidents";i:5321;s:12:"notdissocial";i:5322;s:16:"notverydissocial";i:5323;s:12:"notdissolute";i:5324;s:16:"notverydissolute";i:5325;s:14:"notdissolution";i:5326;s:18:"notverydissolution";i:5327;s:13:"notdissonance";i:5328;s:17:"notverydissonance";i:5329;s:12:"notdissonant";i:5330;s:16:"notverydissonant";i:5331;s:14:"notdissonantly";i:5332;s:18:"notverydissonantly";i:5333;s:11:"notdissuade";i:5334;s:15:"notverydissuade";i:5335;s:13:"notdissuasive";i:5336;s:17:"notverydissuasive";i:5337;s:11:"notdistaste";i:5338;s:15:"notverydistaste";i:5339;s:14:"notdistasteful";i:5340;s:18:"notverydistasteful";i:5341;s:16:"notdistastefully";i:5342;s:20:"notverydistastefully";i:5343;s:10:"notdistort";i:5344;s:14:"notverydistort";i:5345;s:13:"notdistortion";i:5346;s:17:"notverydistortion";i:5347;s:11:"notdistract";i:5348;s:15:"notverydistract";i:5349;s:14:"notdistracting";i:5350;s:18:"notverydistracting";i:5351;s:14:"notdistraction";i:5352;s:18:"notverydistraction";i:5353;s:15:"notdistraughtly";i:5354;s:19:"notverydistraughtly";i:5355;s:17:"notdistraughtness";i:5356;s:21:"notverydistraughtness";i:5357;s:11:"notdistress";i:5358;s:15:"notverydistress";i:5359;s:14:"notdistressing";i:5360;s:18:"notverydistressing";i:5361;s:16:"notdistressingly";i:5362;s:20:"notverydistressingly";i:5363;s:11:"notdistrust";i:5364;s:15:"notverydistrust";i:5365;s:14:"notdistrustful";i:5366;s:18:"notverydistrustful";i:5367;s:14:"notdistrusting";i:5368;s:18:"notverydistrusting";i:5369;s:10:"notdisturb";i:5370;s:14:"notverydisturb";i:5371;s:16:"notdisturbed-let";i:5372;s:20:"notverydisturbed-let";i:5373;s:13:"notdisturbing";i:5374;s:17:"notverydisturbing";i:5375;s:15:"notdisturbingly";i:5376;s:19:"notverydisturbingly";i:5377;s:11:"notdisunity";i:5378;s:15:"notverydisunity";i:5379;s:11:"notdisvalue";i:5380;s:15:"notverydisvalue";i:5381;s:12:"notdivergent";i:5382;s:16:"notverydivergent";i:5383;s:9:"notdivide";i:5384;s:13:"notverydivide";i:5385;s:10:"notdivided";i:5386;s:14:"notverydivided";i:5387;s:11:"notdivision";i:5388;s:15:"notverydivision";i:5389;s:11:"notdivisive";i:5390;s:15:"notverydivisive";i:5391;s:13:"notdivisively";i:5392;s:17:"notverydivisively";i:5393;s:15:"notdivisiveness";i:5394;s:19:"notverydivisiveness";i:5395;s:10:"notdivorce";i:5396;s:14:"notverydivorce";i:5397;s:11:"notdivorced";i:5398;s:15:"notverydivorced";i:5399;s:10:"notdizzing";i:5400;s:14:"notverydizzing";i:5401;s:12:"notdizzingly";i:5402;s:16:"notverydizzingly";i:5403;s:12:"notdoddering";i:5404;s:16:"notverydoddering";i:5405;s:9:"notdodgey";i:5406;s:13:"notverydodgey";i:5407;s:9:"notdogged";i:5408;s:13:"notverydogged";i:5409;s:11:"notdoggedly";i:5410;s:15:"notverydoggedly";i:5411;s:11:"notdogmatic";i:5412;s:15:"notverydogmatic";i:5413;s:11:"notdoldrums";i:5414;s:15:"notverydoldrums";i:5415;s:12:"notdominance";i:5416;s:16:"notverydominance";i:5417;s:11:"notdominate";i:5418;s:15:"notverydominate";i:5419;s:13:"notdomination";i:5420;s:17:"notverydomination";i:5421;s:11:"notdomineer";i:5422;s:15:"notverydomineer";i:5423;s:14:"notdomineering";i:5424;s:18:"notverydomineering";i:5425;s:7:"notdoom";i:5426;s:11:"notverydoom";i:5427;s:11:"notdoomsday";i:5428;s:15:"notverydoomsday";i:5429;s:7:"notdope";i:5430;s:11:"notverydope";i:5431;s:8:"notdoubt";i:5432;s:12:"notverydoubt";i:5433;s:13:"notdoubtfully";i:5434;s:17:"notverydoubtfully";i:5435;s:9:"notdoubts";i:5436;s:13:"notverydoubts";i:5437;s:11:"notdownbeat";i:5438;s:15:"notverydownbeat";i:5439;s:11:"notdowncast";i:5440;s:15:"notverydowncast";i:5441;s:9:"notdowner";i:5442;s:13:"notverydowner";i:5443;s:11:"notdownfall";i:5444;s:15:"notverydownfall";i:5445;s:13:"notdownfallen";i:5446;s:17:"notverydownfallen";i:5447;s:12:"notdowngrade";i:5448;s:16:"notverydowngrade";i:5449;s:16:"notdownheartedly";i:5450;s:20:"notverydownheartedly";i:5451;s:11:"notdownside";i:5452;s:15:"notverydownside";i:5453;s:7:"notdrab";i:5454;s:11:"notverydrab";i:5455;s:12:"notdraconian";i:5456;s:16:"notverydraconian";i:5457;s:11:"notdraconic";i:5458;s:15:"notverydraconic";i:5459;s:9:"notdragon";i:5460;s:13:"notverydragon";i:5461;s:10:"notdragons";i:5462;s:14:"notverydragons";i:5463;s:10:"notdragoon";i:5464;s:14:"notverydragoon";i:5465;s:8:"notdrain";i:5466;s:12:"notverydrain";i:5467;s:8:"notdrama";i:5468;s:12:"notverydrama";i:5469;s:10:"notdrastic";i:5470;s:14:"notverydrastic";i:5471;s:14:"notdrastically";i:5472;s:18:"notverydrastically";i:5473;s:13:"notdreadfully";i:5474;s:17:"notverydreadfully";i:5475;s:15:"notdreadfulness";i:5476;s:19:"notverydreadfulness";i:5477;s:9:"notdrones";i:5478;s:13:"notverydrones";i:5479;s:8:"notdroop";i:5480;s:12:"notverydroop";i:5481;s:10:"notdrought";i:5482;s:14:"notverydrought";i:5483;s:11:"notdrowning";i:5484;s:15:"notverydrowning";i:5485;s:11:"notdrunkard";i:5486;s:15:"notverydrunkard";i:5487;s:10:"notdrunken";i:5488;s:14:"notverydrunken";i:5489;s:10:"notdubious";i:5490;s:14:"notverydubious";i:5491;s:12:"notdubiously";i:5492;s:16:"notverydubiously";i:5493;s:12:"notdubitable";i:5494;s:16:"notverydubitable";i:5495;s:6:"notdud";i:5496;s:10:"notverydud";i:5497;s:7:"notdull";i:5498;s:11:"notverydull";i:5499;s:10:"notdullard";i:5500;s:14:"notverydullard";i:5501;s:12:"notdumbfound";i:5502;s:16:"notverydumbfound";i:5503;s:14:"notdumbfounded";i:5504;s:18:"notverydumbfounded";i:5505;s:8:"notdummy";i:5506;s:12:"notverydummy";i:5507;s:7:"notdump";i:5508;s:11:"notverydump";i:5509;s:8:"notdunce";i:5510;s:12:"notverydunce";i:5511;s:10:"notdungeon";i:5512;s:14:"notverydungeon";i:5513;s:11:"notdungeons";i:5514;s:15:"notverydungeons";i:5515;s:7:"notdupe";i:5516;s:11:"notverydupe";i:5517;s:8:"notdusty";i:5518;s:12:"notverydusty";i:5519;s:10:"notdwindle";i:5520;s:14:"notverydwindle";i:5521;s:12:"notdwindling";i:5522;s:16:"notverydwindling";i:5523;s:8:"notdying";i:5524;s:12:"notverydying";i:5525;s:15:"notearsplitting";i:5526;s:19:"notveryearsplitting";i:5527;s:12:"noteccentric";i:5528;s:16:"notveryeccentric";i:5529;s:15:"noteccentricity";i:5530;s:19:"notveryeccentricity";i:5531;s:9:"noteffigy";i:5532;s:13:"notveryeffigy";i:5533;s:13:"noteffrontery";i:5534;s:17:"notveryeffrontery";i:5535;s:6:"notego";i:5536;s:10:"notveryego";i:5537;s:11:"notegomania";i:5538;s:15:"notveryegomania";i:5539;s:10:"notegotism";i:5540;s:14:"notveryegotism";i:5541;s:16:"notegotistically";i:5542;s:20:"notveryegotistically";i:5543;s:12:"notegregious";i:5544;s:16:"notveryegregious";i:5545;s:14:"notegregiously";i:5546;s:18:"notveryegregiously";i:5547;s:12:"notejaculate";i:5548;s:16:"notveryejaculate";i:5549;s:18:"notelection-rigger";i:5550;s:22:"notveryelection-rigger";i:5551;s:12:"noteliminate";i:5552;s:16:"notveryeliminate";i:5553;s:14:"notelimination";i:5554;s:18:"notveryelimination";i:5555;s:12:"notemaciated";i:5556;s:16:"notveryemaciated";i:5557;s:13:"notemasculate";i:5558;s:17:"notveryemasculate";i:5559;s:12:"notembarrass";i:5560;s:16:"notveryembarrass";i:5561;s:15:"notembarrassing";i:5562;s:19:"notveryembarrassing";i:5563;s:17:"notembarrassingly";i:5564;s:21:"notveryembarrassingly";i:5565;s:16:"notembarrassment";i:5566;s:20:"notveryembarrassment";i:5567;s:12:"notembattled";i:5568;s:16:"notveryembattled";i:5569;s:10:"notembroil";i:5570;s:14:"notveryembroil";i:5571;s:12:"notembroiled";i:5572;s:16:"notveryembroiled";i:5573;s:14:"notembroilment";i:5574;s:18:"notveryembroilment";i:5575;s:12:"notempathize";i:5576;s:16:"notveryempathize";i:5577;s:10:"notempathy";i:5578;s:14:"notveryempathy";i:5579;s:11:"notemphatic";i:5580;s:15:"notveryemphatic";i:5581;s:15:"notemphatically";i:5582;s:19:"notveryemphatically";i:5583;s:12:"notemptiness";i:5584;s:16:"notveryemptiness";i:5585;s:11:"notencroach";i:5586;s:15:"notveryencroach";i:5587;s:15:"notencroachment";i:5588;s:19:"notveryencroachment";i:5589;s:11:"notendanger";i:5590;s:15:"notveryendanger";i:5591;s:10:"notendless";i:5592;s:14:"notveryendless";i:5593;s:10:"notenemies";i:5594;s:14:"notveryenemies";i:5595;s:8:"notenemy";i:5596;s:12:"notveryenemy";i:5597;s:11:"notenervate";i:5598;s:15:"notveryenervate";i:5599;s:11:"notenfeeble";i:5600;s:15:"notveryenfeeble";i:5601;s:10:"notenflame";i:5602;s:14:"notveryenflame";i:5603;s:9:"notengulf";i:5604;s:13:"notveryengulf";i:5605;s:9:"notenjoin";i:5606;s:13:"notveryenjoin";i:5607;s:9:"notenmity";i:5608;s:13:"notveryenmity";i:5609;s:13:"notenormities";i:5610;s:17:"notveryenormities";i:5611;s:11:"notenormity";i:5612;s:15:"notveryenormity";i:5613;s:11:"notenormous";i:5614;s:15:"notveryenormous";i:5615;s:13:"notenormously";i:5616;s:17:"notveryenormously";i:5617;s:9:"notenrage";i:5618;s:13:"notveryenrage";i:5619;s:10:"notenslave";i:5620;s:14:"notveryenslave";i:5621;s:11:"notentangle";i:5622;s:15:"notveryentangle";i:5623;s:15:"notentanglement";i:5624;s:19:"notveryentanglement";i:5625;s:9:"notentrap";i:5626;s:13:"notveryentrap";i:5627;s:13:"notentrapment";i:5628;s:17:"notveryentrapment";i:5629;s:10:"notenvious";i:5630;s:14:"notveryenvious";i:5631;s:12:"notenviously";i:5632;s:16:"notveryenviously";i:5633;s:14:"notenviousness";i:5634;s:18:"notveryenviousness";i:5635;s:7:"notenvy";i:5636;s:11:"notveryenvy";i:5637;s:11:"notepidemic";i:5638;s:15:"notveryepidemic";i:5639;s:12:"notequivocal";i:5640;s:16:"notveryequivocal";i:5641;s:12:"noteradicate";i:5642;s:16:"notveryeradicate";i:5643;s:8:"noterase";i:5644;s:12:"notveryerase";i:5645;s:8:"noterode";i:5646;s:12:"notveryerode";i:5647;s:10:"noterosion";i:5648;s:14:"notveryerosion";i:5649;s:6:"noterr";i:5650;s:10:"notveryerr";i:5651;s:9:"noterrant";i:5652;s:13:"notveryerrant";i:5653;s:10:"noterratic";i:5654;s:14:"notveryerratic";i:5655;s:14:"noterratically";i:5656;s:18:"notveryerratically";i:5657;s:12:"noterroneous";i:5658;s:16:"notveryerroneous";i:5659;s:14:"noterroneously";i:5660;s:18:"notveryerroneously";i:5661;s:8:"noterror";i:5662;s:12:"notveryerror";i:5663;s:11:"notescapade";i:5664;s:15:"notveryescapade";i:5665;s:9:"noteschew";i:5666;s:13:"notveryeschew";i:5667;s:11:"notesoteric";i:5668;s:15:"notveryesoteric";i:5669;s:12:"notestranged";i:5670;s:16:"notveryestranged";i:5671;s:10:"noteternal";i:5672;s:14:"notveryeternal";i:5673;s:8:"notevade";i:5674;s:12:"notveryevade";i:5675;s:10:"notevasion";i:5676;s:14:"notveryevasion";i:5677;s:7:"notevil";i:5678;s:11:"notveryevil";i:5679;s:11:"notevildoer";i:5680;s:15:"notveryevildoer";i:5681;s:8:"notevils";i:5682;s:12:"notveryevils";i:5683;s:13:"noteviscerate";i:5684;s:17:"notveryeviscerate";i:5685;s:13:"notexacerbate";i:5686;s:17:"notveryexacerbate";i:5687;s:11:"notexacting";i:5688;s:15:"notveryexacting";i:5689;s:13:"notexaggerate";i:5690;s:17:"notveryexaggerate";i:5691;s:15:"notexaggeration";i:5692;s:19:"notveryexaggeration";i:5693;s:13:"notexasperate";i:5694;s:17:"notveryexasperate";i:5695;s:15:"notexasperation";i:5696;s:19:"notveryexasperation";i:5697;s:15:"notexasperating";i:5698;s:19:"notveryexasperating";i:5699;s:17:"notexasperatingly";i:5700;s:21:"notveryexasperatingly";i:5701;s:14:"notexcessively";i:5702;s:18:"notveryexcessively";i:5703;s:10:"notexclaim";i:5704;s:14:"notveryexclaim";i:5705;s:10:"notexclude";i:5706;s:14:"notveryexclude";i:5707;s:12:"notexclusion";i:5708;s:16:"notveryexclusion";i:5709;s:12:"notexcoriate";i:5710;s:16:"notveryexcoriate";i:5711;s:15:"notexcruciating";i:5712;s:19:"notveryexcruciating";i:5713;s:17:"notexcruciatingly";i:5714;s:21:"notveryexcruciatingly";i:5715;s:9:"notexcuse";i:5716;s:13:"notveryexcuse";i:5717;s:10:"notexcuses";i:5718;s:14:"notveryexcuses";i:5719;s:11:"notexecrate";i:5720;s:15:"notveryexecrate";i:5721;s:10:"notexhaust";i:5722;s:14:"notveryexhaust";i:5723;s:13:"notexhaustion";i:5724;s:17:"notveryexhaustion";i:5725;s:9:"notexhort";i:5726;s:13:"notveryexhort";i:5727;s:8:"notexile";i:5728;s:12:"notveryexile";i:5729;s:13:"notexorbitant";i:5730;s:17:"notveryexorbitant";i:5731;s:17:"notexorbitantance";i:5732;s:21:"notveryexorbitantance";i:5733;s:15:"notexorbitantly";i:5734;s:19:"notveryexorbitantly";i:5735;s:12:"notexpedient";i:5736;s:16:"notveryexpedient";i:5737;s:15:"notexpediencies";i:5738;s:19:"notveryexpediencies";i:5739;s:8:"notexpel";i:5740;s:12:"notveryexpel";i:5741;s:12:"notexpensive";i:5742;s:16:"notveryexpensive";i:5743;s:9:"notexpire";i:5744;s:13:"notveryexpire";i:5745;s:10:"notexplode";i:5746;s:14:"notveryexplode";i:5747;s:10:"notexploit";i:5748;s:14:"notveryexploit";i:5749;s:15:"notexploitation";i:5750;s:19:"notveryexploitation";i:5751;s:9:"notexpose";i:5752;s:13:"notveryexpose";i:5753;s:10:"notexposed";i:5754;s:14:"notveryexposed";i:5755;s:12:"notexplosive";i:5756;s:16:"notveryexplosive";i:5757;s:14:"notexpropriate";i:5758;s:18:"notveryexpropriate";i:5759;s:16:"notexpropriation";i:5760;s:20:"notveryexpropriation";i:5761;s:10:"notexpulse";i:5762;s:14:"notveryexpulse";i:5763;s:10:"notexpunge";i:5764;s:14:"notveryexpunge";i:5765;s:14:"notexterminate";i:5766;s:18:"notveryexterminate";i:5767;s:16:"notextermination";i:5768;s:20:"notveryextermination";i:5769;s:13:"notextinguish";i:5770;s:17:"notveryextinguish";i:5771;s:9:"notextort";i:5772;s:13:"notveryextort";i:5773;s:12:"notextortion";i:5774;s:16:"notveryextortion";i:5775;s:13:"notextraneous";i:5776;s:17:"notveryextraneous";i:5777;s:15:"notextravagance";i:5778;s:19:"notveryextravagance";i:5779;s:14:"notextravagant";i:5780;s:18:"notveryextravagant";i:5781;s:16:"notextravagantly";i:5782;s:20:"notveryextravagantly";i:5783;s:10:"notextreme";i:5784;s:14:"notveryextreme";i:5785;s:12:"notextremely";i:5786;s:16:"notveryextremely";i:5787;s:12:"notextremism";i:5788;s:16:"notveryextremism";i:5789;s:12:"notextremist";i:5790;s:16:"notveryextremist";i:5791;s:13:"notextremists";i:5792;s:17:"notveryextremists";i:5793;s:12:"notfabricate";i:5794;s:16:"notveryfabricate";i:5795;s:14:"notfabrication";i:5796;s:18:"notveryfabrication";i:5797;s:12:"notfacetious";i:5798;s:16:"notveryfacetious";i:5799;s:14:"notfacetiously";i:5800;s:18:"notveryfacetiously";i:5801;s:9:"notfading";i:5802;s:13:"notveryfading";i:5803;s:7:"notfail";i:5804;s:11:"notveryfail";i:5805;s:10:"notfailing";i:5806;s:14:"notveryfailing";i:5807;s:10:"notfailure";i:5808;s:14:"notveryfailure";i:5809;s:11:"notfailures";i:5810;s:15:"notveryfailures";i:5811;s:8:"notfaint";i:5812;s:12:"notveryfaint";i:5813;s:15:"notfainthearted";i:5814;s:19:"notveryfainthearted";i:5815;s:12:"notfaithless";i:5816;s:16:"notveryfaithless";i:5817;s:7:"notfall";i:5818;s:11:"notveryfall";i:5819;s:12:"notfallacies";i:5820;s:16:"notveryfallacies";i:5821;s:13:"notfallacious";i:5822;s:17:"notveryfallacious";i:5823;s:15:"notfallaciously";i:5824;s:19:"notveryfallaciously";i:5825;s:17:"notfallaciousness";i:5826;s:21:"notveryfallaciousness";i:5827;s:10:"notfallacy";i:5828;s:14:"notveryfallacy";i:5829;s:10:"notfallout";i:5830;s:14:"notveryfallout";i:5831;s:12:"notfalsehood";i:5832;s:16:"notveryfalsehood";i:5833;s:10:"notfalsely";i:5834;s:14:"notveryfalsely";i:5835;s:10:"notfalsify";i:5836;s:14:"notveryfalsify";i:5837;s:9:"notfalter";i:5838;s:13:"notveryfalter";i:5839;s:9:"notfamine";i:5840;s:13:"notveryfamine";i:5841;s:11:"notfamished";i:5842;s:15:"notveryfamished";i:5843;s:10:"notfanatic";i:5844;s:14:"notveryfanatic";i:5845;s:12:"notfanatical";i:5846;s:16:"notveryfanatical";i:5847;s:14:"notfanatically";i:5848;s:18:"notveryfanatically";i:5849;s:13:"notfanaticism";i:5850;s:17:"notveryfanaticism";i:5851;s:11:"notfanatics";i:5852;s:15:"notveryfanatics";i:5853;s:11:"notfanciful";i:5854;s:15:"notveryfanciful";i:5855;s:14:"notfar-fetched";i:5856;s:18:"notveryfar-fetched";i:5857;s:13:"notfarfetched";i:5858;s:17:"notveryfarfetched";i:5859;s:8:"notfarce";i:5860;s:12:"notveryfarce";i:5861;s:11:"notfarcical";i:5862;s:15:"notveryfarcical";i:5863;s:27:"notfarcical-yet-provocative";i:5864;s:31:"notveryfarcical-yet-provocative";i:5865;s:13:"notfarcically";i:5866;s:17:"notveryfarcically";i:5867;s:10:"notfascism";i:5868;s:14:"notveryfascism";i:5869;s:10:"notfascist";i:5870;s:14:"notveryfascist";i:5871;s:13:"notfastidious";i:5872;s:17:"notveryfastidious";i:5873;s:15:"notfastidiously";i:5874;s:19:"notveryfastidiously";i:5875;s:11:"notfastuous";i:5876;s:15:"notveryfastuous";i:5877;s:6:"notfat";i:5878;s:10:"notveryfat";i:5879;s:8:"notfatal";i:5880;s:12:"notveryfatal";i:5881;s:13:"notfatalistic";i:5882;s:17:"notveryfatalistic";i:5883;s:17:"notfatalistically";i:5884;s:21:"notveryfatalistically";i:5885;s:10:"notfatally";i:5886;s:14:"notveryfatally";i:5887;s:10:"notfateful";i:5888;s:14:"notveryfateful";i:5889;s:12:"notfatefully";i:5890;s:16:"notveryfatefully";i:5891;s:13:"notfathomless";i:5892;s:17:"notveryfathomless";i:5893;s:10:"notfatigue";i:5894;s:14:"notveryfatigue";i:5895;s:8:"notfatty";i:5896;s:12:"notveryfatty";i:5897;s:10:"notfatuity";i:5898;s:14:"notveryfatuity";i:5899;s:10:"notfatuous";i:5900;s:14:"notveryfatuous";i:5901;s:12:"notfatuously";i:5902;s:16:"notveryfatuously";i:5903;s:8:"notfault";i:5904;s:12:"notveryfault";i:5905;s:9:"notfaulty";i:5906;s:13:"notveryfaulty";i:5907;s:12:"notfawningly";i:5908;s:16:"notveryfawningly";i:5909;s:7:"notfaze";i:5910;s:11:"notveryfaze";i:5911;s:12:"notfearfully";i:5912;s:16:"notveryfearfully";i:5913;s:8:"notfears";i:5914;s:12:"notveryfears";i:5915;s:11:"notfearsome";i:5916;s:15:"notveryfearsome";i:5917;s:11:"notfeckless";i:5918;s:15:"notveryfeckless";i:5919;s:9:"notfeeble";i:5920;s:13:"notveryfeeble";i:5921;s:11:"notfeeblely";i:5922;s:15:"notveryfeeblely";i:5923;s:15:"notfeebleminded";i:5924;s:19:"notveryfeebleminded";i:5925;s:8:"notfeign";i:5926;s:12:"notveryfeign";i:5927;s:8:"notfeint";i:5928;s:12:"notveryfeint";i:5929;s:7:"notfell";i:5930;s:11:"notveryfell";i:5931;s:8:"notfelon";i:5932;s:12:"notveryfelon";i:5933;s:12:"notfelonious";i:5934;s:16:"notveryfelonious";i:5935;s:12:"notferocious";i:5936;s:16:"notveryferocious";i:5937;s:14:"notferociously";i:5938;s:18:"notveryferociously";i:5939;s:11:"notferocity";i:5940;s:15:"notveryferocity";i:5941;s:11:"notfeverish";i:5942;s:15:"notveryfeverish";i:5943;s:8:"notfetid";i:5944;s:12:"notveryfetid";i:5945;s:8:"notfever";i:5946;s:12:"notveryfever";i:5947;s:9:"notfiasco";i:5948;s:13:"notveryfiasco";i:5949;s:7:"notfiat";i:5950;s:11:"notveryfiat";i:5951;s:6:"notfib";i:5952;s:10:"notveryfib";i:5953;s:9:"notfibber";i:5954;s:13:"notveryfibber";i:5955;s:9:"notfickle";i:5956;s:13:"notveryfickle";i:5957;s:10:"notfiction";i:5958;s:14:"notveryfiction";i:5959;s:12:"notfictional";i:5960;s:16:"notveryfictional";i:5961;s:13:"notfictitious";i:5962;s:17:"notveryfictitious";i:5963;s:9:"notfidget";i:5964;s:13:"notveryfidget";i:5965;s:10:"notfidgety";i:5966;s:14:"notveryfidgety";i:5967;s:8:"notfiend";i:5968;s:12:"notveryfiend";i:5969;s:11:"notfiendish";i:5970;s:15:"notveryfiendish";i:5971;s:9:"notfierce";i:5972;s:13:"notveryfierce";i:5973;s:8:"notfight";i:5974;s:12:"notveryfight";i:5975;s:13:"notfigurehead";i:5976;s:17:"notveryfigurehead";i:5977;s:8:"notfilth";i:5978;s:12:"notveryfilth";i:5979;s:9:"notfilthy";i:5980;s:13:"notveryfilthy";i:5981;s:10:"notfinagle";i:5982;s:14:"notveryfinagle";i:5983;s:11:"notfissures";i:5984;s:15:"notveryfissures";i:5985;s:7:"notfist";i:5986;s:11:"notveryfist";i:5987;s:14:"notflabbergast";i:5988;s:18:"notveryflabbergast";i:5989;s:16:"notflabbergasted";i:5990;s:20:"notveryflabbergasted";i:5991;s:11:"notflagging";i:5992;s:15:"notveryflagging";i:5993;s:11:"notflagrant";i:5994;s:15:"notveryflagrant";i:5995;s:13:"notflagrantly";i:5996;s:17:"notveryflagrantly";i:5997;s:7:"notflak";i:5998;s:11:"notveryflak";i:5999;s:8:"notflake";i:6000;s:12:"notveryflake";i:6001;s:9:"notflakey";i:6002;s:13:"notveryflakey";i:6003;s:8:"notflaky";i:6004;s:12:"notveryflaky";i:6005;s:8:"notflash";i:6006;s:12:"notveryflash";i:6007;s:9:"notflashy";i:6008;s:13:"notveryflashy";i:6009;s:11:"notflat-out";i:6010;s:15:"notveryflat-out";i:6011;s:9:"notflaunt";i:6012;s:13:"notveryflaunt";i:6013;s:7:"notflaw";i:6014;s:11:"notveryflaw";i:6015;s:8:"notflaws";i:6016;s:12:"notveryflaws";i:6017;s:8:"notfleer";i:6018;s:12:"notveryfleer";i:6019;s:11:"notfleeting";i:6020;s:15:"notveryfleeting";i:6021;s:10:"notflighty";i:6022;s:14:"notveryflighty";i:6023;s:11:"notflimflam";i:6024;s:15:"notveryflimflam";i:6025;s:9:"notflimsy";i:6026;s:13:"notveryflimsy";i:6027;s:8:"notflirt";i:6028;s:12:"notveryflirt";i:6029;s:9:"notflirty";i:6030;s:13:"notveryflirty";i:6031;s:10:"notfloored";i:6032;s:14:"notveryfloored";i:6033;s:11:"notflounder";i:6034;s:15:"notveryflounder";i:6035;s:14:"notfloundering";i:6036;s:18:"notveryfloundering";i:6037;s:8:"notflout";i:6038;s:12:"notveryflout";i:6039;s:10:"notfluster";i:6040;s:14:"notveryfluster";i:6041;s:6:"notfoe";i:6042;s:10:"notveryfoe";i:6043;s:7:"notfool";i:6044;s:11:"notveryfool";i:6045;s:12:"notfoolhardy";i:6046;s:16:"notveryfoolhardy";i:6047;s:10:"notfoolish";i:6048;s:14:"notveryfoolish";i:6049;s:12:"notfoolishly";i:6050;s:16:"notveryfoolishly";i:6051;s:14:"notfoolishness";i:6052;s:18:"notveryfoolishness";i:6053;s:9:"notforbid";i:6054;s:13:"notveryforbid";i:6055;s:12:"notforbidden";i:6056;s:16:"notveryforbidden";i:6057;s:13:"notforbidding";i:6058;s:17:"notveryforbidding";i:6059;s:8:"notforce";i:6060;s:12:"notveryforce";i:6061;s:11:"notforceful";i:6062;s:15:"notveryforceful";i:6063;s:13:"notforeboding";i:6064;s:17:"notveryforeboding";i:6065;s:15:"notforebodingly";i:6066;s:19:"notveryforebodingly";i:6067;s:10:"notforfeit";i:6068;s:14:"notveryforfeit";i:6069;s:9:"notforged";i:6070;s:13:"notveryforged";i:6071;s:9:"notforget";i:6072;s:13:"notveryforget";i:6073;s:14:"notforgetfully";i:6074;s:18:"notveryforgetfully";i:6075;s:16:"notforgetfulness";i:6076;s:20:"notveryforgetfulness";i:6077;s:10:"notforlorn";i:6078;s:14:"notveryforlorn";i:6079;s:12:"notforlornly";i:6080;s:16:"notveryforlornly";i:6081;s:13:"notformidable";i:6082;s:17:"notveryformidable";i:6083;s:10:"notforsake";i:6084;s:14:"notveryforsake";i:6085;s:11:"notforsaken";i:6086;s:15:"notveryforsaken";i:6087;s:11:"notforswear";i:6088;s:15:"notveryforswear";i:6089;s:7:"notfoul";i:6090;s:11:"notveryfoul";i:6091;s:9:"notfoully";i:6092;s:13:"notveryfoully";i:6093;s:11:"notfoulness";i:6094;s:15:"notveryfoulness";i:6095;s:12:"notfractious";i:6096;s:16:"notveryfractious";i:6097;s:14:"notfractiously";i:6098;s:18:"notveryfractiously";i:6099;s:11:"notfracture";i:6100;s:15:"notveryfracture";i:6101;s:13:"notfragmented";i:6102;s:17:"notveryfragmented";i:6103;s:8:"notfrail";i:6104;s:12:"notveryfrail";i:6105;s:10:"notfrantic";i:6106;s:14:"notveryfrantic";i:6107;s:14:"notfrantically";i:6108;s:18:"notveryfrantically";i:6109;s:12:"notfranticly";i:6110;s:16:"notveryfranticly";i:6111;s:13:"notfraternize";i:6112;s:17:"notveryfraternize";i:6113;s:8:"notfraud";i:6114;s:12:"notveryfraud";i:6115;s:13:"notfraudulent";i:6116;s:17:"notveryfraudulent";i:6117;s:10:"notfraught";i:6118;s:14:"notveryfraught";i:6119;s:8:"notfreak";i:6120;s:12:"notveryfreak";i:6121;s:11:"notfreakish";i:6122;s:15:"notveryfreakish";i:6123;s:13:"notfreakishly";i:6124;s:17:"notveryfreakishly";i:6125;s:10:"notfrazzle";i:6126;s:14:"notveryfrazzle";i:6127;s:11:"notfrazzled";i:6128;s:15:"notveryfrazzled";i:6129;s:11:"notfrenetic";i:6130;s:15:"notveryfrenetic";i:6131;s:15:"notfrenetically";i:6132;s:19:"notveryfrenetically";i:6133;s:11:"notfrenzied";i:6134;s:15:"notveryfrenzied";i:6135;s:9:"notfrenzy";i:6136;s:13:"notveryfrenzy";i:6137;s:7:"notfret";i:6138;s:11:"notveryfret";i:6139;s:10:"notfretful";i:6140;s:14:"notveryfretful";i:6141;s:11:"notfriction";i:6142;s:15:"notveryfriction";i:6143;s:12:"notfrictions";i:6144;s:16:"notveryfrictions";i:6145;s:10:"notfriggin";i:6146;s:14:"notveryfriggin";i:6147;s:9:"notfright";i:6148;s:13:"notveryfright";i:6149;s:11:"notfrighten";i:6150;s:15:"notveryfrighten";i:6151;s:14:"notfrightening";i:6152;s:18:"notveryfrightening";i:6153;s:16:"notfrighteningly";i:6154;s:20:"notveryfrighteningly";i:6155;s:12:"notfrightful";i:6156;s:16:"notveryfrightful";i:6157;s:14:"notfrightfully";i:6158;s:18:"notveryfrightfully";i:6159;s:12:"notfrivolous";i:6160;s:16:"notveryfrivolous";i:6161;s:8:"notfrown";i:6162;s:12:"notveryfrown";i:6163;s:9:"notfrozen";i:6164;s:13:"notveryfrozen";i:6165;s:12:"notfruitless";i:6166;s:16:"notveryfruitless";i:6167;s:14:"notfruitlessly";i:6168;s:18:"notveryfruitlessly";i:6169;s:9:"notfumble";i:6170;s:13:"notveryfumble";i:6171;s:12:"notfrustrate";i:6172;s:16:"notveryfrustrate";i:6173;s:14:"notfrustrating";i:6174;s:18:"notveryfrustrating";i:6175;s:16:"notfrustratingly";i:6176;s:20:"notveryfrustratingly";i:6177;s:14:"notfrustration";i:6178;s:18:"notveryfrustration";i:6179;s:8:"notfudge";i:6180;s:12:"notveryfudge";i:6181;s:11:"notfugitive";i:6182;s:15:"notveryfugitive";i:6183;s:13:"notfull-blown";i:6184;s:17:"notveryfull-blown";i:6185;s:12:"notfulminate";i:6186;s:16:"notveryfulminate";i:6187;s:7:"notfume";i:6188;s:11:"notveryfume";i:6189;s:17:"notfundamentalism";i:6190;s:21:"notveryfundamentalism";i:6191;s:12:"notfuriously";i:6192;s:16:"notveryfuriously";i:6193;s:8:"notfuror";i:6194;s:12:"notveryfuror";i:6195;s:7:"notfury";i:6196;s:11:"notveryfury";i:6197;s:7:"notfuss";i:6198;s:11:"notveryfuss";i:6199;s:12:"notfustigate";i:6200;s:16:"notveryfustigate";i:6201;s:8:"notfussy";i:6202;s:12:"notveryfussy";i:6203;s:8:"notfusty";i:6204;s:12:"notveryfusty";i:6205;s:9:"notfutile";i:6206;s:13:"notveryfutile";i:6207;s:11:"notfutilely";i:6208;s:15:"notveryfutilely";i:6209;s:11:"notfutility";i:6210;s:15:"notveryfutility";i:6211;s:8:"notfuzzy";i:6212;s:12:"notveryfuzzy";i:6213;s:9:"notgabble";i:6214;s:13:"notverygabble";i:6215;s:7:"notgaff";i:6216;s:11:"notverygaff";i:6217;s:8:"notgaffe";i:6218;s:12:"notverygaffe";i:6219;s:10:"notgainsay";i:6220;s:14:"notverygainsay";i:6221;s:12:"notgainsayer";i:6222;s:16:"notverygainsayer";i:6223;s:7:"notgaga";i:6224;s:11:"notverygaga";i:6225;s:9:"notgaggle";i:6226;s:13:"notverygaggle";i:6227;s:7:"notgall";i:6228;s:11:"notverygall";i:6229;s:10:"notgalling";i:6230;s:14:"notverygalling";i:6231;s:12:"notgallingly";i:6232;s:16:"notverygallingly";i:6233;s:9:"notgamble";i:6234;s:13:"notverygamble";i:6235;s:7:"notgame";i:6236;s:11:"notverygame";i:6237;s:7:"notgape";i:6238;s:11:"notverygape";i:6239;s:10:"notgarbage";i:6240;s:14:"notverygarbage";i:6241;s:9:"notgarish";i:6242;s:13:"notverygarish";i:6243;s:7:"notgasp";i:6244;s:11:"notverygasp";i:6245;s:9:"notgauche";i:6246;s:13:"notverygauche";i:6247;s:8:"notgaudy";i:6248;s:12:"notverygaudy";i:6249;s:7:"notgawk";i:6250;s:11:"notverygawk";i:6251;s:8:"notgawky";i:6252;s:12:"notverygawky";i:6253;s:9:"notgeezer";i:6254;s:13:"notverygeezer";i:6255;s:11:"notgenocide";i:6256;s:15:"notverygenocide";i:6257;s:11:"notget-rich";i:6258;s:15:"notveryget-rich";i:6259;s:10:"notghastly";i:6260;s:14:"notveryghastly";i:6261;s:9:"notghetto";i:6262;s:13:"notveryghetto";i:6263;s:9:"notgibber";i:6264;s:13:"notverygibber";i:6265;s:12:"notgibberish";i:6266;s:16:"notverygibberish";i:6267;s:7:"notgibe";i:6268;s:11:"notverygibe";i:6269;s:8:"notglare";i:6270;s:12:"notveryglare";i:6271;s:10:"notglaring";i:6272;s:14:"notveryglaring";i:6273;s:12:"notglaringly";i:6274;s:16:"notveryglaringly";i:6275;s:7:"notglib";i:6276;s:11:"notveryglib";i:6277;s:9:"notglibly";i:6278;s:13:"notveryglibly";i:6279;s:9:"notglitch";i:6280;s:13:"notveryglitch";i:6281;s:13:"notgloatingly";i:6282;s:17:"notverygloatingly";i:6283;s:8:"notgloom";i:6284;s:12:"notverygloom";i:6285;s:8:"notgloss";i:6286;s:12:"notverygloss";i:6287;s:9:"notglower";i:6288;s:13:"notveryglower";i:6289;s:7:"notglut";i:6290;s:11:"notveryglut";i:6291;s:10:"notgnawing";i:6292;s:14:"notverygnawing";i:6293;s:7:"notgoad";i:6294;s:11:"notverygoad";i:6295;s:10:"notgoading";i:6296;s:14:"notverygoading";i:6297;s:12:"notgod-awful";i:6298;s:16:"notverygod-awful";i:6299;s:9:"notgoddam";i:6300;s:13:"notverygoddam";i:6301;s:10:"notgoddamn";i:6302;s:14:"notverygoddamn";i:6303;s:7:"notgoof";i:6304;s:11:"notverygoof";i:6305;s:9:"notgossip";i:6306;s:13:"notverygossip";i:6307;s:12:"notgraceless";i:6308;s:16:"notverygraceless";i:6309;s:14:"notgracelessly";i:6310;s:18:"notverygracelessly";i:6311;s:8:"notgraft";i:6312;s:12:"notverygraft";i:6313;s:12:"notgrandiose";i:6314;s:16:"notverygrandiose";i:6315;s:10:"notgrapple";i:6316;s:14:"notverygrapple";i:6317;s:8:"notgrate";i:6318;s:12:"notverygrate";i:6319;s:10:"notgrating";i:6320;s:14:"notverygrating";i:6321;s:13:"notgratuitous";i:6322;s:17:"notverygratuitous";i:6323;s:15:"notgratuitously";i:6324;s:19:"notverygratuitously";i:6325;s:8:"notgrave";i:6326;s:12:"notverygrave";i:6327;s:10:"notgravely";i:6328;s:14:"notverygravely";i:6329;s:8:"notgreed";i:6330;s:12:"notverygreed";i:6331;s:9:"notgreedy";i:6332;s:13:"notverygreedy";i:6333;s:12:"notgrievance";i:6334;s:16:"notverygrievance";i:6335;s:13:"notgrievances";i:6336;s:17:"notverygrievances";i:6337;s:9:"notgrieve";i:6338;s:13:"notverygrieve";i:6339;s:11:"notgrieving";i:6340;s:15:"notverygrieving";i:6341;s:11:"notgrievous";i:6342;s:15:"notverygrievous";i:6343;s:13:"notgrievously";i:6344;s:17:"notverygrievously";i:6345;s:8:"notgrill";i:6346;s:12:"notverygrill";i:6347;s:10:"notgrimace";i:6348;s:14:"notverygrimace";i:6349;s:8:"notgrind";i:6350;s:12:"notverygrind";i:6351;s:8:"notgripe";i:6352;s:12:"notverygripe";i:6353;s:9:"notgrisly";i:6354;s:13:"notverygrisly";i:6355;s:9:"notgritty";i:6356;s:13:"notverygritty";i:6357;s:10:"notgrossly";i:6358;s:14:"notverygrossly";i:6359;s:9:"notgrouch";i:6360;s:13:"notverygrouch";i:6361;s:13:"notgroundless";i:6362;s:17:"notverygroundless";i:6363;s:9:"notgrouse";i:6364;s:13:"notverygrouse";i:6365;s:8:"notgrowl";i:6366;s:12:"notverygrowl";i:6367;s:9:"notgrudge";i:6368;s:13:"notverygrudge";i:6369;s:10:"notgrudges";i:6370;s:14:"notverygrudges";i:6371;s:11:"notgrudging";i:6372;s:15:"notverygrudging";i:6373;s:13:"notgrudgingly";i:6374;s:17:"notverygrudgingly";i:6375;s:11:"notgruesome";i:6376;s:15:"notverygruesome";i:6377;s:13:"notgruesomely";i:6378;s:17:"notverygruesomely";i:6379;s:8:"notgruff";i:6380;s:12:"notverygruff";i:6381;s:10:"notgrumble";i:6382;s:14:"notverygrumble";i:6383;s:8:"notguile";i:6384;s:12:"notveryguile";i:6385;s:8:"notguilt";i:6386;s:12:"notveryguilt";i:6387;s:11:"notguiltily";i:6388;s:15:"notveryguiltily";i:6389;s:11:"notgullible";i:6390;s:15:"notverygullible";i:6391;s:10:"nothaggard";i:6392;s:14:"notveryhaggard";i:6393;s:9:"nothaggle";i:6394;s:13:"notveryhaggle";i:6395;s:14:"nothalfhearted";i:6396;s:18:"notveryhalfhearted";i:6397;s:16:"nothalfheartedly";i:6398;s:20:"notveryhalfheartedly";i:6399;s:14:"nothallucinate";i:6400;s:18:"notveryhallucinate";i:6401;s:16:"nothallucination";i:6402;s:20:"notveryhallucination";i:6403;s:9:"nothamper";i:6404;s:13:"notveryhamper";i:6405;s:12:"nothamstring";i:6406;s:16:"notveryhamstring";i:6407;s:12:"nothamstrung";i:6408;s:16:"notveryhamstrung";i:6409;s:14:"nothandicapped";i:6410;s:18:"notveryhandicapped";i:6411;s:10:"nothapless";i:6412;s:14:"notveryhapless";i:6413;s:12:"nothaphazard";i:6414;s:16:"notveryhaphazard";i:6415;s:11:"notharangue";i:6416;s:15:"notveryharangue";i:6417;s:9:"notharass";i:6418;s:13:"notveryharass";i:6419;s:13:"notharassment";i:6420;s:17:"notveryharassment";i:6421;s:12:"notharboring";i:6422;s:16:"notveryharboring";i:6423;s:10:"notharbors";i:6424;s:14:"notveryharbors";i:6425;s:7:"nothard";i:6426;s:11:"notveryhard";i:6427;s:11:"nothard-hit";i:6428;s:15:"notveryhard-hit";i:6429;s:12:"nothard-line";i:6430;s:16:"notveryhard-line";i:6431;s:13:"nothard-liner";i:6432;s:17:"notveryhard-liner";i:6433;s:11:"nothardball";i:6434;s:15:"notveryhardball";i:6435;s:9:"notharden";i:6436;s:13:"notveryharden";i:6437;s:11:"nothardened";i:6438;s:15:"notveryhardened";i:6439;s:13:"nothardheaded";i:6440;s:17:"notveryhardheaded";i:6441;s:14:"nothardhearted";i:6442;s:18:"notveryhardhearted";i:6443;s:12:"nothardliner";i:6444;s:16:"notveryhardliner";i:6445;s:13:"nothardliners";i:6446;s:17:"notveryhardliners";i:6447;s:11:"nothardship";i:6448;s:15:"notveryhardship";i:6449;s:12:"nothardships";i:6450;s:16:"notveryhardships";i:6451;s:7:"notharm";i:6452;s:11:"notveryharm";i:6453;s:10:"notharmful";i:6454;s:14:"notveryharmful";i:6455;s:8:"notharms";i:6456;s:12:"notveryharms";i:6457;s:8:"notharpy";i:6458;s:12:"notveryharpy";i:6459;s:11:"notharridan";i:6460;s:15:"notveryharridan";i:6461;s:10:"notharried";i:6462;s:14:"notveryharried";i:6463;s:9:"notharrow";i:6464;s:13:"notveryharrow";i:6465;s:8:"notharsh";i:6466;s:12:"notveryharsh";i:6467;s:10:"notharshly";i:6468;s:14:"notveryharshly";i:6469;s:9:"nothassle";i:6470;s:13:"notveryhassle";i:6471;s:8:"nothaste";i:6472;s:12:"notveryhaste";i:6473;s:8:"nothasty";i:6474;s:12:"notveryhasty";i:6475;s:8:"nothater";i:6476;s:12:"notveryhater";i:6477;s:10:"nothateful";i:6478;s:14:"notveryhateful";i:6479;s:12:"nothatefully";i:6480;s:16:"notveryhatefully";i:6481;s:14:"nothatefulness";i:6482;s:18:"notveryhatefulness";i:6483;s:12:"nothaughtily";i:6484;s:16:"notveryhaughtily";i:6485;s:10:"nothaughty";i:6486;s:14:"notveryhaughty";i:6487;s:9:"nothatred";i:6488;s:13:"notveryhatred";i:6489;s:8:"nothaunt";i:6490;s:12:"notveryhaunt";i:6491;s:11:"nothaunting";i:6492;s:15:"notveryhaunting";i:6493;s:8:"nothavoc";i:6494;s:12:"notveryhavoc";i:6495;s:10:"nothawkish";i:6496;s:14:"notveryhawkish";i:6497;s:9:"nothazard";i:6498;s:13:"notveryhazard";i:6499;s:12:"nothazardous";i:6500;s:16:"notveryhazardous";i:6501;s:7:"nothazy";i:6502;s:11:"notveryhazy";i:6503;s:11:"notheadache";i:6504;s:15:"notveryheadache";i:6505;s:12:"notheadaches";i:6506;s:16:"notveryheadaches";i:6507;s:13:"notheartbreak";i:6508;s:17:"notveryheartbreak";i:6509;s:15:"notheartbreaker";i:6510;s:19:"notveryheartbreaker";i:6511;s:16:"notheartbreaking";i:6512;s:20:"notveryheartbreaking";i:6513;s:18:"notheartbreakingly";i:6514;s:22:"notveryheartbreakingly";i:6515;s:12:"notheartless";i:6516;s:16:"notveryheartless";i:6517;s:15:"notheartrending";i:6518;s:19:"notveryheartrending";i:6519;s:10:"notheathen";i:6520;s:14:"notveryheathen";i:6521;s:10:"notheavily";i:6522;s:14:"notveryheavily";i:6523;s:15:"notheavy-handed";i:6524;s:19:"notveryheavy-handed";i:6525;s:15:"notheavyhearted";i:6526;s:19:"notveryheavyhearted";i:6527;s:7:"notheck";i:6528;s:11:"notveryheck";i:6529;s:9:"notheckle";i:6530;s:13:"notveryheckle";i:6531;s:9:"nothectic";i:6532;s:13:"notveryhectic";i:6533;s:8:"nothedge";i:6534;s:12:"notveryhedge";i:6535;s:13:"nothedonistic";i:6536;s:17:"notveryhedonistic";i:6537;s:11:"notheedless";i:6538;s:15:"notveryheedless";i:6539;s:13:"nothegemonism";i:6540;s:17:"notveryhegemonism";i:6541;s:15:"nothegemonistic";i:6542;s:19:"notveryhegemonistic";i:6543;s:11:"nothegemony";i:6544;s:15:"notveryhegemony";i:6545;s:10:"notheinous";i:6546;s:14:"notveryheinous";i:6547;s:7:"nothell";i:6548;s:11:"notveryhell";i:6549;s:12:"nothell-bent";i:6550;s:16:"notveryhell-bent";i:6551;s:10:"nothellion";i:6552;s:14:"notveryhellion";i:6553;s:11:"nothelpless";i:6554;s:15:"notveryhelpless";i:6555;s:13:"nothelplessly";i:6556;s:17:"notveryhelplessly";i:6557;s:15:"nothelplessness";i:6558;s:19:"notveryhelplessness";i:6559;s:9:"notheresy";i:6560;s:13:"notveryheresy";i:6561;s:10:"notheretic";i:6562;s:14:"notveryheretic";i:6563;s:12:"notheretical";i:6564;s:16:"notveryheretical";i:6565;s:11:"nothesitant";i:6566;s:15:"notveryhesitant";i:6567;s:10:"nothideous";i:6568;s:14:"notveryhideous";i:6569;s:12:"nothideously";i:6570;s:16:"notveryhideously";i:6571;s:14:"nothideousness";i:6572;s:18:"notveryhideousness";i:6573;s:9:"nothinder";i:6574;s:13:"notveryhinder";i:6575;s:12:"nothindrance";i:6576;s:16:"notveryhindrance";i:6577;s:8:"nothoard";i:6578;s:12:"notveryhoard";i:6579;s:7:"nothoax";i:6580;s:11:"notveryhoax";i:6581;s:9:"nothobble";i:6582;s:13:"notveryhobble";i:6583;s:7:"nothole";i:6584;s:11:"notveryhole";i:6585;s:9:"nothollow";i:6586;s:13:"notveryhollow";i:6587;s:11:"nothoodwink";i:6588;s:15:"notveryhoodwink";i:6589;s:11:"nothopeless";i:6590;s:15:"notveryhopeless";i:6591;s:13:"nothopelessly";i:6592;s:17:"notveryhopelessly";i:6593;s:15:"nothopelessness";i:6594;s:19:"notveryhopelessness";i:6595;s:8:"nothorde";i:6596;s:12:"notveryhorde";i:6597;s:13:"nothorrendous";i:6598;s:17:"notveryhorrendous";i:6599;s:15:"nothorrendously";i:6600;s:19:"notveryhorrendously";i:6601;s:11:"nothorrible";i:6602;s:15:"notveryhorrible";i:6603;s:11:"nothorribly";i:6604;s:15:"notveryhorribly";i:6605;s:9:"nothorrid";i:6606;s:13:"notveryhorrid";i:6607;s:11:"nothorrific";i:6608;s:15:"notveryhorrific";i:6609;s:15:"nothorrifically";i:6610;s:19:"notveryhorrifically";i:6611;s:10:"nothorrify";i:6612;s:14:"notveryhorrify";i:6613;s:13:"nothorrifying";i:6614;s:17:"notveryhorrifying";i:6615;s:15:"nothorrifyingly";i:6616;s:19:"notveryhorrifyingly";i:6617;s:9:"nothorror";i:6618;s:13:"notveryhorror";i:6619;s:10:"nothorrors";i:6620;s:14:"notveryhorrors";i:6621;s:10:"nothostage";i:6622;s:14:"notveryhostage";i:6623;s:10:"nothostile";i:6624;s:14:"notveryhostile";i:6625;s:14:"nothostilities";i:6626;s:18:"notveryhostilities";i:6627;s:12:"nothostility";i:6628;s:16:"notveryhostility";i:6629;s:10:"nothothead";i:6630;s:14:"notveryhothead";i:6631;s:12:"nothotheaded";i:6632;s:16:"notveryhotheaded";i:6633;s:10:"nothotbeds";i:6634;s:14:"notveryhotbeds";i:6635;s:11:"nothothouse";i:6636;s:15:"notveryhothouse";i:6637;s:9:"nothubris";i:6638;s:13:"notveryhubris";i:6639;s:11:"nothuckster";i:6640;s:15:"notveryhuckster";i:6641;s:11:"nothumbling";i:6642;s:15:"notveryhumbling";i:6643;s:12:"nothumiliate";i:6644;s:16:"notveryhumiliate";i:6645;s:14:"nothumiliating";i:6646;s:18:"notveryhumiliating";i:6647;s:14:"nothumiliation";i:6648;s:18:"notveryhumiliation";i:6649;s:9:"nothunger";i:6650;s:13:"notveryhunger";i:6651;s:9:"nothungry";i:6652;s:13:"notveryhungry";i:6653;s:7:"nothurt";i:6654;s:11:"notveryhurt";i:6655;s:10:"nothurtful";i:6656;s:14:"notveryhurtful";i:6657;s:10:"nothustler";i:6658;s:14:"notveryhustler";i:6659;s:12:"nothypocrisy";i:6660;s:16:"notveryhypocrisy";i:6661;s:12:"nothypocrite";i:6662;s:16:"notveryhypocrite";i:6663;s:13:"nothypocrites";i:6664;s:17:"notveryhypocrites";i:6665;s:15:"nothypocritical";i:6666;s:19:"notveryhypocritical";i:6667;s:17:"nothypocritically";i:6668;s:21:"notveryhypocritically";i:6669;s:11:"nothysteria";i:6670;s:15:"notveryhysteria";i:6671;s:11:"nothysteric";i:6672;s:15:"notveryhysteric";i:6673;s:13:"nothysterical";i:6674;s:17:"notveryhysterical";i:6675;s:15:"nothysterically";i:6676;s:19:"notveryhysterically";i:6677;s:12:"nothysterics";i:6678;s:16:"notveryhysterics";i:6679;s:6:"noticy";i:6680;s:10:"notveryicy";i:6681;s:11:"notidiocies";i:6682;s:15:"notveryidiocies";i:6683;s:9:"notidiocy";i:6684;s:13:"notveryidiocy";i:6685;s:8:"notidiot";i:6686;s:12:"notveryidiot";i:6687;s:14:"notidiotically";i:6688;s:18:"notveryidiotically";i:6689;s:9:"notidiots";i:6690;s:13:"notveryidiots";i:6691;s:7:"notidle";i:6692;s:11:"notveryidle";i:6693;s:10:"notignoble";i:6694;s:14:"notveryignoble";i:6695;s:14:"notignominious";i:6696;s:18:"notveryignominious";i:6697;s:16:"notignominiously";i:6698;s:20:"notveryignominiously";i:6699;s:11:"notignominy";i:6700;s:15:"notveryignominy";i:6701;s:9:"notignore";i:6702;s:13:"notveryignore";i:6703;s:12:"notignorance";i:6704;s:16:"notveryignorance";i:6705;s:14:"notill-advised";i:6706;s:18:"notveryill-advised";i:6707;s:16:"notill-conceived";i:6708;s:20:"notveryill-conceived";i:6709;s:12:"notill-fated";i:6710;s:16:"notveryill-fated";i:6711;s:14:"notill-favored";i:6712;s:18:"notveryill-favored";i:6713;s:15:"notill-mannered";i:6714;s:19:"notveryill-mannered";i:6715;s:14:"notill-natured";i:6716;s:18:"notveryill-natured";i:6717;s:13:"notill-sorted";i:6718;s:17:"notveryill-sorted";i:6719;s:15:"notill-tempered";i:6720;s:19:"notveryill-tempered";i:6721;s:14:"notill-treated";i:6722;s:18:"notveryill-treated";i:6723;s:16:"notill-treatment";i:6724;s:20:"notveryill-treatment";i:6725;s:12:"notill-usage";i:6726;s:16:"notveryill-usage";i:6727;s:11:"notill-used";i:6728;s:15:"notveryill-used";i:6729;s:10:"notillegal";i:6730;s:14:"notveryillegal";i:6731;s:12:"notillegally";i:6732;s:16:"notveryillegally";i:6733;s:15:"notillegitimate";i:6734;s:19:"notveryillegitimate";i:6735;s:10:"notillicit";i:6736;s:14:"notveryillicit";i:6737;s:11:"notilliquid";i:6738;s:15:"notveryilliquid";i:6739;s:13:"notilliterate";i:6740;s:17:"notveryilliterate";i:6741;s:10:"notillness";i:6742;s:14:"notveryillness";i:6743;s:10:"notillogic";i:6744;s:14:"notveryillogic";i:6745;s:12:"notillogical";i:6746;s:16:"notveryillogical";i:6747;s:14:"notillogically";i:6748;s:18:"notveryillogically";i:6749;s:11:"notillusion";i:6750;s:15:"notveryillusion";i:6751;s:12:"notillusions";i:6752;s:16:"notveryillusions";i:6753;s:11:"notillusory";i:6754;s:15:"notveryillusory";i:6755;s:12:"notimaginary";i:6756;s:16:"notveryimaginary";i:6757;s:12:"notimbalance";i:6758;s:16:"notveryimbalance";i:6759;s:11:"notimbecile";i:6760;s:15:"notveryimbecile";i:6761;s:12:"notimbroglio";i:6762;s:16:"notveryimbroglio";i:6763;s:13:"notimmaterial";i:6764;s:17:"notveryimmaterial";i:6765;s:11:"notimmature";i:6766;s:15:"notveryimmature";i:6767;s:12:"notimminence";i:6768;s:16:"notveryimminence";i:6769;s:11:"notimminent";i:6770;s:15:"notveryimminent";i:6771;s:13:"notimminently";i:6772;s:17:"notveryimminently";i:6773;s:14:"notimmobilized";i:6774;s:18:"notveryimmobilized";i:6775;s:13:"notimmoderate";i:6776;s:17:"notveryimmoderate";i:6777;s:15:"notimmoderately";i:6778;s:19:"notveryimmoderately";i:6779;s:11:"notimmodest";i:6780;s:15:"notveryimmodest";i:6781;s:10:"notimmoral";i:6782;s:14:"notveryimmoral";i:6783;s:13:"notimmorality";i:6784;s:17:"notveryimmorality";i:6785;s:12:"notimmorally";i:6786;s:16:"notveryimmorally";i:6787;s:12:"notimmovable";i:6788;s:16:"notveryimmovable";i:6789;s:9:"notimpair";i:6790;s:13:"notveryimpair";i:6791;s:11:"notimpaired";i:6792;s:15:"notveryimpaired";i:6793;s:10:"notimpasse";i:6794;s:14:"notveryimpasse";i:6795;s:12:"notimpassive";i:6796;s:16:"notveryimpassive";i:6797;s:13:"notimpatience";i:6798;s:17:"notveryimpatience";i:6799;s:12:"notimpatient";i:6800;s:16:"notveryimpatient";i:6801;s:14:"notimpatiently";i:6802;s:18:"notveryimpatiently";i:6803;s:10:"notimpeach";i:6804;s:14:"notveryimpeach";i:6805;s:9:"notimpede";i:6806;s:13:"notveryimpede";i:6807;s:12:"notimpedance";i:6808;s:16:"notveryimpedance";i:6809;s:13:"notimpediment";i:6810;s:17:"notveryimpediment";i:6811;s:12:"notimpending";i:6812;s:16:"notveryimpending";i:6813;s:13:"notimpenitent";i:6814;s:17:"notveryimpenitent";i:6815;s:12:"notimperfect";i:6816;s:16:"notveryimperfect";i:6817;s:14:"notimperfectly";i:6818;s:18:"notveryimperfectly";i:6819;s:14:"notimperialist";i:6820;s:18:"notveryimperialist";i:6821;s:10:"notimperil";i:6822;s:14:"notveryimperil";i:6823;s:12:"notimperious";i:6824;s:16:"notveryimperious";i:6825;s:14:"notimperiously";i:6826;s:18:"notveryimperiously";i:6827;s:16:"notimpermissible";i:6828;s:20:"notveryimpermissible";i:6829;s:13:"notimpersonal";i:6830;s:17:"notveryimpersonal";i:6831;s:14:"notimpertinent";i:6832;s:18:"notveryimpertinent";i:6833;s:12:"notimpetuous";i:6834;s:16:"notveryimpetuous";i:6835;s:14:"notimpetuously";i:6836;s:18:"notveryimpetuously";i:6837;s:10:"notimpiety";i:6838;s:14:"notveryimpiety";i:6839;s:10:"notimpinge";i:6840;s:14:"notveryimpinge";i:6841;s:10:"notimpious";i:6842;s:14:"notveryimpious";i:6843;s:13:"notimplacable";i:6844;s:17:"notveryimplacable";i:6845;s:14:"notimplausible";i:6846;s:18:"notveryimplausible";i:6847;s:14:"notimplausibly";i:6848;s:18:"notveryimplausibly";i:6849;s:12:"notimplicate";i:6850;s:16:"notveryimplicate";i:6851;s:14:"notimplication";i:6852;s:18:"notveryimplication";i:6853;s:10:"notimplode";i:6854;s:14:"notveryimplode";i:6855;s:10:"notimplore";i:6856;s:14:"notveryimplore";i:6857;s:12:"notimploring";i:6858;s:16:"notveryimploring";i:6859;s:14:"notimploringly";i:6860;s:18:"notveryimploringly";i:6861;s:11:"notimpolite";i:6862;s:15:"notveryimpolite";i:6863;s:13:"notimpolitely";i:6864;s:17:"notveryimpolitely";i:6865;s:12:"notimpolitic";i:6866;s:16:"notveryimpolitic";i:6867;s:14:"notimportunate";i:6868;s:18:"notveryimportunate";i:6869;s:12:"notimportune";i:6870;s:16:"notveryimportune";i:6871;s:9:"notimpose";i:6872;s:13:"notveryimpose";i:6873;s:11:"notimposers";i:6874;s:15:"notveryimposers";i:6875;s:11:"notimposing";i:6876;s:15:"notveryimposing";i:6877;s:13:"notimposition";i:6878;s:17:"notveryimposition";i:6879;s:13:"notimpossible";i:6880;s:17:"notveryimpossible";i:6881;s:15:"notimpossiblity";i:6882;s:19:"notveryimpossiblity";i:6883;s:13:"notimpossibly";i:6884;s:17:"notveryimpossibly";i:6885;s:13:"notimpoverish";i:6886;s:17:"notveryimpoverish";i:6887;s:15:"notimpoverished";i:6888;s:19:"notveryimpoverished";i:6889;s:14:"notimpractical";i:6890;s:18:"notveryimpractical";i:6891;s:12:"notimprecate";i:6892;s:16:"notveryimprecate";i:6893;s:12:"notimprecise";i:6894;s:16:"notveryimprecise";i:6895;s:14:"notimprecisely";i:6896;s:18:"notveryimprecisely";i:6897;s:14:"notimprecision";i:6898;s:18:"notveryimprecision";i:6899;s:11:"notimprison";i:6900;s:15:"notveryimprison";i:6901;s:15:"notimprisonment";i:6902;s:19:"notveryimprisonment";i:6903;s:16:"notimprobability";i:6904;s:20:"notveryimprobability";i:6905;s:13:"notimprobable";i:6906;s:17:"notveryimprobable";i:6907;s:13:"notimprobably";i:6908;s:17:"notveryimprobably";i:6909;s:11:"notimproper";i:6910;s:15:"notveryimproper";i:6911;s:13:"notimproperly";i:6912;s:17:"notveryimproperly";i:6913;s:14:"notimpropriety";i:6914;s:18:"notveryimpropriety";i:6915;s:13:"notimprudence";i:6916;s:17:"notveryimprudence";i:6917;s:12:"notimprudent";i:6918;s:16:"notveryimprudent";i:6919;s:12:"notimpudence";i:6920;s:16:"notveryimpudence";i:6921;s:11:"notimpudent";i:6922;s:15:"notveryimpudent";i:6923;s:13:"notimpudently";i:6924;s:17:"notveryimpudently";i:6925;s:9:"notimpugn";i:6926;s:13:"notveryimpugn";i:6927;s:14:"notimpulsively";i:6928;s:18:"notveryimpulsively";i:6929;s:11:"notimpunity";i:6930;s:15:"notveryimpunity";i:6931;s:9:"notimpure";i:6932;s:13:"notveryimpure";i:6933;s:11:"notimpurity";i:6934;s:15:"notveryimpurity";i:6935;s:12:"notinability";i:6936;s:16:"notveryinability";i:6937;s:15:"notinaccessible";i:6938;s:19:"notveryinaccessible";i:6939;s:13:"notinaccuracy";i:6940;s:17:"notveryinaccuracy";i:6941;s:15:"notinaccuracies";i:6942;s:19:"notveryinaccuracies";i:6943;s:13:"notinaccurate";i:6944;s:17:"notveryinaccurate";i:6945;s:15:"notinaccurately";i:6946;s:19:"notveryinaccurately";i:6947;s:11:"notinaction";i:6948;s:15:"notveryinaction";i:6949;s:13:"notinadequacy";i:6950;s:17:"notveryinadequacy";i:6951;s:15:"notinadequately";i:6952;s:19:"notveryinadequately";i:6953;s:13:"notinadverent";i:6954;s:17:"notveryinadverent";i:6955;s:15:"notinadverently";i:6956;s:19:"notveryinadverently";i:6957;s:14:"notinadvisable";i:6958;s:18:"notveryinadvisable";i:6959;s:14:"notinadvisably";i:6960;s:18:"notveryinadvisably";i:6961;s:8:"notinane";i:6962;s:12:"notveryinane";i:6963;s:10:"notinanely";i:6964;s:14:"notveryinanely";i:6965;s:16:"notinappropriate";i:6966;s:20:"notveryinappropriate";i:6967;s:18:"notinappropriately";i:6968;s:22:"notveryinappropriately";i:6969;s:8:"notinapt";i:6970;s:12:"notveryinapt";i:6971;s:13:"notinaptitude";i:6972;s:17:"notveryinaptitude";i:6973;s:15:"notinarticulate";i:6974;s:19:"notveryinarticulate";i:6975;s:14:"notinattentive";i:6976;s:18:"notveryinattentive";i:6977;s:12:"notincapably";i:6978;s:16:"notveryincapably";i:6979;s:13:"notincautious";i:6980;s:17:"notveryincautious";i:6981;s:13:"notincendiary";i:6982;s:17:"notveryincendiary";i:6983;s:10:"notincense";i:6984;s:14:"notveryincense";i:6985;s:12:"notincessant";i:6986;s:16:"notveryincessant";i:6987;s:14:"notincessantly";i:6988;s:18:"notveryincessantly";i:6989;s:9:"notincite";i:6990;s:13:"notveryincite";i:6991;s:13:"notincitement";i:6992;s:17:"notveryincitement";i:6993;s:13:"notincivility";i:6994;s:17:"notveryincivility";i:6995;s:12:"notinclement";i:6996;s:16:"notveryinclement";i:6997;s:14:"notincognizant";i:6998;s:18:"notveryincognizant";i:6999;s:14:"notincoherence";i:7000;s:18:"notveryincoherence";i:7001;s:13:"notincoherent";i:7002;s:17:"notveryincoherent";i:7003;s:15:"notincoherently";i:7004;s:19:"notveryincoherently";i:7005;s:17:"notincommensurate";i:7006;s:21:"notveryincommensurate";i:7007;s:15:"notincomparable";i:7008;s:19:"notveryincomparable";i:7009;s:15:"notincomparably";i:7010;s:19:"notveryincomparably";i:7011;s:18:"notincompatibility";i:7012;s:22:"notveryincompatibility";i:7013;s:15:"notincompetence";i:7014;s:19:"notveryincompetence";i:7015;s:16:"notincompetently";i:7016;s:20:"notveryincompetently";i:7017;s:14:"notincompliant";i:7018;s:18:"notveryincompliant";i:7019;s:19:"notincomprehensible";i:7020;s:23:"notveryincomprehensible";i:7021;s:18:"notincomprehension";i:7022;s:22:"notveryincomprehension";i:7023;s:16:"notinconceivable";i:7024;s:20:"notveryinconceivable";i:7025;s:16:"notinconceivably";i:7026;s:20:"notveryinconceivably";i:7027;s:15:"notinconclusive";i:7028;s:19:"notveryinconclusive";i:7029;s:14:"notincongruous";i:7030;s:18:"notveryincongruous";i:7031;s:16:"notincongruously";i:7032;s:20:"notveryincongruously";i:7033;s:15:"notinconsequent";i:7034;s:19:"notveryinconsequent";i:7035;s:17:"notinconsequently";i:7036;s:21:"notveryinconsequently";i:7037;s:18:"notinconsequential";i:7038;s:22:"notveryinconsequential";i:7039;s:20:"notinconsequentially";i:7040;s:24:"notveryinconsequentially";i:7041;s:16:"notinconsiderate";i:7042;s:20:"notveryinconsiderate";i:7043;s:18:"notinconsiderately";i:7044;s:22:"notveryinconsiderately";i:7045;s:16:"notinconsistence";i:7046;s:20:"notveryinconsistence";i:7047;s:18:"notinconsistencies";i:7048;s:22:"notveryinconsistencies";i:7049;s:16:"notinconsistency";i:7050;s:20:"notveryinconsistency";i:7051;s:15:"notinconsistent";i:7052;s:19:"notveryinconsistent";i:7053;s:15:"notinconsolable";i:7054;s:19:"notveryinconsolable";i:7055;s:15:"notinconsolably";i:7056;s:19:"notveryinconsolably";i:7057;s:13:"notinconstant";i:7058;s:17:"notveryinconstant";i:7059;s:16:"notinconvenience";i:7060;s:20:"notveryinconvenience";i:7061;s:15:"notinconvenient";i:7062;s:19:"notveryinconvenient";i:7063;s:17:"notinconveniently";i:7064;s:21:"notveryinconveniently";i:7065;s:14:"notincorrectly";i:7066;s:18:"notveryincorrectly";i:7067;s:15:"notincorrigible";i:7068;s:19:"notveryincorrigible";i:7069;s:15:"notincorrigibly";i:7070;s:19:"notveryincorrigibly";i:7071;s:14:"notincredulous";i:7072;s:18:"notveryincredulous";i:7073;s:16:"notincredulously";i:7074;s:20:"notveryincredulously";i:7075;s:12:"notinculcate";i:7076;s:16:"notveryinculcate";i:7077;s:12:"notindecency";i:7078;s:16:"notveryindecency";i:7079;s:11:"notindecent";i:7080;s:15:"notveryindecent";i:7081;s:13:"notindecently";i:7082;s:17:"notveryindecently";i:7083;s:13:"notindecision";i:7084;s:17:"notveryindecision";i:7085;s:15:"notindecisively";i:7086;s:19:"notveryindecisively";i:7087;s:12:"notindecorum";i:7088;s:16:"notveryindecorum";i:7089;s:15:"notindefensible";i:7090;s:19:"notveryindefensible";i:7091;s:13:"notindefinite";i:7092;s:17:"notveryindefinite";i:7093;s:15:"notindefinitely";i:7094;s:19:"notveryindefinitely";i:7095;s:13:"notindelicate";i:7096;s:17:"notveryindelicate";i:7097;s:17:"notindeterminable";i:7098;s:21:"notveryindeterminable";i:7099;s:17:"notindeterminably";i:7100;s:21:"notveryindeterminably";i:7101;s:16:"notindeterminate";i:7102;s:20:"notveryindeterminate";i:7103;s:15:"notindifference";i:7104;s:19:"notveryindifference";i:7105;s:11:"notindigent";i:7106;s:15:"notveryindigent";i:7107;s:12:"notindignant";i:7108;s:16:"notveryindignant";i:7109;s:14:"notindignantly";i:7110;s:18:"notveryindignantly";i:7111;s:14:"notindignation";i:7112;s:18:"notveryindignation";i:7113;s:12:"notindignity";i:7114;s:16:"notveryindignity";i:7115;s:16:"notindiscernible";i:7116;s:20:"notveryindiscernible";i:7117;s:13:"notindiscreet";i:7118;s:17:"notveryindiscreet";i:7119;s:15:"notindiscreetly";i:7120;s:19:"notveryindiscreetly";i:7121;s:15:"notindiscretion";i:7122;s:19:"notveryindiscretion";i:7123;s:17:"notindiscriminate";i:7124;s:21:"notveryindiscriminate";i:7125;s:19:"notindiscriminating";i:7126;s:23:"notveryindiscriminating";i:7127;s:19:"notindiscriminately";i:7128;s:23:"notveryindiscriminately";i:7129;s:13:"notindisposed";i:7130;s:17:"notveryindisposed";i:7131;s:13:"notindistinct";i:7132;s:17:"notveryindistinct";i:7133;s:16:"notindistinctive";i:7134;s:20:"notveryindistinctive";i:7135;s:15:"notindoctrinate";i:7136;s:19:"notveryindoctrinate";i:7137;s:17:"notindoctrination";i:7138;s:21:"notveryindoctrination";i:7139;s:11:"notindolent";i:7140;s:15:"notveryindolent";i:7141;s:10:"notindulge";i:7142;s:14:"notveryindulge";i:7143;s:16:"notineffectively";i:7144;s:20:"notveryineffectively";i:7145;s:18:"notineffectiveness";i:7146;s:22:"notveryineffectiveness";i:7147;s:14:"notineffectual";i:7148;s:18:"notveryineffectual";i:7149;s:16:"notineffectually";i:7150;s:20:"notveryineffectually";i:7151;s:18:"notineffectualness";i:7152;s:22:"notveryineffectualness";i:7153;s:16:"notinefficacious";i:7154;s:20:"notveryinefficacious";i:7155;s:13:"notinefficacy";i:7156;s:17:"notveryinefficacy";i:7157;s:15:"notinefficiency";i:7158;s:19:"notveryinefficiency";i:7159;s:16:"notinefficiently";i:7160;s:20:"notveryinefficiently";i:7161;s:13:"notineligible";i:7162;s:17:"notveryineligible";i:7163;s:13:"notinelegance";i:7164;s:17:"notveryinelegance";i:7165;s:12:"notinelegant";i:7166;s:16:"notveryinelegant";i:7167;s:13:"notineloquent";i:7168;s:17:"notveryineloquent";i:7169;s:15:"notineloquently";i:7170;s:19:"notveryineloquently";i:7171;s:8:"notinept";i:7172;s:12:"notveryinept";i:7173;s:13:"notineptitude";i:7174;s:17:"notveryineptitude";i:7175;s:10:"notineptly";i:7176;s:14:"notveryineptly";i:7177;s:15:"notinequalities";i:7178;s:19:"notveryinequalities";i:7179;s:13:"notinequality";i:7180;s:17:"notveryinequality";i:7181;s:14:"notinequitable";i:7182;s:18:"notveryinequitable";i:7183;s:14:"notinequitably";i:7184;s:18:"notveryinequitably";i:7185;s:13:"notinequities";i:7186;s:17:"notveryinequities";i:7187;s:10:"notinertia";i:7188;s:14:"notveryinertia";i:7189;s:14:"notinescapable";i:7190;s:18:"notveryinescapable";i:7191;s:14:"notinescapably";i:7192;s:18:"notveryinescapably";i:7193;s:14:"notinessential";i:7194;s:18:"notveryinessential";i:7195;s:13:"notinevitable";i:7196;s:17:"notveryinevitable";i:7197;s:13:"notinevitably";i:7198;s:17:"notveryinevitably";i:7199;s:10:"notinexact";i:7200;s:14:"notveryinexact";i:7201;s:14:"notinexcusable";i:7202;s:18:"notveryinexcusable";i:7203;s:14:"notinexcusably";i:7204;s:18:"notveryinexcusably";i:7205;s:13:"notinexorable";i:7206;s:17:"notveryinexorable";i:7207;s:13:"notinexorably";i:7208;s:17:"notveryinexorably";i:7209;s:15:"notinexperience";i:7210;s:19:"notveryinexperience";i:7211;s:16:"notinexperienced";i:7212;s:20:"notveryinexperienced";i:7213;s:11:"notinexpert";i:7214;s:15:"notveryinexpert";i:7215;s:13:"notinexpertly";i:7216;s:17:"notveryinexpertly";i:7217;s:13:"notinexpiable";i:7218;s:17:"notveryinexpiable";i:7219;s:16:"notinexplainable";i:7220;s:20:"notveryinexplainable";i:7221;s:15:"notinexplicable";i:7222;s:19:"notveryinexplicable";i:7223;s:15:"notinextricable";i:7224;s:19:"notveryinextricable";i:7225;s:15:"notinextricably";i:7226;s:19:"notveryinextricably";i:7227;s:11:"notinfamous";i:7228;s:15:"notveryinfamous";i:7229;s:13:"notinfamously";i:7230;s:17:"notveryinfamously";i:7231;s:9:"notinfamy";i:7232;s:13:"notveryinfamy";i:7233;s:13:"notinfatuated";i:7234;s:17:"notveryinfatuated";i:7235;s:11:"notinfected";i:7236;s:15:"notveryinfected";i:7237;s:14:"notinferiority";i:7238;s:18:"notveryinferiority";i:7239;s:11:"notinfernal";i:7240;s:15:"notveryinfernal";i:7241;s:9:"notinfest";i:7242;s:13:"notveryinfest";i:7243;s:11:"notinfested";i:7244;s:15:"notveryinfested";i:7245;s:10:"notinfidel";i:7246;s:14:"notveryinfidel";i:7247;s:11:"notinfidels";i:7248;s:15:"notveryinfidels";i:7249;s:14:"notinfiltrator";i:7250;s:18:"notveryinfiltrator";i:7251;s:15:"notinfiltrators";i:7252;s:19:"notveryinfiltrators";i:7253;s:9:"notinfirm";i:7254;s:13:"notveryinfirm";i:7255;s:10:"notinflame";i:7256;s:14:"notveryinflame";i:7257;s:15:"notinflammatory";i:7258;s:19:"notveryinflammatory";i:7259;s:11:"notinflated";i:7260;s:15:"notveryinflated";i:7261;s:15:"notinflationary";i:7262;s:19:"notveryinflationary";i:7263;s:13:"notinflexible";i:7264;s:17:"notveryinflexible";i:7265;s:10:"notinflict";i:7266;s:14:"notveryinflict";i:7267;s:13:"notinfraction";i:7268;s:17:"notveryinfraction";i:7269;s:11:"notinfringe";i:7270;s:15:"notveryinfringe";i:7271;s:15:"notinfringement";i:7272;s:19:"notveryinfringement";i:7273;s:16:"notinfringements";i:7274;s:20:"notveryinfringements";i:7275;s:12:"notinfuriate";i:7276;s:16:"notveryinfuriate";i:7277;s:14:"notinfuriating";i:7278;s:18:"notveryinfuriating";i:7279;s:16:"notinfuriatingly";i:7280;s:20:"notveryinfuriatingly";i:7281;s:13:"notinglorious";i:7282;s:17:"notveryinglorious";i:7283;s:10:"notingrate";i:7284;s:14:"notveryingrate";i:7285;s:14:"notingratitude";i:7286;s:18:"notveryingratitude";i:7287;s:10:"notinhibit";i:7288;s:14:"notveryinhibit";i:7289;s:13:"notinhibition";i:7290;s:17:"notveryinhibition";i:7291;s:15:"notinhospitable";i:7292;s:19:"notveryinhospitable";i:7293;s:16:"notinhospitality";i:7294;s:20:"notveryinhospitality";i:7295;s:10:"notinhuman";i:7296;s:14:"notveryinhuman";i:7297;s:13:"notinhumanity";i:7298;s:17:"notveryinhumanity";i:7299;s:11:"notinimical";i:7300;s:15:"notveryinimical";i:7301;s:13:"notinimically";i:7302;s:17:"notveryinimically";i:7303;s:13:"notiniquitous";i:7304;s:17:"notveryiniquitous";i:7305;s:11:"notiniquity";i:7306;s:15:"notveryiniquity";i:7307;s:14:"notinjudicious";i:7308;s:18:"notveryinjudicious";i:7309;s:9:"notinjure";i:7310;s:13:"notveryinjure";i:7311;s:12:"notinjurious";i:7312;s:16:"notveryinjurious";i:7313;s:9:"notinjury";i:7314;s:13:"notveryinjury";i:7315;s:12:"notinjustice";i:7316;s:16:"notveryinjustice";i:7317;s:13:"notinjustices";i:7318;s:17:"notveryinjustices";i:7319;s:11:"notinnuendo";i:7320;s:15:"notveryinnuendo";i:7321;s:14:"notinopportune";i:7322;s:18:"notveryinopportune";i:7323;s:13:"notinordinate";i:7324;s:17:"notveryinordinate";i:7325;s:15:"notinordinately";i:7326;s:19:"notveryinordinately";i:7327;s:11:"notinsanely";i:7328;s:15:"notveryinsanely";i:7329;s:11:"notinsanity";i:7330;s:15:"notveryinsanity";i:7331;s:13:"notinsatiable";i:7332;s:17:"notveryinsatiable";i:7333;s:13:"notinsecurity";i:7334;s:17:"notveryinsecurity";i:7335;s:13:"notinsensible";i:7336;s:17:"notveryinsensible";i:7337;s:14:"notinsensitive";i:7338;s:18:"notveryinsensitive";i:7339;s:16:"notinsensitively";i:7340;s:20:"notveryinsensitively";i:7341;s:16:"notinsensitivity";i:7342;s:20:"notveryinsensitivity";i:7343;s:12:"notinsidious";i:7344;s:16:"notveryinsidious";i:7345;s:14:"notinsidiously";i:7346;s:18:"notveryinsidiously";i:7347;s:17:"notinsignificance";i:7348;s:21:"notveryinsignificance";i:7349;s:18:"notinsignificantly";i:7350;s:22:"notveryinsignificantly";i:7351;s:14:"notinsincerely";i:7352;s:18:"notveryinsincerely";i:7353;s:14:"notinsincerity";i:7354;s:18:"notveryinsincerity";i:7355;s:12:"notinsinuate";i:7356;s:16:"notveryinsinuate";i:7357;s:14:"notinsinuating";i:7358;s:18:"notveryinsinuating";i:7359;s:14:"notinsinuation";i:7360;s:18:"notveryinsinuation";i:7361;s:13:"notinsociable";i:7362;s:17:"notveryinsociable";i:7363;s:12:"notisolation";i:7364;s:16:"notveryisolation";i:7365;s:12:"notinsolence";i:7366;s:16:"notveryinsolence";i:7367;s:11:"notinsolent";i:7368;s:15:"notveryinsolent";i:7369;s:13:"notinsolently";i:7370;s:17:"notveryinsolently";i:7371;s:12:"notinsolvent";i:7372;s:16:"notveryinsolvent";i:7373;s:14:"notinsouciance";i:7374;s:18:"notveryinsouciance";i:7375;s:14:"notinstability";i:7376;s:18:"notveryinstability";i:7377;s:11:"notinstable";i:7378;s:15:"notveryinstable";i:7379;s:12:"notinstigate";i:7380;s:16:"notveryinstigate";i:7381;s:13:"notinstigator";i:7382;s:17:"notveryinstigator";i:7383;s:14:"notinstigators";i:7384;s:18:"notveryinstigators";i:7385;s:16:"notinsubordinate";i:7386;s:20:"notveryinsubordinate";i:7387;s:16:"notinsubstantial";i:7388;s:20:"notveryinsubstantial";i:7389;s:18:"notinsubstantially";i:7390;s:22:"notveryinsubstantially";i:7391;s:15:"notinsufferable";i:7392;s:19:"notveryinsufferable";i:7393;s:15:"notinsufferably";i:7394;s:19:"notveryinsufferably";i:7395;s:16:"notinsufficiency";i:7396;s:20:"notveryinsufficiency";i:7397;s:17:"notinsufficiently";i:7398;s:21:"notveryinsufficiently";i:7399;s:10:"notinsular";i:7400;s:14:"notveryinsular";i:7401;s:9:"notinsult";i:7402;s:13:"notveryinsult";i:7403;s:12:"notinsulting";i:7404;s:16:"notveryinsulting";i:7405;s:14:"notinsultingly";i:7406;s:18:"notveryinsultingly";i:7407;s:16:"notinsupportable";i:7408;s:20:"notveryinsupportable";i:7409;s:16:"notinsupportably";i:7410;s:20:"notveryinsupportably";i:7411;s:17:"notinsurmountable";i:7412;s:21:"notveryinsurmountable";i:7413;s:17:"notinsurmountably";i:7414;s:21:"notveryinsurmountably";i:7415;s:15:"notinsurrection";i:7416;s:19:"notveryinsurrection";i:7417;s:12:"notinterfere";i:7418;s:16:"notveryinterfere";i:7419;s:15:"notinterference";i:7420;s:19:"notveryinterference";i:7421;s:15:"notintermittent";i:7422;s:19:"notveryintermittent";i:7423;s:12:"notinterrupt";i:7424;s:16:"notveryinterrupt";i:7425;s:15:"notinterruption";i:7426;s:19:"notveryinterruption";i:7427;s:13:"notintimidate";i:7428;s:17:"notveryintimidate";i:7429;s:15:"notintimidating";i:7430;s:19:"notveryintimidating";i:7431;s:17:"notintimidatingly";i:7432;s:21:"notveryintimidatingly";i:7433;s:15:"notintimidation";i:7434;s:19:"notveryintimidation";i:7435;s:14:"notintolerable";i:7436;s:18:"notveryintolerable";i:7437;s:16:"notintolerablely";i:7438;s:20:"notveryintolerablely";i:7439;s:14:"notintolerance";i:7440;s:18:"notveryintolerance";i:7441;s:13:"notintolerant";i:7442;s:17:"notveryintolerant";i:7443;s:13:"notintoxicate";i:7444;s:17:"notveryintoxicate";i:7445;s:14:"notintractable";i:7446;s:18:"notveryintractable";i:7447;s:16:"notintransigence";i:7448;s:20:"notveryintransigence";i:7449;s:15:"notintransigent";i:7450;s:19:"notveryintransigent";i:7451;s:10:"notintrude";i:7452;s:14:"notveryintrude";i:7453;s:12:"notintrusion";i:7454;s:16:"notveryintrusion";i:7455;s:12:"notintrusive";i:7456;s:16:"notveryintrusive";i:7457;s:11:"notinundate";i:7458;s:15:"notveryinundate";i:7459;s:12:"notinundated";i:7460;s:16:"notveryinundated";i:7461;s:10:"notinvader";i:7462;s:14:"notveryinvader";i:7463;s:10:"notinvalid";i:7464;s:14:"notveryinvalid";i:7465;s:13:"notinvalidate";i:7466;s:17:"notveryinvalidate";i:7467;s:13:"notinvalidity";i:7468;s:17:"notveryinvalidity";i:7469;s:11:"notinvasive";i:7470;s:15:"notveryinvasive";i:7471;s:12:"notinvective";i:7472;s:16:"notveryinvective";i:7473;s:11:"notinveigle";i:7474;s:15:"notveryinveigle";i:7475;s:12:"notinvidious";i:7476;s:16:"notveryinvidious";i:7477;s:14:"notinvidiously";i:7478;s:18:"notveryinvidiously";i:7479;s:16:"notinvidiousness";i:7480;s:20:"notveryinvidiousness";i:7481;s:16:"notinvoluntarily";i:7482;s:20:"notveryinvoluntarily";i:7483;s:14:"notinvoluntary";i:7484;s:18:"notveryinvoluntary";i:7485;s:8:"notirate";i:7486;s:12:"notveryirate";i:7487;s:10:"notirately";i:7488;s:14:"notveryirately";i:7489;s:6:"notire";i:7490;s:10:"notveryire";i:7491;s:6:"notirk";i:7492;s:10:"notveryirk";i:7493;s:10:"notirksome";i:7494;s:14:"notveryirksome";i:7495;s:9:"notironic";i:7496;s:13:"notveryironic";i:7497;s:10:"notironies";i:7498;s:14:"notveryironies";i:7499;s:8:"notirony";i:7500;s:12:"notveryirony";i:7501;s:16:"notirrationality";i:7502;s:20:"notveryirrationality";i:7503;s:15:"notirrationally";i:7504;s:19:"notveryirrationally";i:7505;s:17:"notirreconcilable";i:7506;s:21:"notveryirreconcilable";i:7507;s:15:"notirredeemable";i:7508;s:19:"notveryirredeemable";i:7509;s:15:"notirredeemably";i:7510;s:19:"notveryirredeemably";i:7511;s:15:"notirreformable";i:7512;s:19:"notveryirreformable";i:7513;s:12:"notirregular";i:7514;s:16:"notveryirregular";i:7515;s:15:"notirregularity";i:7516;s:19:"notveryirregularity";i:7517;s:14:"notirrelevance";i:7518;s:18:"notveryirrelevance";i:7519;s:13:"notirrelevant";i:7520;s:17:"notveryirrelevant";i:7521;s:14:"notirreparable";i:7522;s:18:"notveryirreparable";i:7523;s:15:"notirreplacible";i:7524;s:19:"notveryirreplacible";i:7525;s:16:"notirrepressible";i:7526;s:20:"notveryirrepressible";i:7527;s:13:"notirresolute";i:7528;s:17:"notveryirresolute";i:7529;s:15:"notirresolvable";i:7530;s:19:"notveryirresolvable";i:7531;s:16:"notirresponsible";i:7532;s:20:"notveryirresponsible";i:7533;s:16:"notirresponsibly";i:7534;s:20:"notveryirresponsibly";i:7535;s:16:"notirretrievable";i:7536;s:20:"notveryirretrievable";i:7537;s:14:"notirreverence";i:7538;s:18:"notveryirreverence";i:7539;s:13:"notirreverent";i:7540;s:17:"notveryirreverent";i:7541;s:15:"notirreverently";i:7542;s:19:"notveryirreverently";i:7543;s:15:"notirreversible";i:7544;s:19:"notveryirreversible";i:7545;s:12:"notirritably";i:7546;s:16:"notveryirritably";i:7547;s:11:"notirritant";i:7548;s:15:"notveryirritant";i:7549;s:11:"notirritate";i:7550;s:15:"notveryirritate";i:7551;s:13:"notirritating";i:7552;s:17:"notveryirritating";i:7553;s:13:"notirritation";i:7554;s:17:"notveryirritation";i:7555;s:10:"notisolate";i:7556;s:14:"notveryisolate";i:7557;s:7:"notitch";i:7558;s:11:"notveryitch";i:7559;s:9:"notjabber";i:7560;s:13:"notveryjabber";i:7561;s:6:"notjam";i:7562;s:10:"notveryjam";i:7563;s:6:"notjar";i:7564;s:10:"notveryjar";i:7565;s:12:"notjaundiced";i:7566;s:16:"notveryjaundiced";i:7567;s:12:"notjealously";i:7568;s:16:"notveryjealously";i:7569;s:14:"notjealousness";i:7570;s:18:"notveryjealousness";i:7571;s:11:"notjealousy";i:7572;s:15:"notveryjealousy";i:7573;s:7:"notjeer";i:7574;s:11:"notveryjeer";i:7575;s:10:"notjeering";i:7576;s:14:"notveryjeering";i:7577;s:12:"notjeeringly";i:7578;s:16:"notveryjeeringly";i:7579;s:8:"notjeers";i:7580;s:12:"notveryjeers";i:7581;s:13:"notjeopardize";i:7582;s:17:"notveryjeopardize";i:7583;s:11:"notjeopardy";i:7584;s:15:"notveryjeopardy";i:7585;s:7:"notjerk";i:7586;s:11:"notveryjerk";i:7587;s:10:"notjittery";i:7588;s:14:"notveryjittery";i:7589;s:10:"notjobless";i:7590;s:14:"notveryjobless";i:7591;s:8:"notjoker";i:7592;s:12:"notveryjoker";i:7593;s:7:"notjolt";i:7594;s:11:"notveryjolt";i:7595;s:8:"notjumpy";i:7596;s:12:"notveryjumpy";i:7597;s:7:"notjunk";i:7598;s:11:"notveryjunk";i:7599;s:8:"notjunky";i:7600;s:12:"notveryjunky";i:7601;s:11:"notjuvenile";i:7602;s:15:"notveryjuvenile";i:7603;s:8:"notkaput";i:7604;s:12:"notverykaput";i:7605;s:7:"notkick";i:7606;s:11:"notverykick";i:7607;s:7:"notkill";i:7608;s:11:"notverykill";i:7609;s:9:"notkiller";i:7610;s:13:"notverykiller";i:7611;s:10:"notkilljoy";i:7612;s:14:"notverykilljoy";i:7613;s:8:"notknave";i:7614;s:12:"notveryknave";i:7615;s:8:"notknife";i:7616;s:12:"notveryknife";i:7617;s:8:"notknock";i:7618;s:12:"notveryknock";i:7619;s:7:"notkook";i:7620;s:11:"notverykook";i:7621;s:8:"notkooky";i:7622;s:12:"notverykooky";i:7623;s:7:"notlack";i:7624;s:11:"notverylack";i:7625;s:16:"notlackadaisical";i:7626;s:20:"notverylackadaisical";i:7627;s:9:"notlackey";i:7628;s:13:"notverylackey";i:7629;s:10:"notlackeys";i:7630;s:14:"notverylackeys";i:7631;s:10:"notlacking";i:7632;s:14:"notverylacking";i:7633;s:13:"notlackluster";i:7634;s:17:"notverylackluster";i:7635;s:10:"notlaconic";i:7636;s:14:"notverylaconic";i:7637;s:6:"notlag";i:7638;s:10:"notverylag";i:7639;s:10:"notlambast";i:7640;s:14:"notverylambast";i:7641;s:11:"notlambaste";i:7642;s:15:"notverylambaste";i:7643;s:7:"notlame";i:7644;s:11:"notverylame";i:7645;s:12:"notlame-duck";i:7646;s:16:"notverylame-duck";i:7647;s:9:"notlament";i:7648;s:13:"notverylament";i:7649;s:13:"notlamentable";i:7650;s:17:"notverylamentable";i:7651;s:13:"notlamentably";i:7652;s:17:"notverylamentably";i:7653;s:10:"notlanguid";i:7654;s:14:"notverylanguid";i:7655;s:11:"notlanguish";i:7656;s:15:"notverylanguish";i:7657;s:8:"notlanky";i:7658;s:12:"notverylanky";i:7659;s:10:"notlanguor";i:7660;s:14:"notverylanguor";i:7661;s:13:"notlanguorous";i:7662;s:17:"notverylanguorous";i:7663;s:15:"notlanguorously";i:7664;s:19:"notverylanguorously";i:7665;s:8:"notlapse";i:7666;s:12:"notverylapse";i:7667;s:13:"notlascivious";i:7668;s:17:"notverylascivious";i:7669;s:13:"notlast-ditch";i:7670;s:17:"notverylast-ditch";i:7671;s:8:"notlaugh";i:7672;s:12:"notverylaugh";i:7673;s:12:"notlaughably";i:7674;s:16:"notverylaughably";i:7675;s:16:"notlaughingstock";i:7676;s:20:"notverylaughingstock";i:7677;s:11:"notlaughter";i:7678;s:15:"notverylaughter";i:7679;s:13:"notlawbreaker";i:7680;s:17:"notverylawbreaker";i:7681;s:14:"notlawbreaking";i:7682;s:18:"notverylawbreaking";i:7683;s:10:"notlawless";i:7684;s:14:"notverylawless";i:7685;s:14:"notlawlessness";i:7686;s:18:"notverylawlessness";i:7687;s:6:"notlax";i:7688;s:10:"notverylax";i:7689;s:7:"notleak";i:7690;s:11:"notveryleak";i:7691;s:10:"notleakage";i:7692;s:14:"notveryleakage";i:7693;s:8:"notleaky";i:7694;s:12:"notveryleaky";i:7695;s:7:"notlech";i:7696;s:11:"notverylech";i:7697;s:9:"notlecher";i:7698;s:13:"notverylecher";i:7699;s:12:"notlecherous";i:7700;s:16:"notverylecherous";i:7701;s:10:"notlechery";i:7702;s:14:"notverylechery";i:7703;s:10:"notlecture";i:7704;s:14:"notverylecture";i:7705;s:8:"notleech";i:7706;s:12:"notveryleech";i:7707;s:7:"notleer";i:7708;s:11:"notveryleer";i:7709;s:8:"notleery";i:7710;s:12:"notveryleery";i:7711;s:15:"notleft-leaning";i:7712;s:19:"notveryleft-leaning";i:7713;s:17:"notless-developed";i:7714;s:21:"notveryless-developed";i:7715;s:9:"notlessen";i:7716;s:13:"notverylessen";i:7717;s:9:"notlesser";i:7718;s:13:"notverylesser";i:7719;s:15:"notlesser-known";i:7720;s:19:"notverylesser-known";i:7721;s:8:"notletch";i:7722;s:12:"notveryletch";i:7723;s:9:"notlethal";i:7724;s:13:"notverylethal";i:7725;s:12:"notlethargic";i:7726;s:16:"notverylethargic";i:7727;s:11:"notlethargy";i:7728;s:15:"notverylethargy";i:7729;s:7:"notlewd";i:7730;s:11:"notverylewd";i:7731;s:9:"notlewdly";i:7732;s:13:"notverylewdly";i:7733;s:11:"notlewdness";i:7734;s:15:"notverylewdness";i:7735;s:9:"notliable";i:7736;s:13:"notveryliable";i:7737;s:12:"notliability";i:7738;s:16:"notveryliability";i:7739;s:7:"notliar";i:7740;s:11:"notveryliar";i:7741;s:8:"notliars";i:7742;s:12:"notveryliars";i:7743;s:13:"notlicentious";i:7744;s:17:"notverylicentious";i:7745;s:15:"notlicentiously";i:7746;s:19:"notverylicentiously";i:7747;s:17:"notlicentiousness";i:7748;s:21:"notverylicentiousness";i:7749;s:6:"notlie";i:7750;s:10:"notverylie";i:7751;s:7:"notlier";i:7752;s:11:"notverylier";i:7753;s:7:"notlies";i:7754;s:11:"notverylies";i:7755;s:19:"notlife-threatening";i:7756;s:23:"notverylife-threatening";i:7757;s:11:"notlifeless";i:7758;s:15:"notverylifeless";i:7759;s:8:"notlimit";i:7760;s:12:"notverylimit";i:7761;s:13:"notlimitation";i:7762;s:17:"notverylimitation";i:7763;s:7:"notlimp";i:7764;s:11:"notverylimp";i:7765;s:11:"notlistless";i:7766;s:15:"notverylistless";i:7767;s:12:"notlitigious";i:7768;s:16:"notverylitigious";i:7769;s:15:"notlittle-known";i:7770;s:19:"notverylittle-known";i:7771;s:8:"notlivid";i:7772;s:12:"notverylivid";i:7773;s:10:"notlividly";i:7774;s:14:"notverylividly";i:7775;s:8:"notloath";i:7776;s:12:"notveryloath";i:7777;s:9:"notloathe";i:7778;s:13:"notveryloathe";i:7779;s:11:"notloathing";i:7780;s:15:"notveryloathing";i:7781;s:10:"notloathly";i:7782;s:14:"notveryloathly";i:7783;s:12:"notloathsome";i:7784;s:16:"notveryloathsome";i:7785;s:14:"notloathsomely";i:7786;s:18:"notveryloathsomely";i:7787;s:7:"notlone";i:7788;s:11:"notverylone";i:7789;s:13:"notloneliness";i:7790;s:17:"notveryloneliness";i:7791;s:7:"notlong";i:7792;s:11:"notverylong";i:7793;s:12:"notlongingly";i:7794;s:16:"notverylongingly";i:7795;s:11:"notloophole";i:7796;s:15:"notveryloophole";i:7797;s:12:"notloopholes";i:7798;s:16:"notveryloopholes";i:7799;s:7:"notloot";i:7800;s:11:"notveryloot";i:7801;s:7:"notlorn";i:7802;s:11:"notverylorn";i:7803;s:9:"notlosing";i:7804;s:13:"notverylosing";i:7805;s:7:"notlose";i:7806;s:11:"notverylose";i:7807;s:8:"notloser";i:7808;s:12:"notveryloser";i:7809;s:7:"notloss";i:7810;s:11:"notveryloss";i:7811;s:11:"notlovelorn";i:7812;s:15:"notverylovelorn";i:7813;s:12:"notlow-rated";i:7814;s:16:"notverylow-rated";i:7815;s:8:"notlowly";i:7816;s:12:"notverylowly";i:7817;s:12:"notludicrous";i:7818;s:16:"notveryludicrous";i:7819;s:14:"notludicrously";i:7820;s:18:"notveryludicrously";i:7821;s:13:"notlugubrious";i:7822;s:17:"notverylugubrious";i:7823;s:11:"notlukewarm";i:7824;s:15:"notverylukewarm";i:7825;s:7:"notlull";i:7826;s:11:"notverylull";i:7827;s:10:"notlunatic";i:7828;s:14:"notverylunatic";i:7829;s:13:"notlunaticism";i:7830;s:17:"notverylunaticism";i:7831;s:8:"notlurch";i:7832;s:12:"notverylurch";i:7833;s:7:"notlure";i:7834;s:11:"notverylure";i:7835;s:8:"notlurid";i:7836;s:12:"notverylurid";i:7837;s:7:"notlurk";i:7838;s:11:"notverylurk";i:7839;s:10:"notlurking";i:7840;s:14:"notverylurking";i:7841;s:8:"notlying";i:7842;s:12:"notverylying";i:7843;s:10:"notmacabre";i:7844;s:14:"notverymacabre";i:7845;s:9:"notmadden";i:7846;s:13:"notverymadden";i:7847;s:12:"notmaddening";i:7848;s:16:"notverymaddening";i:7849;s:14:"notmaddeningly";i:7850;s:18:"notverymaddeningly";i:7851;s:9:"notmadder";i:7852;s:13:"notverymadder";i:7853;s:8:"notmadly";i:7854;s:12:"notverymadly";i:7855;s:9:"notmadman";i:7856;s:13:"notverymadman";i:7857;s:10:"notmadness";i:7858;s:14:"notverymadness";i:7859;s:14:"notmaladjusted";i:7860;s:18:"notverymaladjusted";i:7861;s:16:"notmaladjustment";i:7862;s:20:"notverymaladjustment";i:7863;s:9:"notmalady";i:7864;s:13:"notverymalady";i:7865;s:10:"notmalaise";i:7866;s:14:"notverymalaise";i:7867;s:13:"notmalcontent";i:7868;s:17:"notverymalcontent";i:7869;s:15:"notmalcontented";i:7870;s:19:"notverymalcontented";i:7871;s:11:"notmaledict";i:7872;s:15:"notverymaledict";i:7873;s:14:"notmalevolence";i:7874;s:18:"notverymalevolence";i:7875;s:13:"notmalevolent";i:7876;s:17:"notverymalevolent";i:7877;s:15:"notmalevolently";i:7878;s:19:"notverymalevolently";i:7879;s:9:"notmalice";i:7880;s:13:"notverymalice";i:7881;s:12:"notmalicious";i:7882;s:16:"notverymalicious";i:7883;s:14:"notmaliciously";i:7884;s:18:"notverymaliciously";i:7885;s:16:"notmaliciousness";i:7886;s:20:"notverymaliciousness";i:7887;s:9:"notmalign";i:7888;s:13:"notverymalign";i:7889;s:12:"notmalignant";i:7890;s:16:"notverymalignant";i:7891;s:13:"notmalodorous";i:7892;s:17:"notverymalodorous";i:7893;s:15:"notmaltreatment";i:7894;s:19:"notverymaltreatment";i:7895;s:11:"notmaneuver";i:7896;s:15:"notverymaneuver";i:7897;s:9:"notmangle";i:7898;s:13:"notverymangle";i:7899;s:8:"notmania";i:7900;s:12:"notverymania";i:7901;s:9:"notmaniac";i:7902;s:13:"notverymaniac";i:7903;s:11:"notmaniacal";i:7904;s:15:"notverymaniacal";i:7905;s:8:"notmanic";i:7906;s:12:"notverymanic";i:7907;s:13:"notmanipulate";i:7908;s:17:"notverymanipulate";i:7909;s:15:"notmanipulation";i:7910;s:19:"notverymanipulation";i:7911;s:15:"notmanipulative";i:7912;s:19:"notverymanipulative";i:7913;s:15:"notmanipulators";i:7914;s:19:"notverymanipulators";i:7915;s:6:"notmar";i:7916;s:10:"notverymar";i:7917;s:11:"notmarginal";i:7918;s:15:"notverymarginal";i:7919;s:13:"notmarginally";i:7920;s:17:"notverymarginally";i:7921;s:12:"notmartyrdom";i:7922;s:16:"notverymartyrdom";i:7923;s:20:"notmartyrdom-seeking";i:7924;s:24:"notverymartyrdom-seeking";i:7925;s:11:"notmassacre";i:7926;s:15:"notverymassacre";i:7927;s:12:"notmassacres";i:7928;s:16:"notverymassacres";i:7929;s:11:"notmaverick";i:7930;s:15:"notverymaverick";i:7931;s:10:"notmawkish";i:7932;s:14:"notverymawkish";i:7933;s:12:"notmawkishly";i:7934;s:16:"notverymawkishly";i:7935;s:14:"notmawkishness";i:7936;s:18:"notverymawkishness";i:7937;s:19:"notmaxi-devaluation";i:7938;s:23:"notverymaxi-devaluation";i:7939;s:9:"notmeager";i:7940;s:13:"notverymeager";i:7941;s:14:"notmeaningless";i:7942;s:18:"notverymeaningless";i:7943;s:11:"notmeanness";i:7944;s:15:"notverymeanness";i:7945;s:9:"notmeddle";i:7946;s:13:"notverymeddle";i:7947;s:13:"notmeddlesome";i:7948;s:17:"notverymeddlesome";i:7949;s:13:"notmediocrity";i:7950;s:17:"notverymediocrity";i:7951;s:13:"notmelancholy";i:7952;s:17:"notverymelancholy";i:7953;s:15:"notmelodramatic";i:7954;s:19:"notverymelodramatic";i:7955;s:19:"notmelodramatically";i:7956;s:23:"notverymelodramatically";i:7957;s:9:"notmenace";i:7958;s:13:"notverymenace";i:7959;s:11:"notmenacing";i:7960;s:15:"notverymenacing";i:7961;s:13:"notmenacingly";i:7962;s:17:"notverymenacingly";i:7963;s:13:"notmendacious";i:7964;s:17:"notverymendacious";i:7965;s:12:"notmendacity";i:7966;s:16:"notverymendacity";i:7967;s:9:"notmenial";i:7968;s:13:"notverymenial";i:7969;s:12:"notmerciless";i:7970;s:16:"notverymerciless";i:7971;s:14:"notmercilessly";i:7972;s:18:"notverymercilessly";i:7973;s:7:"notmere";i:7974;s:11:"notverymere";i:7975;s:7:"notmess";i:7976;s:11:"notverymess";i:7977;s:9:"notmidget";i:7978;s:13:"notverymidget";i:7979;s:7:"notmiff";i:7980;s:11:"notverymiff";i:7981;s:12:"notmilitancy";i:7982;s:16:"notverymilitancy";i:7983;s:7:"notmind";i:7984;s:11:"notverymind";i:7985;s:11:"notmindless";i:7986;s:15:"notverymindless";i:7987;s:13:"notmindlessly";i:7988;s:17:"notverymindlessly";i:7989;s:9:"notmirage";i:7990;s:13:"notverymirage";i:7991;s:7:"notmire";i:7992;s:11:"notverymire";i:7993;s:15:"notmisapprehend";i:7994;s:19:"notverymisapprehend";i:7995;s:14:"notmisbecoming";i:7996;s:18:"notverymisbecoming";i:7997;s:12:"notmisbecome";i:7998;s:16:"notverymisbecome";i:7999;s:14:"notmisbegotten";i:8000;s:18:"notverymisbegotten";i:8001;s:12:"notmisbehave";i:8002;s:16:"notverymisbehave";i:8003;s:14:"notmisbehavior";i:8004;s:18:"notverymisbehavior";i:8005;s:15:"notmiscalculate";i:8006;s:19:"notverymiscalculate";i:8007;s:17:"notmiscalculation";i:8008;s:21:"notverymiscalculation";i:8009;s:11:"notmischief";i:8010;s:15:"notverymischief";i:8011;s:14:"notmischievous";i:8012;s:18:"notverymischievous";i:8013;s:16:"notmischievously";i:8014;s:20:"notverymischievously";i:8015;s:16:"notmisconception";i:8016;s:20:"notverymisconception";i:8017;s:17:"notmisconceptions";i:8018;s:21:"notverymisconceptions";i:8019;s:12:"notmiscreant";i:8020;s:16:"notverymiscreant";i:8021;s:13:"notmiscreants";i:8022;s:17:"notverymiscreants";i:8023;s:15:"notmisdirection";i:8024;s:19:"notverymisdirection";i:8025;s:8:"notmiser";i:8026;s:12:"notverymiser";i:8027;s:10:"notmiserly";i:8028;s:14:"notverymiserly";i:8029;s:16:"notmiserableness";i:8030;s:20:"notverymiserableness";i:8031;s:12:"notmiserably";i:8032;s:16:"notverymiserably";i:8033;s:11:"notmiseries";i:8034;s:15:"notverymiseries";i:8035;s:9:"notmisery";i:8036;s:13:"notverymisery";i:8037;s:9:"notmisfit";i:8038;s:13:"notverymisfit";i:8039;s:13:"notmisfortune";i:8040;s:17:"notverymisfortune";i:8041;s:12:"notmisgiving";i:8042;s:16:"notverymisgiving";i:8043;s:13:"notmisgivings";i:8044;s:17:"notverymisgivings";i:8045;s:14:"notmisguidance";i:8046;s:18:"notverymisguidance";i:8047;s:11:"notmisguide";i:8048;s:15:"notverymisguide";i:8049;s:12:"notmisguided";i:8050;s:16:"notverymisguided";i:8051;s:12:"notmishandle";i:8052;s:16:"notverymishandle";i:8053;s:9:"notmishap";i:8054;s:13:"notverymishap";i:8055;s:12:"notmisinform";i:8056;s:16:"notverymisinform";i:8057;s:14:"notmisinformed";i:8058;s:18:"notverymisinformed";i:8059;s:15:"notmisinterpret";i:8060;s:19:"notverymisinterpret";i:8061;s:11:"notmisjudge";i:8062;s:15:"notverymisjudge";i:8063;s:14:"notmisjudgment";i:8064;s:18:"notverymisjudgment";i:8065;s:10:"notmislead";i:8066;s:14:"notverymislead";i:8067;s:13:"notmisleading";i:8068;s:17:"notverymisleading";i:8069;s:15:"notmisleadingly";i:8070;s:19:"notverymisleadingly";i:8071;s:10:"notmislike";i:8072;s:14:"notverymislike";i:8073;s:12:"notmismanage";i:8074;s:16:"notverymismanage";i:8075;s:10:"notmisread";i:8076;s:14:"notverymisread";i:8077;s:13:"notmisreading";i:8078;s:17:"notverymisreading";i:8079;s:15:"notmisrepresent";i:8080;s:19:"notverymisrepresent";i:8081;s:20:"notmisrepresentation";i:8082;s:24:"notverymisrepresentation";i:8083;s:7:"notmiss";i:8084;s:11:"notverymiss";i:8085;s:15:"notmisstatement";i:8086;s:19:"notverymisstatement";i:8087;s:10:"notmistake";i:8088;s:14:"notverymistake";i:8089;s:13:"notmistakenly";i:8090;s:17:"notverymistakenly";i:8091;s:11:"notmistakes";i:8092;s:15:"notverymistakes";i:8093;s:11:"notmistrust";i:8094;s:15:"notverymistrust";i:8095;s:14:"notmistrustful";i:8096;s:18:"notverymistrustful";i:8097;s:16:"notmistrustfully";i:8098;s:20:"notverymistrustfully";i:8099;s:16:"notmisunderstand";i:8100;s:20:"notverymisunderstand";i:8101;s:19:"notmisunderstanding";i:8102;s:23:"notverymisunderstanding";i:8103;s:20:"notmisunderstandings";i:8104;s:24:"notverymisunderstandings";i:8105;s:9:"notmisuse";i:8106;s:13:"notverymisuse";i:8107;s:7:"notmoan";i:8108;s:11:"notverymoan";i:8109;s:7:"notmock";i:8110;s:11:"notverymock";i:8111;s:12:"notmockeries";i:8112;s:16:"notverymockeries";i:8113;s:10:"notmockery";i:8114;s:14:"notverymockery";i:8115;s:10:"notmocking";i:8116;s:14:"notverymocking";i:8117;s:12:"notmockingly";i:8118;s:16:"notverymockingly";i:8119;s:9:"notmolest";i:8120;s:13:"notverymolest";i:8121;s:14:"notmolestation";i:8122;s:18:"notverymolestation";i:8123;s:13:"notmonotonous";i:8124;s:17:"notverymonotonous";i:8125;s:11:"notmonotony";i:8126;s:15:"notverymonotony";i:8127;s:10:"notmonster";i:8128;s:14:"notverymonster";i:8129;s:16:"notmonstrosities";i:8130;s:20:"notverymonstrosities";i:8131;s:14:"notmonstrosity";i:8132;s:18:"notverymonstrosity";i:8133;s:12:"notmonstrous";i:8134;s:16:"notverymonstrous";i:8135;s:14:"notmonstrously";i:8136;s:18:"notverymonstrously";i:8137;s:7:"notmoon";i:8138;s:11:"notverymoon";i:8139;s:7:"notmoot";i:8140;s:11:"notverymoot";i:8141;s:7:"notmope";i:8142;s:11:"notverymope";i:8143;s:9:"notmorbid";i:8144;s:13:"notverymorbid";i:8145;s:11:"notmorbidly";i:8146;s:15:"notverymorbidly";i:8147;s:10:"notmordant";i:8148;s:14:"notverymordant";i:8149;s:12:"notmordantly";i:8150;s:16:"notverymordantly";i:8151;s:11:"notmoribund";i:8152;s:15:"notverymoribund";i:8153;s:16:"notmortification";i:8154;s:20:"notverymortification";i:8155;s:12:"notmortified";i:8156;s:16:"notverymortified";i:8157;s:10:"notmortify";i:8158;s:14:"notverymortify";i:8159;s:13:"notmortifying";i:8160;s:17:"notverymortifying";i:8161;s:13:"notmotionless";i:8162;s:17:"notverymotionless";i:8163;s:9:"notmotley";i:8164;s:13:"notverymotley";i:8165;s:8:"notmourn";i:8166;s:12:"notverymourn";i:8167;s:10:"notmourner";i:8168;s:14:"notverymourner";i:8169;s:11:"notmournful";i:8170;s:15:"notverymournful";i:8171;s:13:"notmournfully";i:8172;s:17:"notverymournfully";i:8173;s:9:"notmuddle";i:8174;s:13:"notverymuddle";i:8175;s:8:"notmuddy";i:8176;s:12:"notverymuddy";i:8177;s:13:"notmudslinger";i:8178;s:17:"notverymudslinger";i:8179;s:14:"notmudslinging";i:8180;s:18:"notverymudslinging";i:8181;s:9:"notmulish";i:8182;s:13:"notverymulish";i:8183;s:21:"notmulti-polarization";i:8184;s:25:"notverymulti-polarization";i:8185;s:10:"notmundane";i:8186;s:14:"notverymundane";i:8187;s:9:"notmurder";i:8188;s:13:"notverymurder";i:8189;s:12:"notmurderous";i:8190;s:16:"notverymurderous";i:8191;s:14:"notmurderously";i:8192;s:18:"notverymurderously";i:8193;s:8:"notmurky";i:8194;s:12:"notverymurky";i:8195;s:17:"notmuscle-flexing";i:8196;s:21:"notverymuscle-flexing";i:8197;s:13:"notmysterious";i:8198;s:17:"notverymysterious";i:8199;s:15:"notmysteriously";i:8200;s:19:"notverymysteriously";i:8201;s:10:"notmystery";i:8202;s:14:"notverymystery";i:8203;s:10:"notmystify";i:8204;s:14:"notverymystify";i:8205;s:12:"notmistified";i:8206;s:16:"notverymistified";i:8207;s:7:"notmyth";i:8208;s:11:"notverymyth";i:8209;s:6:"notnag";i:8210;s:10:"notverynag";i:8211;s:10:"notnagging";i:8212;s:14:"notverynagging";i:8213;s:8:"notnaive";i:8214;s:12:"notverynaive";i:8215;s:10:"notnaively";i:8216;s:14:"notverynaively";i:8217;s:9:"notnarrow";i:8218;s:13:"notverynarrow";i:8219;s:11:"notnarrower";i:8220;s:15:"notverynarrower";i:8221;s:10:"notnastily";i:8222;s:14:"notverynastily";i:8223;s:12:"notnastiness";i:8224;s:16:"notverynastiness";i:8225;s:8:"notnasty";i:8226;s:12:"notverynasty";i:8227;s:14:"notnationalism";i:8228;s:18:"notverynationalism";i:8229;s:10:"notnaughty";i:8230;s:14:"notverynaughty";i:8231;s:11:"notnauseate";i:8232;s:15:"notverynauseate";i:8233;s:13:"notnauseating";i:8234;s:17:"notverynauseating";i:8235;s:15:"notnauseatingly";i:8236;s:19:"notverynauseatingly";i:8237;s:11:"notnebulous";i:8238;s:15:"notverynebulous";i:8239;s:13:"notnebulously";i:8240;s:17:"notverynebulously";i:8241;s:11:"notneedless";i:8242;s:15:"notveryneedless";i:8243;s:13:"notneedlessly";i:8244;s:17:"notveryneedlessly";i:8245;s:12:"notnefarious";i:8246;s:16:"notverynefarious";i:8247;s:14:"notnefariously";i:8248;s:18:"notverynefariously";i:8249;s:9:"notnegate";i:8250;s:13:"notverynegate";i:8251;s:11:"notnegation";i:8252;s:15:"notverynegation";i:8253;s:10:"notneglect";i:8254;s:14:"notveryneglect";i:8255;s:12:"notneglected";i:8256;s:16:"notveryneglected";i:8257;s:12:"notnegligent";i:8258;s:16:"notverynegligent";i:8259;s:13:"notnegligence";i:8260;s:17:"notverynegligence";i:8261;s:13:"notnegligible";i:8262;s:17:"notverynegligible";i:8263;s:10:"notnemesis";i:8264;s:14:"notverynemesis";i:8265;s:9:"notnettle";i:8266;s:13:"notverynettle";i:8267;s:13:"notnettlesome";i:8268;s:17:"notverynettlesome";i:8269;s:12:"notnervously";i:8270;s:16:"notverynervously";i:8271;s:14:"notnervousness";i:8272;s:18:"notverynervousness";i:8273;s:15:"notneurotically";i:8274;s:19:"notveryneurotically";i:8275;s:9:"notniggle";i:8276;s:13:"notveryniggle";i:8277;s:12:"notnightmare";i:8278;s:16:"notverynightmare";i:8279;s:14:"notnightmarish";i:8280;s:18:"notverynightmarish";i:8281;s:16:"notnightmarishly";i:8282;s:20:"notverynightmarishly";i:8283;s:6:"notnix";i:8284;s:10:"notverynix";i:8285;s:8:"notnoisy";i:8286;s:12:"notverynoisy";i:8287;s:17:"notnon-confidence";i:8288;s:21:"notverynon-confidence";i:8289;s:14:"notnonexistent";i:8290;s:18:"notverynonexistent";i:8291;s:11:"notnonsense";i:8292;s:15:"notverynonsense";i:8293;s:8:"notnosey";i:8294;s:12:"notverynosey";i:8295;s:12:"notnotorious";i:8296;s:16:"notverynotorious";i:8297;s:14:"notnotoriously";i:8298;s:18:"notverynotoriously";i:8299;s:11:"notnuisance";i:8300;s:15:"notverynuisance";i:8301;s:8:"notobese";i:8302;s:12:"notveryobese";i:8303;s:9:"notobject";i:8304;s:13:"notveryobject";i:8305;s:12:"notobjection";i:8306;s:16:"notveryobjection";i:8307;s:16:"notobjectionable";i:8308;s:20:"notveryobjectionable";i:8309;s:13:"notobjections";i:8310;s:17:"notveryobjections";i:8311;s:10:"notoblique";i:8312;s:14:"notveryoblique";i:8313;s:13:"notobliterate";i:8314;s:17:"notveryobliterate";i:8315;s:14:"notobliterated";i:8316;s:18:"notveryobliterated";i:8317;s:12:"notoblivious";i:8318;s:16:"notveryoblivious";i:8319;s:12:"notobnoxious";i:8320;s:16:"notveryobnoxious";i:8321;s:14:"notobnoxiously";i:8322;s:18:"notveryobnoxiously";i:8323;s:10:"notobscene";i:8324;s:14:"notveryobscene";i:8325;s:12:"notobscenely";i:8326;s:16:"notveryobscenely";i:8327;s:12:"notobscenity";i:8328;s:16:"notveryobscenity";i:8329;s:10:"notobscure";i:8330;s:14:"notveryobscure";i:8331;s:12:"notobscurity";i:8332;s:16:"notveryobscurity";i:8333;s:9:"notobsess";i:8334;s:13:"notveryobsess";i:8335;s:12:"notobsession";i:8336;s:16:"notveryobsession";i:8337;s:13:"notobsessions";i:8338;s:17:"notveryobsessions";i:8339;s:14:"notobsessively";i:8340;s:18:"notveryobsessively";i:8341;s:16:"notobsessiveness";i:8342;s:20:"notveryobsessiveness";i:8343;s:11:"notobsolete";i:8344;s:15:"notveryobsolete";i:8345;s:11:"notobstacle";i:8346;s:15:"notveryobstacle";i:8347;s:12:"notobstinate";i:8348;s:16:"notveryobstinate";i:8349;s:14:"notobstinately";i:8350;s:18:"notveryobstinately";i:8351;s:11:"notobstruct";i:8352;s:15:"notveryobstruct";i:8353;s:14:"notobstruction";i:8354;s:18:"notveryobstruction";i:8355;s:12:"notobtrusive";i:8356;s:16:"notveryobtrusive";i:8357;s:9:"notobtuse";i:8358;s:13:"notveryobtuse";i:8359;s:8:"notodder";i:8360;s:12:"notveryodder";i:8361;s:9:"notoddest";i:8362;s:13:"notveryoddest";i:8363;s:11:"notoddities";i:8364;s:15:"notveryoddities";i:8365;s:9:"notoddity";i:8366;s:13:"notveryoddity";i:8367;s:8:"notoddly";i:8368;s:12:"notveryoddly";i:8369;s:10:"notoffence";i:8370;s:14:"notveryoffence";i:8371;s:9:"notoffend";i:8372;s:13:"notveryoffend";i:8373;s:12:"notoffending";i:8374;s:16:"notveryoffending";i:8375;s:11:"notoffenses";i:8376;s:15:"notveryoffenses";i:8377;s:12:"notoffensive";i:8378;s:16:"notveryoffensive";i:8379;s:14:"notoffensively";i:8380;s:18:"notveryoffensively";i:8381;s:16:"notoffensiveness";i:8382;s:20:"notveryoffensiveness";i:8383;s:12:"notofficious";i:8384;s:16:"notveryofficious";i:8385;s:10:"notominous";i:8386;s:14:"notveryominous";i:8387;s:12:"notominously";i:8388;s:16:"notveryominously";i:8389;s:11:"notomission";i:8390;s:15:"notveryomission";i:8391;s:7:"notomit";i:8392;s:11:"notveryomit";i:8393;s:11:"notone-side";i:8394;s:15:"notveryone-side";i:8395;s:12:"notone-sided";i:8396;s:16:"notveryone-sided";i:8397;s:10:"notonerous";i:8398;s:14:"notveryonerous";i:8399;s:12:"notonerously";i:8400;s:16:"notveryonerously";i:8401;s:12:"notonslaught";i:8402;s:16:"notveryonslaught";i:8403;s:14:"notopinionated";i:8404;s:18:"notveryopinionated";i:8405;s:11:"notopponent";i:8406;s:15:"notveryopponent";i:8407;s:16:"notopportunistic";i:8408;s:20:"notveryopportunistic";i:8409;s:9:"notoppose";i:8410;s:13:"notveryoppose";i:8411;s:13:"notopposition";i:8412;s:17:"notveryopposition";i:8413;s:14:"notoppositions";i:8414;s:18:"notveryoppositions";i:8415;s:10:"notoppress";i:8416;s:14:"notveryoppress";i:8417;s:13:"notoppression";i:8418;s:17:"notveryoppression";i:8419;s:13:"notoppressive";i:8420;s:17:"notveryoppressive";i:8421;s:15:"notoppressively";i:8422;s:19:"notveryoppressively";i:8423;s:17:"notoppressiveness";i:8424;s:21:"notveryoppressiveness";i:8425;s:13:"notoppressors";i:8426;s:17:"notveryoppressors";i:8427;s:9:"notordeal";i:8428;s:13:"notveryordeal";i:8429;s:9:"notorphan";i:8430;s:13:"notveryorphan";i:8431;s:12:"notostracize";i:8432;s:16:"notveryostracize";i:8433;s:11:"notoutbreak";i:8434;s:15:"notveryoutbreak";i:8435;s:11:"notoutburst";i:8436;s:15:"notveryoutburst";i:8437;s:12:"notoutbursts";i:8438;s:16:"notveryoutbursts";i:8439;s:10:"notoutcast";i:8440;s:14:"notveryoutcast";i:8441;s:9:"notoutcry";i:8442;s:13:"notveryoutcry";i:8443;s:11:"notoutdated";i:8444;s:15:"notveryoutdated";i:8445;s:9:"notoutlaw";i:8446;s:13:"notveryoutlaw";i:8447;s:11:"notoutmoded";i:8448;s:15:"notveryoutmoded";i:8449;s:10:"notoutrage";i:8450;s:14:"notveryoutrage";i:8451;s:11:"notoutraged";i:8452;s:15:"notveryoutraged";i:8453;s:13:"notoutrageous";i:8454;s:17:"notveryoutrageous";i:8455;s:15:"notoutrageously";i:8456;s:19:"notveryoutrageously";i:8457;s:17:"notoutrageousness";i:8458;s:21:"notveryoutrageousness";i:8459;s:11:"notoutrages";i:8460;s:15:"notveryoutrages";i:8461;s:11:"notoutsider";i:8462;s:15:"notveryoutsider";i:8463;s:13:"notover-acted";i:8464;s:17:"notveryover-acted";i:8465;s:17:"notover-valuation";i:8466;s:21:"notveryover-valuation";i:8467;s:10:"notoveract";i:8468;s:14:"notveryoveract";i:8469;s:12:"notoveracted";i:8470;s:16:"notveryoveracted";i:8471;s:10:"notoverawe";i:8472;s:14:"notveryoverawe";i:8473;s:14:"notoverbalance";i:8474;s:18:"notveryoverbalance";i:8475;s:15:"notoverbalanced";i:8476;s:19:"notveryoverbalanced";i:8477;s:14:"notoverbearing";i:8478;s:18:"notveryoverbearing";i:8479;s:16:"notoverbearingly";i:8480;s:20:"notveryoverbearingly";i:8481;s:12:"notoverblown";i:8482;s:16:"notveryoverblown";i:8483;s:11:"notovercome";i:8484;s:15:"notveryovercome";i:8485;s:9:"notoverdo";i:8486;s:13:"notveryoverdo";i:8487;s:11:"notoverdone";i:8488;s:15:"notveryoverdone";i:8489;s:10:"notoverdue";i:8490;s:14:"notveryoverdue";i:8491;s:16:"notoveremphasize";i:8492;s:20:"notveryoveremphasize";i:8493;s:11:"notoverkill";i:8494;s:15:"notveryoverkill";i:8495;s:11:"notoverlook";i:8496;s:15:"notveryoverlook";i:8497;s:11:"notoverplay";i:8498;s:15:"notveryoverplay";i:8499;s:12:"notoverpower";i:8500;s:16:"notveryoverpower";i:8501;s:12:"notoverreach";i:8502;s:16:"notveryoverreach";i:8503;s:10:"notoverrun";i:8504;s:14:"notveryoverrun";i:8505;s:13:"notovershadow";i:8506;s:17:"notveryovershadow";i:8507;s:12:"notoversight";i:8508;s:16:"notveryoversight";i:8509;s:21:"notoversimplification";i:8510;s:25:"notveryoversimplification";i:8511;s:17:"notoversimplified";i:8512;s:21:"notveryoversimplified";i:8513;s:15:"notoversimplify";i:8514;s:19:"notveryoversimplify";i:8515;s:12:"notoversized";i:8516;s:16:"notveryoversized";i:8517;s:12:"notoverstate";i:8518;s:16:"notveryoverstate";i:8519;s:16:"notoverstatement";i:8520;s:20:"notveryoverstatement";i:8521;s:17:"notoverstatements";i:8522;s:21:"notveryoverstatements";i:8523;s:12:"notovertaxed";i:8524;s:16:"notveryovertaxed";i:8525;s:12:"notoverthrow";i:8526;s:16:"notveryoverthrow";i:8527;s:11:"notoverturn";i:8528;s:15:"notveryoverturn";i:8529;s:12:"notoverwhelm";i:8530;s:16:"notveryoverwhelm";i:8531;s:15:"notoverwhelming";i:8532;s:19:"notveryoverwhelming";i:8533;s:17:"notoverwhelmingly";i:8534;s:21:"notveryoverwhelmingly";i:8535;s:13:"notoverworked";i:8536;s:17:"notveryoverworked";i:8537;s:14:"notoverzealous";i:8538;s:18:"notveryoverzealous";i:8539;s:16:"notoverzealously";i:8540;s:20:"notveryoverzealously";i:8541;s:10:"notpainful";i:8542;s:14:"notverypainful";i:8543;s:12:"notpainfully";i:8544;s:16:"notverypainfully";i:8545;s:8:"notpains";i:8546;s:12:"notverypains";i:8547;s:7:"notpale";i:8548;s:11:"notverypale";i:8549;s:9:"notpaltry";i:8550;s:13:"notverypaltry";i:8551;s:6:"notpan";i:8552;s:10:"notverypan";i:8553;s:14:"notpandemonium";i:8554;s:18:"notverypandemonium";i:8555;s:10:"notpanicky";i:8556;s:14:"notverypanicky";i:8557;s:14:"notparadoxical";i:8558;s:18:"notveryparadoxical";i:8559;s:16:"notparadoxically";i:8560;s:20:"notveryparadoxically";i:8561;s:11:"notparalize";i:8562;s:15:"notveryparalize";i:8563;s:12:"notparalyzed";i:8564;s:16:"notveryparalyzed";i:8565;s:11:"notparanoia";i:8566;s:15:"notveryparanoia";i:8567;s:11:"notparasite";i:8568;s:15:"notveryparasite";i:8569;s:9:"notpariah";i:8570;s:13:"notverypariah";i:8571;s:9:"notparody";i:8572;s:13:"notveryparody";i:8573;s:13:"notpartiality";i:8574;s:17:"notverypartiality";i:8575;s:11:"notpartisan";i:8576;s:15:"notverypartisan";i:8577;s:12:"notpartisans";i:8578;s:16:"notverypartisans";i:8579;s:8:"notpasse";i:8580;s:12:"notverypasse";i:8581;s:14:"notpassiveness";i:8582;s:18:"notverypassiveness";i:8583;s:15:"notpathetically";i:8584;s:19:"notverypathetically";i:8585;s:12:"notpatronize";i:8586;s:16:"notverypatronize";i:8587;s:10:"notpaucity";i:8588;s:14:"notverypaucity";i:8589;s:9:"notpauper";i:8590;s:13:"notverypauper";i:8591;s:10:"notpaupers";i:8592;s:14:"notverypaupers";i:8593;s:10:"notpayback";i:8594;s:14:"notverypayback";i:8595;s:11:"notpeculiar";i:8596;s:15:"notverypeculiar";i:8597;s:13:"notpeculiarly";i:8598;s:17:"notverypeculiarly";i:8599;s:11:"notpedantic";i:8600;s:15:"notverypedantic";i:8601;s:13:"notpedestrian";i:8602;s:17:"notverypedestrian";i:8603;s:8:"notpeeve";i:8604;s:12:"notverypeeve";i:8605;s:9:"notpeeved";i:8606;s:13:"notverypeeved";i:8607;s:10:"notpeevish";i:8608;s:14:"notverypeevish";i:8609;s:12:"notpeevishly";i:8610;s:16:"notverypeevishly";i:8611;s:11:"notpenalize";i:8612;s:15:"notverypenalize";i:8613;s:10:"notpenalty";i:8614;s:14:"notverypenalty";i:8615;s:13:"notperfidious";i:8616;s:17:"notveryperfidious";i:8617;s:12:"notperfidity";i:8618;s:16:"notveryperfidity";i:8619;s:14:"notperfunctory";i:8620;s:18:"notveryperfunctory";i:8621;s:8:"notperil";i:8622;s:12:"notveryperil";i:8623;s:11:"notperilous";i:8624;s:15:"notveryperilous";i:8625;s:13:"notperilously";i:8626;s:17:"notveryperilously";i:8627;s:13:"notperipheral";i:8628;s:17:"notveryperipheral";i:8629;s:9:"notperish";i:8630;s:13:"notveryperish";i:8631;s:13:"notpernicious";i:8632;s:17:"notverypernicious";i:8633;s:10:"notperplex";i:8634;s:14:"notveryperplex";i:8635;s:12:"notperplexed";i:8636;s:16:"notveryperplexed";i:8637;s:13:"notperplexing";i:8638;s:17:"notveryperplexing";i:8639;s:13:"notperplexity";i:8640;s:17:"notveryperplexity";i:8641;s:12:"notpersecute";i:8642;s:16:"notverypersecute";i:8643;s:14:"notpersecution";i:8644;s:18:"notverypersecution";i:8645;s:15:"notpertinacious";i:8646;s:19:"notverypertinacious";i:8647;s:17:"notpertinaciously";i:8648;s:21:"notverypertinaciously";i:8649;s:14:"notpertinacity";i:8650;s:18:"notverypertinacity";i:8651;s:10:"notperturb";i:8652;s:14:"notveryperturb";i:8653;s:12:"notperturbed";i:8654;s:16:"notveryperturbed";i:8655;s:11:"notperverse";i:8656;s:15:"notveryperverse";i:8657;s:13:"notperversely";i:8658;s:17:"notveryperversely";i:8659;s:13:"notperversion";i:8660;s:17:"notveryperversion";i:8661;s:13:"notperversity";i:8662;s:17:"notveryperversity";i:8663;s:10:"notpervert";i:8664;s:14:"notverypervert";i:8665;s:12:"notperverted";i:8666;s:16:"notveryperverted";i:8667;s:12:"notpessimism";i:8668;s:16:"notverypessimism";i:8669;s:18:"notpessimistically";i:8670;s:22:"notverypessimistically";i:8671;s:7:"notpest";i:8672;s:11:"notverypest";i:8673;s:12:"notpestilent";i:8674;s:16:"notverypestilent";i:8675;s:10:"notpetrify";i:8676;s:14:"notverypetrify";i:8677;s:11:"notpettifog";i:8678;s:15:"notverypettifog";i:8679;s:8:"notpetty";i:8680;s:12:"notverypetty";i:8681;s:9:"notphobia";i:8682;s:13:"notveryphobia";i:8683;s:9:"notphobic";i:8684;s:13:"notveryphobic";i:8685;s:8:"notpicky";i:8686;s:12:"notverypicky";i:8687;s:10:"notpillage";i:8688;s:14:"notverypillage";i:8689;s:10:"notpillory";i:8690;s:14:"notverypillory";i:8691;s:8:"notpinch";i:8692;s:12:"notverypinch";i:8693;s:7:"notpine";i:8694;s:11:"notverypine";i:8695;s:8:"notpique";i:8696;s:12:"notverypique";i:8697;s:11:"notpitiable";i:8698;s:15:"notverypitiable";i:8699;s:10:"notpitiful";i:8700;s:14:"notverypitiful";i:8701;s:12:"notpitifully";i:8702;s:16:"notverypitifully";i:8703;s:11:"notpitiless";i:8704;s:15:"notverypitiless";i:8705;s:13:"notpitilessly";i:8706;s:17:"notverypitilessly";i:8707;s:11:"notpittance";i:8708;s:15:"notverypittance";i:8709;s:7:"notpity";i:8710;s:11:"notverypity";i:8711;s:13:"notplagiarize";i:8712;s:17:"notveryplagiarize";i:8713;s:9:"notplague";i:8714;s:13:"notveryplague";i:8715;s:12:"notplaything";i:8716;s:16:"notveryplaything";i:8717;s:8:"notplead";i:8718;s:12:"notveryplead";i:8719;s:11:"notpleading";i:8720;s:15:"notverypleading";i:8721;s:13:"notpleadingly";i:8722;s:17:"notverypleadingly";i:8723;s:7:"notplea";i:8724;s:11:"notveryplea";i:8725;s:8:"notpleas";i:8726;s:12:"notverypleas";i:8727;s:11:"notplebeian";i:8728;s:15:"notveryplebeian";i:8729;s:9:"notplight";i:8730;s:13:"notveryplight";i:8731;s:7:"notplot";i:8732;s:11:"notveryplot";i:8733;s:11:"notplotters";i:8734;s:15:"notveryplotters";i:8735;s:7:"notploy";i:8736;s:11:"notveryploy";i:8737;s:10:"notplunder";i:8738;s:14:"notveryplunder";i:8739;s:12:"notplunderer";i:8740;s:16:"notveryplunderer";i:8741;s:12:"notpointless";i:8742;s:16:"notverypointless";i:8743;s:14:"notpointlessly";i:8744;s:18:"notverypointlessly";i:8745;s:9:"notpoison";i:8746;s:13:"notverypoison";i:8747;s:12:"notpoisonous";i:8748;s:16:"notverypoisonous";i:8749;s:14:"notpoisonously";i:8750;s:18:"notverypoisonously";i:8751;s:15:"notpolarisation";i:8752;s:19:"notverypolarisation";i:8753;s:11:"notpolemize";i:8754;s:15:"notverypolemize";i:8755;s:10:"notpollute";i:8756;s:14:"notverypollute";i:8757;s:11:"notpolluter";i:8758;s:15:"notverypolluter";i:8759;s:12:"notpolluters";i:8760;s:16:"notverypolluters";i:8761;s:11:"notpolution";i:8762;s:15:"notverypolution";i:8763;s:10:"notpompous";i:8764;s:14:"notverypompous";i:8765;s:9:"notpoorly";i:8766;s:13:"notverypoorly";i:8767;s:12:"notposturing";i:8768;s:16:"notveryposturing";i:8769;s:7:"notpout";i:8770;s:11:"notverypout";i:8771;s:10:"notpoverty";i:8772;s:14:"notverypoverty";i:8773;s:8:"notprate";i:8774;s:12:"notveryprate";i:8775;s:11:"notpratfall";i:8776;s:15:"notverypratfall";i:8777;s:10:"notprattle";i:8778;s:14:"notveryprattle";i:8779;s:13:"notprecarious";i:8780;s:17:"notveryprecarious";i:8781;s:15:"notprecariously";i:8782;s:19:"notveryprecariously";i:8783;s:14:"notprecipitate";i:8784;s:18:"notveryprecipitate";i:8785;s:14:"notprecipitous";i:8786;s:18:"notveryprecipitous";i:8787;s:12:"notpredatory";i:8788;s:16:"notverypredatory";i:8789;s:14:"notpredicament";i:8790;s:18:"notverypredicament";i:8791;s:11:"notprejudge";i:8792;s:15:"notveryprejudge";i:8793;s:12:"notprejudice";i:8794;s:16:"notveryprejudice";i:8795;s:14:"notprejudicial";i:8796;s:18:"notveryprejudicial";i:8797;s:15:"notpremeditated";i:8798;s:19:"notverypremeditated";i:8799;s:12:"notpreoccupy";i:8800;s:16:"notverypreoccupy";i:8801;s:15:"notpreposterous";i:8802;s:19:"notverypreposterous";i:8803;s:17:"notpreposterously";i:8804;s:21:"notverypreposterously";i:8805;s:11:"notpressing";i:8806;s:15:"notverypressing";i:8807;s:10:"notpresume";i:8808;s:14:"notverypresume";i:8809;s:15:"notpresumptuous";i:8810;s:19:"notverypresumptuous";i:8811;s:17:"notpresumptuously";i:8812;s:21:"notverypresumptuously";i:8813;s:11:"notpretence";i:8814;s:15:"notverypretence";i:8815;s:10:"notpretend";i:8816;s:14:"notverypretend";i:8817;s:11:"notpretense";i:8818;s:15:"notverypretense";i:8819;s:14:"notpretentious";i:8820;s:18:"notverypretentious";i:8821;s:16:"notpretentiously";i:8822;s:20:"notverypretentiously";i:8823;s:14:"notprevaricate";i:8824;s:18:"notveryprevaricate";i:8825;s:9:"notpricey";i:8826;s:13:"notverypricey";i:8827;s:10:"notprickle";i:8828;s:14:"notveryprickle";i:8829;s:11:"notprickles";i:8830;s:15:"notveryprickles";i:8831;s:11:"notprideful";i:8832;s:15:"notveryprideful";i:8833;s:12:"notprimitive";i:8834;s:16:"notveryprimitive";i:8835;s:9:"notprison";i:8836;s:13:"notveryprison";i:8837;s:11:"notprisoner";i:8838;s:15:"notveryprisoner";i:8839;s:10:"notproblem";i:8840;s:14:"notveryproblem";i:8841;s:14:"notproblematic";i:8842;s:18:"notveryproblematic";i:8843;s:11:"notproblems";i:8844;s:15:"notveryproblems";i:8845;s:16:"notprocrastinate";i:8846;s:20:"notveryprocrastinate";i:8847;s:18:"notprocrastination";i:8848;s:22:"notveryprocrastination";i:8849;s:10:"notprofane";i:8850;s:14:"notveryprofane";i:8851;s:12:"notprofanity";i:8852;s:16:"notveryprofanity";i:8853;s:11:"notprohibit";i:8854;s:15:"notveryprohibit";i:8855;s:14:"notprohibitive";i:8856;s:18:"notveryprohibitive";i:8857;s:16:"notprohibitively";i:8858;s:20:"notveryprohibitively";i:8859;s:13:"notpropaganda";i:8860;s:17:"notverypropaganda";i:8861;s:15:"notpropagandize";i:8862;s:19:"notverypropagandize";i:8863;s:15:"notproscription";i:8864;s:19:"notveryproscription";i:8865;s:16:"notproscriptions";i:8866;s:20:"notveryproscriptions";i:8867;s:12:"notprosecute";i:8868;s:16:"notveryprosecute";i:8869;s:10:"notprotest";i:8870;s:14:"notveryprotest";i:8871;s:11:"notprotests";i:8872;s:15:"notveryprotests";i:8873;s:13:"notprotracted";i:8874;s:17:"notveryprotracted";i:8875;s:14:"notprovocation";i:8876;s:18:"notveryprovocation";i:8877;s:14:"notprovocative";i:8878;s:18:"notveryprovocative";i:8879;s:10:"notprovoke";i:8880;s:14:"notveryprovoke";i:8881;s:6:"notpry";i:8882;s:10:"notverypry";i:8883;s:13:"notpugnacious";i:8884;s:17:"notverypugnacious";i:8885;s:15:"notpugnaciously";i:8886;s:19:"notverypugnaciously";i:8887;s:12:"notpugnacity";i:8888;s:16:"notverypugnacity";i:8889;s:8:"notpunch";i:8890;s:12:"notverypunch";i:8891;s:9:"notpunish";i:8892;s:13:"notverypunish";i:8893;s:13:"notpunishable";i:8894;s:17:"notverypunishable";i:8895;s:11:"notpunitive";i:8896;s:15:"notverypunitive";i:8897;s:7:"notpuny";i:8898;s:11:"notverypuny";i:8899;s:9:"notpuppet";i:8900;s:13:"notverypuppet";i:8901;s:10:"notpuppets";i:8902;s:14:"notverypuppets";i:8903;s:9:"notpuzzle";i:8904;s:13:"notverypuzzle";i:8905;s:13:"notpuzzlement";i:8906;s:17:"notverypuzzlement";i:8907;s:11:"notpuzzling";i:8908;s:15:"notverypuzzling";i:8909;s:8:"notquack";i:8910;s:12:"notveryquack";i:8911;s:9:"notqualms";i:8912;s:13:"notveryqualms";i:8913;s:11:"notquandary";i:8914;s:15:"notveryquandary";i:8915;s:10:"notquarrel";i:8916;s:14:"notveryquarrel";i:8917;s:14:"notquarrellous";i:8918;s:18:"notveryquarrellous";i:8919;s:16:"notquarrellously";i:8920;s:20:"notveryquarrellously";i:8921;s:11:"notquarrels";i:8922;s:15:"notveryquarrels";i:8923;s:8:"notquash";i:8924;s:12:"notveryquash";i:8925;s:15:"notquestionable";i:8926;s:19:"notveryquestionable";i:8927;s:10:"notquibble";i:8928;s:14:"notveryquibble";i:8929;s:7:"notquit";i:8930;s:11:"notveryquit";i:8931;s:10:"notquitter";i:8932;s:14:"notveryquitter";i:8933;s:9:"notracism";i:8934;s:13:"notveryracism";i:8935;s:9:"notracist";i:8936;s:13:"notveryracist";i:8937;s:10:"notracists";i:8938;s:14:"notveryracists";i:8939;s:7:"notrack";i:8940;s:11:"notveryrack";i:8941;s:10:"notradical";i:8942;s:14:"notveryradical";i:8943;s:17:"notradicalization";i:8944;s:21:"notveryradicalization";i:8945;s:12:"notradically";i:8946;s:16:"notveryradically";i:8947;s:11:"notradicals";i:8948;s:15:"notveryradicals";i:8949;s:9:"notragged";i:8950;s:13:"notveryragged";i:8951;s:9:"notraging";i:8952;s:13:"notveryraging";i:8953;s:7:"notrail";i:8954;s:11:"notveryrail";i:8955;s:10:"notrampage";i:8956;s:14:"notveryrampage";i:8957;s:10:"notrampant";i:8958;s:14:"notveryrampant";i:8959;s:13:"notramshackle";i:8960;s:17:"notveryramshackle";i:8961;s:9:"notrancor";i:8962;s:13:"notveryrancor";i:8963;s:7:"notrank";i:8964;s:11:"notveryrank";i:8965;s:9:"notrankle";i:8966;s:13:"notveryrankle";i:8967;s:7:"notrant";i:8968;s:11:"notveryrant";i:8969;s:10:"notranting";i:8970;s:14:"notveryranting";i:8971;s:12:"notrantingly";i:8972;s:16:"notveryrantingly";i:8973;s:9:"notrascal";i:8974;s:13:"notveryrascal";i:8975;s:7:"notrash";i:8976;s:11:"notveryrash";i:8977;s:6:"notrat";i:8978;s:10:"notveryrat";i:8979;s:14:"notrationalize";i:8980;s:18:"notveryrationalize";i:8981;s:9:"notrattle";i:8982;s:13:"notveryrattle";i:8983;s:9:"notravage";i:8984;s:13:"notveryravage";i:8985;s:9:"notraving";i:8986;s:13:"notveryraving";i:8987;s:14:"notreactionary";i:8988;s:18:"notveryreactionary";i:8989;s:13:"notrebellious";i:8990;s:17:"notveryrebellious";i:8991;s:9:"notrebuff";i:8992;s:13:"notveryrebuff";i:8993;s:9:"notrebuke";i:8994;s:13:"notveryrebuke";i:8995;s:15:"notrecalcitrant";i:8996;s:19:"notveryrecalcitrant";i:8997;s:9:"notrecant";i:8998;s:13:"notveryrecant";i:8999;s:12:"notrecession";i:9000;s:16:"notveryrecession";i:9001;s:15:"notrecessionary";i:9002;s:19:"notveryrecessionary";i:9003;s:11:"notreckless";i:9004;s:15:"notveryreckless";i:9005;s:13:"notrecklessly";i:9006;s:17:"notveryrecklessly";i:9007;s:15:"notrecklessness";i:9008;s:19:"notveryrecklessness";i:9009;s:9:"notrecoil";i:9010;s:13:"notveryrecoil";i:9011;s:12:"notrecourses";i:9012;s:16:"notveryrecourses";i:9013;s:13:"notredundancy";i:9014;s:17:"notveryredundancy";i:9015;s:12:"notredundant";i:9016;s:16:"notveryredundant";i:9017;s:10:"notrefusal";i:9018;s:14:"notveryrefusal";i:9019;s:9:"notrefuse";i:9020;s:13:"notveryrefuse";i:9021;s:13:"notrefutation";i:9022;s:17:"notveryrefutation";i:9023;s:9:"notrefute";i:9024;s:13:"notveryrefute";i:9025;s:10:"notregress";i:9026;s:14:"notveryregress";i:9027;s:13:"notregression";i:9028;s:17:"notveryregression";i:9029;s:13:"notregressive";i:9030;s:17:"notveryregressive";i:9031;s:12:"notregretful";i:9032;s:16:"notveryregretful";i:9033;s:14:"notregretfully";i:9034;s:18:"notveryregretfully";i:9035;s:14:"notregrettable";i:9036;s:18:"notveryregrettable";i:9037;s:14:"notregrettably";i:9038;s:18:"notveryregrettably";i:9039;s:9:"notreject";i:9040;s:13:"notveryreject";i:9041;s:12:"notrejection";i:9042;s:16:"notveryrejection";i:9043;s:10:"notrelapse";i:9044;s:14:"notveryrelapse";i:9045;s:13:"notrelentless";i:9046;s:17:"notveryrelentless";i:9047;s:15:"notrelentlessly";i:9048;s:19:"notveryrelentlessly";i:9049;s:17:"notrelentlessness";i:9050;s:21:"notveryrelentlessness";i:9051;s:13:"notreluctance";i:9052;s:17:"notveryreluctance";i:9053;s:12:"notreluctant";i:9054;s:16:"notveryreluctant";i:9055;s:14:"notreluctantly";i:9056;s:18:"notveryreluctantly";i:9057;s:10:"notremorse";i:9058;s:14:"notveryremorse";i:9059;s:13:"notremorseful";i:9060;s:17:"notveryremorseful";i:9061;s:15:"notremorsefully";i:9062;s:19:"notveryremorsefully";i:9063;s:14:"notremorseless";i:9064;s:18:"notveryremorseless";i:9065;s:16:"notremorselessly";i:9066;s:20:"notveryremorselessly";i:9067;s:18:"notremorselessness";i:9068;s:22:"notveryremorselessness";i:9069;s:11:"notrenounce";i:9070;s:15:"notveryrenounce";i:9071;s:15:"notrenunciation";i:9072;s:19:"notveryrenunciation";i:9073;s:8:"notrepel";i:9074;s:12:"notveryrepel";i:9075;s:13:"notrepetitive";i:9076;s:17:"notveryrepetitive";i:9077;s:16:"notreprehensible";i:9078;s:20:"notveryreprehensible";i:9079;s:16:"notreprehensibly";i:9080;s:20:"notveryreprehensibly";i:9081;s:15:"notreprehension";i:9082;s:19:"notveryreprehension";i:9083;s:15:"notreprehensive";i:9084;s:19:"notveryreprehensive";i:9085;s:10:"notrepress";i:9086;s:14:"notveryrepress";i:9087;s:13:"notrepression";i:9088;s:17:"notveryrepression";i:9089;s:13:"notrepressive";i:9090;s:17:"notveryrepressive";i:9091;s:12:"notreprimand";i:9092;s:16:"notveryreprimand";i:9093;s:11:"notreproach";i:9094;s:15:"notveryreproach";i:9095;s:14:"notreproachful";i:9096;s:18:"notveryreproachful";i:9097;s:10:"notreprove";i:9098;s:14:"notveryreprove";i:9099;s:14:"notreprovingly";i:9100;s:18:"notveryreprovingly";i:9101;s:12:"notrepudiate";i:9102;s:16:"notveryrepudiate";i:9103;s:14:"notrepudiation";i:9104;s:18:"notveryrepudiation";i:9105;s:9:"notrepugn";i:9106;s:13:"notveryrepugn";i:9107;s:13:"notrepugnance";i:9108;s:17:"notveryrepugnance";i:9109;s:12:"notrepugnant";i:9110;s:16:"notveryrepugnant";i:9111;s:14:"notrepugnantly";i:9112;s:18:"notveryrepugnantly";i:9113;s:10:"notrepulse";i:9114;s:14:"notveryrepulse";i:9115;s:11:"notrepulsed";i:9116;s:15:"notveryrepulsed";i:9117;s:12:"notrepulsing";i:9118;s:16:"notveryrepulsing";i:9119;s:12:"notrepulsive";i:9120;s:16:"notveryrepulsive";i:9121;s:14:"notrepulsively";i:9122;s:18:"notveryrepulsively";i:9123;s:16:"notrepulsiveness";i:9124;s:20:"notveryrepulsiveness";i:9125;s:9:"notresent";i:9126;s:13:"notveryresent";i:9127;s:13:"notresentment";i:9128;s:17:"notveryresentment";i:9129;s:15:"notreservations";i:9130;s:19:"notveryreservations";i:9131;s:14:"notresignation";i:9132;s:18:"notveryresignation";i:9133;s:11:"notresigned";i:9134;s:15:"notveryresigned";i:9135;s:13:"notresistance";i:9136;s:17:"notveryresistance";i:9137;s:12:"notresistant";i:9138;s:16:"notveryresistant";i:9139;s:11:"notrestless";i:9140;s:15:"notveryrestless";i:9141;s:15:"notrestlessness";i:9142;s:19:"notveryrestlessness";i:9143;s:11:"notrestrict";i:9144;s:15:"notveryrestrict";i:9145;s:13:"notrestricted";i:9146;s:17:"notveryrestricted";i:9147;s:14:"notrestriction";i:9148;s:18:"notveryrestriction";i:9149;s:14:"notrestrictive";i:9150;s:18:"notveryrestrictive";i:9151;s:12:"notretaliate";i:9152;s:16:"notveryretaliate";i:9153;s:14:"notretaliatory";i:9154;s:18:"notveryretaliatory";i:9155;s:9:"notretard";i:9156;s:13:"notveryretard";i:9157;s:11:"notreticent";i:9158;s:15:"notveryreticent";i:9159;s:9:"notretire";i:9160;s:13:"notveryretire";i:9161;s:10:"notretract";i:9162;s:14:"notveryretract";i:9163;s:10:"notretreat";i:9164;s:14:"notveryretreat";i:9165;s:10:"notrevenge";i:9166;s:14:"notveryrevenge";i:9167;s:15:"notrevengefully";i:9168;s:19:"notveryrevengefully";i:9169;s:9:"notrevert";i:9170;s:13:"notveryrevert";i:9171;s:9:"notrevile";i:9172;s:13:"notveryrevile";i:9173;s:10:"notreviled";i:9174;s:14:"notveryreviled";i:9175;s:9:"notrevoke";i:9176;s:13:"notveryrevoke";i:9177;s:9:"notrevolt";i:9178;s:13:"notveryrevolt";i:9179;s:12:"notrevolting";i:9180;s:16:"notveryrevolting";i:9181;s:14:"notrevoltingly";i:9182;s:18:"notveryrevoltingly";i:9183;s:12:"notrevulsion";i:9184;s:16:"notveryrevulsion";i:9185;s:12:"notrevulsive";i:9186;s:16:"notveryrevulsive";i:9187;s:13:"notrhapsodize";i:9188;s:17:"notveryrhapsodize";i:9189;s:11:"notrhetoric";i:9190;s:15:"notveryrhetoric";i:9191;s:13:"notrhetorical";i:9192;s:17:"notveryrhetorical";i:9193;s:6:"notrid";i:9194;s:10:"notveryrid";i:9195;s:11:"notridicule";i:9196;s:15:"notveryridicule";i:9197;s:15:"notridiculously";i:9198;s:19:"notveryridiculously";i:9199;s:7:"notrife";i:9200;s:11:"notveryrife";i:9201;s:7:"notrift";i:9202;s:11:"notveryrift";i:9203;s:8:"notrifts";i:9204;s:12:"notveryrifts";i:9205;s:8:"notrigid";i:9206;s:12:"notveryrigid";i:9207;s:8:"notrigor";i:9208;s:12:"notveryrigor";i:9209;s:11:"notrigorous";i:9210;s:15:"notveryrigorous";i:9211;s:7:"notrile";i:9212;s:11:"notveryrile";i:9213;s:8:"notriled";i:9214;s:12:"notveryriled";i:9215;s:7:"notrisk";i:9216;s:11:"notveryrisk";i:9217;s:8:"notrisky";i:9218;s:12:"notveryrisky";i:9219;s:8:"notrival";i:9220;s:12:"notveryrival";i:9221;s:10:"notrivalry";i:9222;s:14:"notveryrivalry";i:9223;s:13:"notroadblocks";i:9224;s:17:"notveryroadblocks";i:9225;s:8:"notrocky";i:9226;s:12:"notveryrocky";i:9227;s:8:"notrogue";i:9228;s:12:"notveryrogue";i:9229;s:16:"notrollercoaster";i:9230;s:20:"notveryrollercoaster";i:9231;s:6:"notrot";i:9232;s:10:"notveryrot";i:9233;s:8:"notrough";i:9234;s:12:"notveryrough";i:9235;s:7:"notrude";i:9236;s:11:"notveryrude";i:9237;s:6:"notrue";i:9238;s:10:"notveryrue";i:9239;s:10:"notruffian";i:9240;s:14:"notveryruffian";i:9241;s:9:"notruffle";i:9242;s:13:"notveryruffle";i:9243;s:7:"notruin";i:9244;s:11:"notveryruin";i:9245;s:10:"notruinous";i:9246;s:14:"notveryruinous";i:9247;s:11:"notrumbling";i:9248;s:15:"notveryrumbling";i:9249;s:8:"notrumor";i:9250;s:12:"notveryrumor";i:9251;s:9:"notrumors";i:9252;s:13:"notveryrumors";i:9253;s:10:"notrumours";i:9254;s:14:"notveryrumours";i:9255;s:9:"notrumple";i:9256;s:13:"notveryrumple";i:9257;s:11:"notrun-down";i:9258;s:15:"notveryrun-down";i:9259;s:10:"notrunaway";i:9260;s:14:"notveryrunaway";i:9261;s:10:"notrupture";i:9262;s:14:"notveryrupture";i:9263;s:8:"notrusty";i:9264;s:12:"notveryrusty";i:9265;s:11:"notruthless";i:9266;s:15:"notveryruthless";i:9267;s:13:"notruthlessly";i:9268;s:17:"notveryruthlessly";i:9269;s:15:"notruthlessness";i:9270;s:19:"notveryruthlessness";i:9271;s:11:"notsabotage";i:9272;s:15:"notverysabotage";i:9273;s:12:"notsacrifice";i:9274;s:16:"notverysacrifice";i:9275;s:9:"notsadden";i:9276;s:13:"notverysadden";i:9277;s:8:"notsadly";i:9278;s:12:"notverysadly";i:9279;s:10:"notsadness";i:9280;s:14:"notverysadness";i:9281;s:6:"notsag";i:9282;s:10:"notverysag";i:9283;s:12:"notsalacious";i:9284;s:16:"notverysalacious";i:9285;s:16:"notsanctimonious";i:9286;s:20:"notverysanctimonious";i:9287;s:6:"notsap";i:9288;s:10:"notverysap";i:9289;s:10:"notsarcasm";i:9290;s:14:"notverysarcasm";i:9291;s:16:"notsarcastically";i:9292;s:20:"notverysarcastically";i:9293;s:11:"notsardonic";i:9294;s:15:"notverysardonic";i:9295;s:15:"notsardonically";i:9296;s:19:"notverysardonically";i:9297;s:7:"notsass";i:9298;s:11:"notverysass";i:9299;s:12:"notsatirical";i:9300;s:16:"notverysatirical";i:9301;s:11:"notsatirize";i:9302;s:15:"notverysatirize";i:9303;s:9:"notsavage";i:9304;s:13:"notverysavage";i:9305;s:10:"notsavaged";i:9306;s:14:"notverysavaged";i:9307;s:11:"notsavagely";i:9308;s:15:"notverysavagely";i:9309;s:11:"notsavagery";i:9310;s:15:"notverysavagery";i:9311;s:10:"notsavages";i:9312;s:14:"notverysavages";i:9313;s:10:"notscandal";i:9314;s:14:"notveryscandal";i:9315;s:13:"notscandalize";i:9316;s:17:"notveryscandalize";i:9317;s:14:"notscandalized";i:9318;s:18:"notveryscandalized";i:9319;s:13:"notscandalous";i:9320;s:17:"notveryscandalous";i:9321;s:15:"notscandalously";i:9322;s:19:"notveryscandalously";i:9323;s:11:"notscandals";i:9324;s:15:"notveryscandals";i:9325;s:8:"notscant";i:9326;s:12:"notveryscant";i:9327;s:12:"notscapegoat";i:9328;s:16:"notveryscapegoat";i:9329;s:7:"notscar";i:9330;s:11:"notveryscar";i:9331;s:9:"notscarce";i:9332;s:13:"notveryscarce";i:9333;s:11:"notscarcely";i:9334;s:15:"notveryscarcely";i:9335;s:11:"notscarcity";i:9336;s:15:"notveryscarcity";i:9337;s:8:"notscare";i:9338;s:12:"notveryscare";i:9339;s:10:"notscarier";i:9340;s:14:"notveryscarier";i:9341;s:11:"notscariest";i:9342;s:15:"notveryscariest";i:9343;s:10:"notscarily";i:9344;s:14:"notveryscarily";i:9345;s:8:"notscars";i:9346;s:12:"notveryscars";i:9347;s:8:"notscary";i:9348;s:12:"notveryscary";i:9349;s:11:"notscathing";i:9350;s:15:"notveryscathing";i:9351;s:13:"notscathingly";i:9352;s:17:"notveryscathingly";i:9353;s:9:"notscheme";i:9354;s:13:"notveryscheme";i:9355;s:11:"notscheming";i:9356;s:15:"notveryscheming";i:9357;s:8:"notscoff";i:9358;s:12:"notveryscoff";i:9359;s:13:"notscoffingly";i:9360;s:17:"notveryscoffingly";i:9361;s:8:"notscold";i:9362;s:12:"notveryscold";i:9363;s:11:"notscolding";i:9364;s:15:"notveryscolding";i:9365;s:13:"notscoldingly";i:9366;s:17:"notveryscoldingly";i:9367;s:12:"notscorching";i:9368;s:16:"notveryscorching";i:9369;s:14:"notscorchingly";i:9370;s:18:"notveryscorchingly";i:9371;s:8:"notscorn";i:9372;s:12:"notveryscorn";i:9373;s:11:"notscornful";i:9374;s:15:"notveryscornful";i:9375;s:13:"notscornfully";i:9376;s:17:"notveryscornfully";i:9377;s:12:"notscoundrel";i:9378;s:16:"notveryscoundrel";i:9379;s:10:"notscourge";i:9380;s:14:"notveryscourge";i:9381;s:8:"notscowl";i:9382;s:12:"notveryscowl";i:9383;s:9:"notscream";i:9384;s:13:"notveryscream";i:9385;s:10:"notscreech";i:9386;s:14:"notveryscreech";i:9387;s:8:"notscrew";i:9388;s:12:"notveryscrew";i:9389;s:7:"notscum";i:9390;s:11:"notveryscum";i:9391;s:9:"notscummy";i:9392;s:13:"notveryscummy";i:9393;s:15:"notsecond-class";i:9394;s:19:"notverysecond-class";i:9395;s:14:"notsecond-tier";i:9396;s:18:"notverysecond-tier";i:9397;s:12:"notsecretive";i:9398;s:16:"notverysecretive";i:9399;s:12:"notsedentary";i:9400;s:16:"notverysedentary";i:9401;s:8:"notseedy";i:9402;s:12:"notveryseedy";i:9403;s:9:"notseethe";i:9404;s:13:"notveryseethe";i:9405;s:11:"notseething";i:9406;s:15:"notveryseething";i:9407;s:12:"notself-coup";i:9408;s:16:"notveryself-coup";i:9409;s:17:"notself-criticism";i:9410;s:21:"notveryself-criticism";i:9411;s:17:"notself-defeating";i:9412;s:21:"notveryself-defeating";i:9413;s:19:"notself-destructive";i:9414;s:23:"notveryself-destructive";i:9415;s:19:"notself-humiliation";i:9416;s:23:"notveryself-humiliation";i:9417;s:16:"notself-interest";i:9418;s:20:"notveryself-interest";i:9419;s:18:"notself-interested";i:9420;s:22:"notveryself-interested";i:9421;s:15:"notself-serving";i:9422;s:19:"notveryself-serving";i:9423;s:17:"notselfinterested";i:9424;s:21:"notveryselfinterested";i:9425;s:12:"notselfishly";i:9426;s:16:"notveryselfishly";i:9427;s:14:"notselfishness";i:9428;s:18:"notveryselfishness";i:9429;s:9:"notsenile";i:9430;s:13:"notverysenile";i:9431;s:17:"notsensationalize";i:9432;s:21:"notverysensationalize";i:9433;s:12:"notsenseless";i:9434;s:16:"notverysenseless";i:9435;s:14:"notsenselessly";i:9436;s:18:"notverysenselessly";i:9437;s:14:"notseriousness";i:9438;s:18:"notveryseriousness";i:9439;s:12:"notsermonize";i:9440;s:16:"notverysermonize";i:9441;s:12:"notservitude";i:9442;s:16:"notveryservitude";i:9443;s:9:"notset-up";i:9444;s:13:"notveryset-up";i:9445;s:8:"notsever";i:9446;s:12:"notverysever";i:9447;s:9:"notsevere";i:9448;s:13:"notverysevere";i:9449;s:11:"notseverely";i:9450;s:15:"notveryseverely";i:9451;s:11:"notseverity";i:9452;s:15:"notveryseverity";i:9453;s:9:"notshabby";i:9454;s:13:"notveryshabby";i:9455;s:9:"notshadow";i:9456;s:13:"notveryshadow";i:9457;s:10:"notshadowy";i:9458;s:14:"notveryshadowy";i:9459;s:8:"notshady";i:9460;s:12:"notveryshady";i:9461;s:8:"notshake";i:9462;s:12:"notveryshake";i:9463;s:8:"notshaky";i:9464;s:12:"notveryshaky";i:9465;s:10:"notshallow";i:9466;s:14:"notveryshallow";i:9467;s:7:"notsham";i:9468;s:11:"notverysham";i:9469;s:11:"notshambles";i:9470;s:15:"notveryshambles";i:9471;s:8:"notshame";i:9472;s:12:"notveryshame";i:9473;s:11:"notshameful";i:9474;s:15:"notveryshameful";i:9475;s:13:"notshamefully";i:9476;s:17:"notveryshamefully";i:9477;s:15:"notshamefulness";i:9478;s:19:"notveryshamefulness";i:9479;s:12:"notshameless";i:9480;s:16:"notveryshameless";i:9481;s:14:"notshamelessly";i:9482;s:18:"notveryshamelessly";i:9483;s:16:"notshamelessness";i:9484;s:20:"notveryshamelessness";i:9485;s:8:"notshark";i:9486;s:12:"notveryshark";i:9487;s:10:"notsharply";i:9488;s:14:"notverysharply";i:9489;s:10:"notshatter";i:9490;s:14:"notveryshatter";i:9491;s:8:"notsheer";i:9492;s:12:"notverysheer";i:9493;s:8:"notshirk";i:9494;s:12:"notveryshirk";i:9495;s:10:"notshirker";i:9496;s:14:"notveryshirker";i:9497;s:12:"notshipwreck";i:9498;s:16:"notveryshipwreck";i:9499;s:9:"notshiver";i:9500;s:13:"notveryshiver";i:9501;s:8:"notshock";i:9502;s:12:"notveryshock";i:9503;s:11:"notshocking";i:9504;s:15:"notveryshocking";i:9505;s:13:"notshockingly";i:9506;s:17:"notveryshockingly";i:9507;s:9:"notshoddy";i:9508;s:13:"notveryshoddy";i:9509;s:14:"notshort-lived";i:9510;s:18:"notveryshort-lived";i:9511;s:11:"notshortage";i:9512;s:15:"notveryshortage";i:9513;s:14:"notshortchange";i:9514;s:18:"notveryshortchange";i:9515;s:14:"notshortcoming";i:9516;s:18:"notveryshortcoming";i:9517;s:15:"notshortcomings";i:9518;s:19:"notveryshortcomings";i:9519;s:15:"notshortsighted";i:9520;s:19:"notveryshortsighted";i:9521;s:19:"notshortsightedness";i:9522;s:23:"notveryshortsightedness";i:9523;s:11:"notshowdown";i:9524;s:15:"notveryshowdown";i:9525;s:8:"notshred";i:9526;s:12:"notveryshred";i:9527;s:8:"notshrew";i:9528;s:12:"notveryshrew";i:9529;s:9:"notshriek";i:9530;s:13:"notveryshriek";i:9531;s:9:"notshrill";i:9532;s:13:"notveryshrill";i:9533;s:10:"notshrilly";i:9534;s:14:"notveryshrilly";i:9535;s:10:"notshrivel";i:9536;s:14:"notveryshrivel";i:9537;s:9:"notshroud";i:9538;s:13:"notveryshroud";i:9539;s:11:"notshrouded";i:9540;s:15:"notveryshrouded";i:9541;s:8:"notshrug";i:9542;s:12:"notveryshrug";i:9543;s:7:"notshun";i:9544;s:11:"notveryshun";i:9545;s:10:"notshunned";i:9546;s:14:"notveryshunned";i:9547;s:8:"notshyly";i:9548;s:12:"notveryshyly";i:9549;s:10:"notshyness";i:9550;s:14:"notveryshyness";i:9551;s:7:"notsick";i:9552;s:11:"notverysick";i:9553;s:9:"notsicken";i:9554;s:13:"notverysicken";i:9555;s:9:"notsickly";i:9556;s:13:"notverysickly";i:9557;s:12:"notsickening";i:9558;s:16:"notverysickening";i:9559;s:14:"notsickeningly";i:9560;s:18:"notverysickeningly";i:9561;s:11:"notsickness";i:9562;s:15:"notverysickness";i:9563;s:12:"notsidetrack";i:9564;s:16:"notverysidetrack";i:9565;s:14:"notsidetracked";i:9566;s:18:"notverysidetracked";i:9567;s:8:"notsiege";i:9568;s:12:"notverysiege";i:9569;s:10:"notsillily";i:9570;s:14:"notverysillily";i:9571;s:8:"notsilly";i:9572;s:12:"notverysilly";i:9573;s:9:"notsimmer";i:9574;s:13:"notverysimmer";i:9575;s:13:"notsimplistic";i:9576;s:17:"notverysimplistic";i:9577;s:17:"notsimplistically";i:9578;s:21:"notverysimplistically";i:9579;s:6:"notsin";i:9580;s:10:"notverysin";i:9581;s:9:"notsinful";i:9582;s:13:"notverysinful";i:9583;s:11:"notsinfully";i:9584;s:15:"notverysinfully";i:9585;s:11:"notsinister";i:9586;s:15:"notverysinister";i:9587;s:13:"notsinisterly";i:9588;s:17:"notverysinisterly";i:9589;s:10:"notsinking";i:9590;s:14:"notverysinking";i:9591;s:12:"notskeletons";i:9592;s:16:"notveryskeletons";i:9593;s:12:"notskeptical";i:9594;s:16:"notveryskeptical";i:9595;s:14:"notskeptically";i:9596;s:18:"notveryskeptically";i:9597;s:13:"notskepticism";i:9598;s:17:"notveryskepticism";i:9599;s:10:"notsketchy";i:9600;s:14:"notverysketchy";i:9601;s:9:"notskimpy";i:9602;s:13:"notveryskimpy";i:9603;s:11:"notskittish";i:9604;s:15:"notveryskittish";i:9605;s:13:"notskittishly";i:9606;s:17:"notveryskittishly";i:9607;s:8:"notskulk";i:9608;s:12:"notveryskulk";i:9609;s:8:"notslack";i:9610;s:12:"notveryslack";i:9611;s:10:"notslander";i:9612;s:14:"notveryslander";i:9613;s:12:"notslanderer";i:9614;s:16:"notveryslanderer";i:9615;s:13:"notslanderous";i:9616;s:17:"notveryslanderous";i:9617;s:15:"notslanderously";i:9618;s:19:"notveryslanderously";i:9619;s:11:"notslanders";i:9620;s:15:"notveryslanders";i:9621;s:7:"notslap";i:9622;s:11:"notveryslap";i:9623;s:11:"notslashing";i:9624;s:15:"notveryslashing";i:9625;s:12:"notslaughter";i:9626;s:16:"notveryslaughter";i:9627;s:14:"notslaughtered";i:9628;s:18:"notveryslaughtered";i:9629;s:9:"notslaves";i:9630;s:13:"notveryslaves";i:9631;s:9:"notsleazy";i:9632;s:13:"notverysleazy";i:9633;s:9:"notslight";i:9634;s:13:"notveryslight";i:9635;s:11:"notslightly";i:9636;s:15:"notveryslightly";i:9637;s:8:"notslime";i:9638;s:12:"notveryslime";i:9639;s:9:"notsloppy";i:9640;s:13:"notverysloppy";i:9641;s:11:"notsloppily";i:9642;s:15:"notverysloppily";i:9643;s:8:"notsloth";i:9644;s:12:"notverysloth";i:9645;s:11:"notslothful";i:9646;s:15:"notveryslothful";i:9647;s:9:"notslowly";i:9648;s:13:"notveryslowly";i:9649;s:14:"notslow-moving";i:9650;s:18:"notveryslow-moving";i:9651;s:7:"notslug";i:9652;s:11:"notveryslug";i:9653;s:11:"notsluggish";i:9654;s:15:"notverysluggish";i:9655;s:8:"notslump";i:9656;s:12:"notveryslump";i:9657;s:7:"notslur";i:9658;s:11:"notveryslur";i:9659;s:6:"notsly";i:9660;s:10:"notverysly";i:9661;s:8:"notsmack";i:9662;s:12:"notverysmack";i:9663;s:8:"notsmash";i:9664;s:12:"notverysmash";i:9665;s:8:"notsmear";i:9666;s:12:"notverysmear";i:9667;s:11:"notsmelling";i:9668;s:15:"notverysmelling";i:9669;s:14:"notsmokescreen";i:9670;s:18:"notverysmokescreen";i:9671;s:10:"notsmolder";i:9672;s:14:"notverysmolder";i:9673;s:13:"notsmoldering";i:9674;s:17:"notverysmoldering";i:9675;s:10:"notsmother";i:9676;s:14:"notverysmother";i:9677;s:11:"notsmoulder";i:9678;s:15:"notverysmoulder";i:9679;s:14:"notsmouldering";i:9680;s:18:"notverysmouldering";i:9681;s:7:"notsmug";i:9682;s:11:"notverysmug";i:9683;s:9:"notsmugly";i:9684;s:13:"notverysmugly";i:9685;s:7:"notsmut";i:9686;s:11:"notverysmut";i:9687;s:11:"notsmuttier";i:9688;s:15:"notverysmuttier";i:9689;s:12:"notsmuttiest";i:9690;s:16:"notverysmuttiest";i:9691;s:9:"notsmutty";i:9692;s:13:"notverysmutty";i:9693;s:8:"notsnare";i:9694;s:12:"notverysnare";i:9695;s:8:"notsnarl";i:9696;s:12:"notverysnarl";i:9697;s:9:"notsnatch";i:9698;s:13:"notverysnatch";i:9699;s:8:"notsneak";i:9700;s:12:"notverysneak";i:9701;s:11:"notsneakily";i:9702;s:15:"notverysneakily";i:9703;s:9:"notsneaky";i:9704;s:13:"notverysneaky";i:9705;s:8:"notsneer";i:9706;s:12:"notverysneer";i:9707;s:11:"notsneering";i:9708;s:15:"notverysneering";i:9709;s:13:"notsneeringly";i:9710;s:17:"notverysneeringly";i:9711;s:7:"notsnub";i:9712;s:11:"notverysnub";i:9713;s:9:"notso-cal";i:9714;s:13:"notveryso-cal";i:9715;s:12:"notso-called";i:9716;s:16:"notveryso-called";i:9717;s:6:"notsob";i:9718;s:10:"notverysob";i:9719;s:8:"notsober";i:9720;s:12:"notverysober";i:9721;s:11:"notsobering";i:9722;s:15:"notverysobering";i:9723;s:9:"notsolemn";i:9724;s:13:"notverysolemn";i:9725;s:9:"notsomber";i:9726;s:13:"notverysomber";i:9727;s:7:"notsore";i:9728;s:11:"notverysore";i:9729;s:9:"notsorely";i:9730;s:13:"notverysorely";i:9731;s:11:"notsoreness";i:9732;s:15:"notverysoreness";i:9733;s:9:"notsorrow";i:9734;s:13:"notverysorrow";i:9735;s:12:"notsorrowful";i:9736;s:16:"notverysorrowful";i:9737;s:14:"notsorrowfully";i:9738;s:18:"notverysorrowfully";i:9739;s:11:"notsounding";i:9740;s:15:"notverysounding";i:9741;s:7:"notsour";i:9742;s:11:"notverysour";i:9743;s:9:"notsourly";i:9744;s:13:"notverysourly";i:9745;s:8:"notspade";i:9746;s:12:"notveryspade";i:9747;s:8:"notspank";i:9748;s:12:"notveryspank";i:9749;s:11:"notspilling";i:9750;s:15:"notveryspilling";i:9751;s:11:"notspinster";i:9752;s:15:"notveryspinster";i:9753;s:13:"notspiritless";i:9754;s:17:"notveryspiritless";i:9755;s:8:"notspite";i:9756;s:12:"notveryspite";i:9757;s:13:"notspitefully";i:9758;s:17:"notveryspitefully";i:9759;s:15:"notspitefulness";i:9760;s:19:"notveryspitefulness";i:9761;s:8:"notsplit";i:9762;s:12:"notverysplit";i:9763;s:12:"notsplitting";i:9764;s:16:"notverysplitting";i:9765;s:8:"notspoil";i:9766;s:12:"notveryspoil";i:9767;s:8:"notspook";i:9768;s:12:"notveryspook";i:9769;s:11:"notspookier";i:9770;s:15:"notveryspookier";i:9771;s:12:"notspookiest";i:9772;s:16:"notveryspookiest";i:9773;s:11:"notspookily";i:9774;s:15:"notveryspookily";i:9775;s:9:"notspooky";i:9776;s:13:"notveryspooky";i:9777;s:12:"notspoon-fed";i:9778;s:16:"notveryspoon-fed";i:9779;s:13:"notspoon-feed";i:9780;s:17:"notveryspoon-feed";i:9781;s:11:"notspoonfed";i:9782;s:15:"notveryspoonfed";i:9783;s:11:"notsporadic";i:9784;s:15:"notverysporadic";i:9785;s:7:"notspot";i:9786;s:11:"notveryspot";i:9787;s:9:"notspotty";i:9788;s:13:"notveryspotty";i:9789;s:11:"notspurious";i:9790;s:15:"notveryspurious";i:9791;s:8:"notspurn";i:9792;s:12:"notveryspurn";i:9793;s:10:"notsputter";i:9794;s:14:"notverysputter";i:9795;s:11:"notsquabble";i:9796;s:15:"notverysquabble";i:9797;s:13:"notsquabbling";i:9798;s:17:"notverysquabbling";i:9799;s:11:"notsquander";i:9800;s:15:"notverysquander";i:9801;s:9:"notsquash";i:9802;s:13:"notverysquash";i:9803;s:9:"notsquirm";i:9804;s:13:"notverysquirm";i:9805;s:7:"notstab";i:9806;s:11:"notverystab";i:9807;s:10:"notstagger";i:9808;s:14:"notverystagger";i:9809;s:13:"notstaggering";i:9810;s:17:"notverystaggering";i:9811;s:15:"notstaggeringly";i:9812;s:19:"notverystaggeringly";i:9813;s:11:"notstagnant";i:9814;s:15:"notverystagnant";i:9815;s:11:"notstagnate";i:9816;s:15:"notverystagnate";i:9817;s:13:"notstagnation";i:9818;s:17:"notverystagnation";i:9819;s:8:"notstaid";i:9820;s:12:"notverystaid";i:9821;s:8:"notstain";i:9822;s:12:"notverystain";i:9823;s:8:"notstake";i:9824;s:12:"notverystake";i:9825;s:8:"notstale";i:9826;s:12:"notverystale";i:9827;s:12:"notstalemate";i:9828;s:16:"notverystalemate";i:9829;s:10:"notstammer";i:9830;s:14:"notverystammer";i:9831;s:11:"notstampede";i:9832;s:15:"notverystampede";i:9833;s:13:"notstandstill";i:9834;s:17:"notverystandstill";i:9835;s:8:"notstark";i:9836;s:12:"notverystark";i:9837;s:10:"notstarkly";i:9838;s:14:"notverystarkly";i:9839;s:10:"notstartle";i:9840;s:14:"notverystartle";i:9841;s:12:"notstartling";i:9842;s:16:"notverystartling";i:9843;s:14:"notstartlingly";i:9844;s:18:"notverystartlingly";i:9845;s:13:"notstarvation";i:9846;s:17:"notverystarvation";i:9847;s:9:"notstarve";i:9848;s:13:"notverystarve";i:9849;s:9:"notstatic";i:9850;s:13:"notverystatic";i:9851;s:8:"notsteal";i:9852;s:12:"notverysteal";i:9853;s:11:"notstealing";i:9854;s:15:"notverystealing";i:9855;s:8:"notsteep";i:9856;s:12:"notverysteep";i:9857;s:10:"notsteeply";i:9858;s:14:"notverysteeply";i:9859;s:9:"notstench";i:9860;s:13:"notverystench";i:9861;s:13:"notstereotype";i:9862;s:17:"notverystereotype";i:9863;s:16:"notstereotypical";i:9864;s:20:"notverystereotypical";i:9865;s:18:"notstereotypically";i:9866;s:22:"notverystereotypically";i:9867;s:8:"notstern";i:9868;s:12:"notverystern";i:9869;s:7:"notstew";i:9870;s:11:"notverystew";i:9871;s:9:"notsticky";i:9872;s:13:"notverysticky";i:9873;s:8:"notstiff";i:9874;s:12:"notverystiff";i:9875;s:9:"notstifle";i:9876;s:13:"notverystifle";i:9877;s:11:"notstifling";i:9878;s:15:"notverystifling";i:9879;s:13:"notstiflingly";i:9880;s:17:"notverystiflingly";i:9881;s:9:"notstigma";i:9882;s:13:"notverystigma";i:9883;s:13:"notstigmatize";i:9884;s:17:"notverystigmatize";i:9885;s:8:"notsting";i:9886;s:12:"notverysting";i:9887;s:11:"notstinging";i:9888;s:15:"notverystinging";i:9889;s:13:"notstingingly";i:9890;s:17:"notverystingingly";i:9891;s:8:"notstink";i:9892;s:12:"notverystink";i:9893;s:11:"notstinking";i:9894;s:15:"notverystinking";i:9895;s:9:"notstodgy";i:9896;s:13:"notverystodgy";i:9897;s:8:"notstole";i:9898;s:12:"notverystole";i:9899;s:9:"notstolen";i:9900;s:13:"notverystolen";i:9901;s:9:"notstooge";i:9902;s:13:"notverystooge";i:9903;s:10:"notstooges";i:9904;s:14:"notverystooges";i:9905;s:8:"notstorm";i:9906;s:12:"notverystorm";i:9907;s:9:"notstormy";i:9908;s:13:"notverystormy";i:9909;s:11:"notstraggle";i:9910;s:15:"notverystraggle";i:9911;s:12:"notstraggler";i:9912;s:16:"notverystraggler";i:9913;s:9:"notstrain";i:9914;s:13:"notverystrain";i:9915;s:11:"notstrained";i:9916;s:15:"notverystrained";i:9917;s:12:"notstrangely";i:9918;s:16:"notverystrangely";i:9919;s:11:"notstranger";i:9920;s:15:"notverystranger";i:9921;s:12:"notstrangest";i:9922;s:16:"notverystrangest";i:9923;s:11:"notstrangle";i:9924;s:15:"notverystrangle";i:9925;s:12:"notstrenuous";i:9926;s:16:"notverystrenuous";i:9927;s:9:"notstress";i:9928;s:13:"notverystress";i:9929;s:12:"notstressful";i:9930;s:16:"notverystressful";i:9931;s:14:"notstressfully";i:9932;s:18:"notverystressfully";i:9933;s:11:"notstricken";i:9934;s:15:"notverystricken";i:9935;s:9:"notstrict";i:9936;s:13:"notverystrict";i:9937;s:11:"notstrictly";i:9938;s:15:"notverystrictly";i:9939;s:11:"notstrident";i:9940;s:15:"notverystrident";i:9941;s:13:"notstridently";i:9942;s:17:"notverystridently";i:9943;s:9:"notstrife";i:9944;s:13:"notverystrife";i:9945;s:9:"notstrike";i:9946;s:13:"notverystrike";i:9947;s:12:"notstringent";i:9948;s:16:"notverystringent";i:9949;s:14:"notstringently";i:9950;s:18:"notverystringently";i:9951;s:9:"notstruck";i:9952;s:13:"notverystruck";i:9953;s:11:"notstruggle";i:9954;s:15:"notverystruggle";i:9955;s:8:"notstrut";i:9956;s:12:"notverystrut";i:9957;s:11:"notstubborn";i:9958;s:15:"notverystubborn";i:9959;s:13:"notstubbornly";i:9960;s:17:"notverystubbornly";i:9961;s:15:"notstubbornness";i:9962;s:19:"notverystubbornness";i:9963;s:9:"notstuffy";i:9964;s:13:"notverystuffy";i:9965;s:10:"notstumble";i:9966;s:14:"notverystumble";i:9967;s:8:"notstump";i:9968;s:12:"notverystump";i:9969;s:7:"notstun";i:9970;s:11:"notverystun";i:9971;s:8:"notstunt";i:9972;s:12:"notverystunt";i:9973;s:10:"notstunted";i:9974;s:14:"notverystunted";i:9975;s:12:"notstupidity";i:9976;s:16:"notverystupidity";i:9977;s:11:"notstupidly";i:9978;s:15:"notverystupidly";i:9979;s:12:"notstupified";i:9980;s:16:"notverystupified";i:9981;s:10:"notstupify";i:9982;s:14:"notverystupify";i:9983;s:9:"notstupor";i:9984;s:13:"notverystupor";i:9985;s:6:"notsty";i:9986;s:10:"notverysty";i:9987;s:10:"notsubdued";i:9988;s:14:"notverysubdued";i:9989;s:12:"notsubjected";i:9990;s:16:"notverysubjected";i:9991;s:13:"notsubjection";i:9992;s:17:"notverysubjection";i:9993;s:12:"notsubjugate";i:9994;s:16:"notverysubjugate";i:9995;s:14:"notsubjugation";i:9996;s:18:"notverysubjugation";i:9997;s:14:"notsubordinate";i:9998;s:18:"notverysubordinate";i:9999;s:15:"notsubservience";i:10000;s:19:"notverysubservience";i:10001;s:14:"notsubservient";i:10002;s:18:"notverysubservient";i:10003;s:10:"notsubside";i:10004;s:14:"notverysubside";i:10005;s:14:"notsubstandard";i:10006;s:18:"notverysubstandard";i:10007;s:11:"notsubtract";i:10008;s:15:"notverysubtract";i:10009;s:13:"notsubversion";i:10010;s:17:"notverysubversion";i:10011;s:13:"notsubversive";i:10012;s:17:"notverysubversive";i:10013;s:15:"notsubversively";i:10014;s:19:"notverysubversively";i:10015;s:10:"notsubvert";i:10016;s:14:"notverysubvert";i:10017;s:10:"notsuccumb";i:10018;s:14:"notverysuccumb";i:10019;s:9:"notsucker";i:10020;s:13:"notverysucker";i:10021;s:9:"notsuffer";i:10022;s:13:"notverysuffer";i:10023;s:11:"notsufferer";i:10024;s:15:"notverysufferer";i:10025;s:12:"notsufferers";i:10026;s:16:"notverysufferers";i:10027;s:12:"notsuffocate";i:10028;s:16:"notverysuffocate";i:10029;s:13:"notsugar-coat";i:10030;s:17:"notverysugar-coat";i:10031;s:15:"notsugar-coated";i:10032;s:19:"notverysugar-coated";i:10033;s:14:"notsugarcoated";i:10034;s:18:"notverysugarcoated";i:10035;s:10:"notsuicide";i:10036;s:14:"notverysuicide";i:10037;s:7:"notsulk";i:10038;s:11:"notverysulk";i:10039;s:9:"notsullen";i:10040;s:13:"notverysullen";i:10041;s:8:"notsully";i:10042;s:12:"notverysully";i:10043;s:9:"notsunder";i:10044;s:13:"notverysunder";i:10045;s:17:"notsuperficiality";i:10046;s:21:"notverysuperficiality";i:10047;s:16:"notsuperficially";i:10048;s:20:"notverysuperficially";i:10049;s:14:"notsuperfluous";i:10050;s:18:"notverysuperfluous";i:10051;s:14:"notsuperiority";i:10052;s:18:"notverysuperiority";i:10053;s:15:"notsuperstition";i:10054;s:19:"notverysuperstition";i:10055;s:16:"notsuperstitious";i:10056;s:20:"notverysuperstitious";i:10057;s:11:"notsupposed";i:10058;s:15:"notverysupposed";i:10059;s:11:"notsuppress";i:10060;s:15:"notverysuppress";i:10061;s:14:"notsuppression";i:10062;s:18:"notverysuppression";i:10063;s:12:"notsupremacy";i:10064;s:16:"notverysupremacy";i:10065;s:12:"notsurrender";i:10066;s:16:"notverysurrender";i:10067;s:14:"notsusceptible";i:10068;s:18:"notverysusceptible";i:10069;s:10:"notsuspect";i:10070;s:14:"notverysuspect";i:10071;s:12:"notsuspicion";i:10072;s:16:"notverysuspicion";i:10073;s:13:"notsuspicions";i:10074;s:17:"notverysuspicions";i:10075;s:15:"notsuspiciously";i:10076;s:19:"notverysuspiciously";i:10077;s:10:"notswagger";i:10078;s:14:"notveryswagger";i:10079;s:10:"notswamped";i:10080;s:14:"notveryswamped";i:10081;s:8:"notswear";i:10082;s:12:"notveryswear";i:10083;s:10:"notswindle";i:10084;s:14:"notveryswindle";i:10085;s:8:"notswipe";i:10086;s:12:"notveryswipe";i:10087;s:8:"notswoon";i:10088;s:12:"notveryswoon";i:10089;s:8:"notswore";i:10090;s:12:"notveryswore";i:10091;s:18:"notsympathetically";i:10092;s:22:"notverysympathetically";i:10093;s:13:"notsympathies";i:10094;s:17:"notverysympathies";i:10095;s:13:"notsympathize";i:10096;s:17:"notverysympathize";i:10097;s:11:"notsympathy";i:10098;s:15:"notverysympathy";i:10099;s:10:"notsymptom";i:10100;s:14:"notverysymptom";i:10101;s:11:"notsyndrome";i:10102;s:15:"notverysyndrome";i:10103;s:8:"nottaboo";i:10104;s:12:"notverytaboo";i:10105;s:8:"nottaint";i:10106;s:12:"notverytaint";i:10107;s:10:"nottainted";i:10108;s:14:"notverytainted";i:10109;s:9:"nottamper";i:10110;s:13:"notverytamper";i:10111;s:10:"nottangled";i:10112;s:14:"notverytangled";i:10113;s:10:"nottantrum";i:10114;s:14:"notverytantrum";i:10115;s:8:"nottardy";i:10116;s:12:"notverytardy";i:10117;s:10:"nottarnish";i:10118;s:14:"notverytarnish";i:10119;s:11:"nottattered";i:10120;s:15:"notverytattered";i:10121;s:8:"nottaunt";i:10122;s:12:"notverytaunt";i:10123;s:11:"nottaunting";i:10124;s:15:"notverytaunting";i:10125;s:13:"nottauntingly";i:10126;s:17:"notverytauntingly";i:10127;s:9:"nottaunts";i:10128;s:13:"notverytaunts";i:10129;s:9:"nottawdry";i:10130;s:13:"notverytawdry";i:10131;s:8:"nottease";i:10132;s:12:"notverytease";i:10133;s:12:"notteasingly";i:10134;s:16:"notveryteasingly";i:10135;s:9:"nottaxing";i:10136;s:13:"notverytaxing";i:10137;s:10:"nottedious";i:10138;s:14:"notverytedious";i:10139;s:12:"nottediously";i:10140;s:16:"notverytediously";i:10141;s:11:"nottemerity";i:10142;s:15:"notverytemerity";i:10143;s:9:"nottemper";i:10144;s:13:"notverytemper";i:10145;s:10:"nottempest";i:10146;s:14:"notverytempest";i:10147;s:13:"nottemptation";i:10148;s:17:"notverytemptation";i:10149;s:8:"nottense";i:10150;s:12:"notverytense";i:10151;s:10:"nottension";i:10152;s:14:"notverytension";i:10153;s:12:"nottentative";i:10154;s:16:"notverytentative";i:10155;s:14:"nottentatively";i:10156;s:18:"notverytentatively";i:10157;s:10:"nottenuous";i:10158;s:14:"notverytenuous";i:10159;s:12:"nottenuously";i:10160;s:16:"notverytenuously";i:10161;s:8:"nottepid";i:10162;s:12:"notverytepid";i:10163;s:11:"notterrible";i:10164;s:15:"notveryterrible";i:10165;s:15:"notterribleness";i:10166;s:19:"notveryterribleness";i:10167;s:11:"notterribly";i:10168;s:15:"notveryterribly";i:10169;s:9:"notterror";i:10170;s:13:"notveryterror";i:10171;s:15:"notterror-genic";i:10172;s:19:"notveryterror-genic";i:10173;s:12:"notterrorism";i:10174;s:16:"notveryterrorism";i:10175;s:12:"notterrorize";i:10176;s:16:"notveryterrorize";i:10177;s:12:"notthankless";i:10178;s:16:"notverythankless";i:10179;s:9:"notthirst";i:10180;s:13:"notverythirst";i:10181;s:9:"notthorny";i:10182;s:13:"notverythorny";i:10183;s:14:"notthoughtless";i:10184;s:18:"notverythoughtless";i:10185;s:16:"notthoughtlessly";i:10186;s:20:"notverythoughtlessly";i:10187;s:18:"notthoughtlessness";i:10188;s:22:"notverythoughtlessness";i:10189;s:9:"notthrash";i:10190;s:13:"notverythrash";i:10191;s:9:"notthreat";i:10192;s:13:"notverythreat";i:10193;s:11:"notthreaten";i:10194;s:15:"notverythreaten";i:10195;s:14:"notthreatening";i:10196;s:18:"notverythreatening";i:10197;s:10:"notthreats";i:10198;s:14:"notverythreats";i:10199;s:11:"notthrottle";i:10200;s:15:"notverythrottle";i:10201;s:8:"notthrow";i:10202;s:12:"notverythrow";i:10203;s:8:"notthumb";i:10204;s:12:"notverythumb";i:10205;s:9:"notthumbs";i:10206;s:13:"notverythumbs";i:10207;s:9:"notthwart";i:10208;s:13:"notverythwart";i:10209;s:8:"nottimid";i:10210;s:12:"notverytimid";i:10211;s:11:"nottimidity";i:10212;s:15:"notverytimidity";i:10213;s:10:"nottimidly";i:10214;s:14:"notverytimidly";i:10215;s:12:"nottimidness";i:10216;s:16:"notverytimidness";i:10217;s:7:"nottiny";i:10218;s:11:"notverytiny";i:10219;s:7:"nottire";i:10220;s:11:"notverytire";i:10221;s:8:"nottired";i:10222;s:12:"notverytired";i:10223;s:11:"nottiresome";i:10224;s:15:"notverytiresome";i:10225;s:9:"nottiring";i:10226;s:13:"notverytiring";i:10227;s:11:"nottiringly";i:10228;s:15:"notverytiringly";i:10229;s:7:"nottoil";i:10230;s:11:"notverytoil";i:10231;s:7:"nottoll";i:10232;s:11:"notverytoll";i:10233;s:9:"nottopple";i:10234;s:13:"notverytopple";i:10235;s:10:"nottorment";i:10236;s:14:"notverytorment";i:10237;s:12:"nottormented";i:10238;s:16:"notverytormented";i:10239;s:10:"nottorrent";i:10240;s:14:"notverytorrent";i:10241;s:10:"nottorture";i:10242;s:14:"notverytorture";i:10243;s:11:"nottortured";i:10244;s:15:"notverytortured";i:10245;s:11:"nottortuous";i:10246;s:15:"notverytortuous";i:10247;s:12:"nottorturous";i:10248;s:16:"notverytorturous";i:10249;s:14:"nottorturously";i:10250;s:18:"notverytorturously";i:10251;s:15:"nottotalitarian";i:10252;s:19:"notverytotalitarian";i:10253;s:9:"nottouchy";i:10254;s:13:"notverytouchy";i:10255;s:12:"nottoughness";i:10256;s:16:"notverytoughness";i:10257;s:8:"nottoxic";i:10258;s:12:"notverytoxic";i:10259;s:10:"nottraduce";i:10260;s:14:"notverytraduce";i:10261;s:10:"nottragedy";i:10262;s:14:"notverytragedy";i:10263;s:9:"nottragic";i:10264;s:13:"notverytragic";i:10265;s:13:"nottragically";i:10266;s:17:"notverytragically";i:10267;s:10:"nottraitor";i:10268;s:14:"notverytraitor";i:10269;s:13:"nottraitorous";i:10270;s:17:"notverytraitorous";i:10271;s:15:"nottraitorously";i:10272;s:19:"notverytraitorously";i:10273;s:8:"nottramp";i:10274;s:12:"notverytramp";i:10275;s:10:"nottrample";i:10276;s:14:"notverytrample";i:10277;s:13:"nottransgress";i:10278;s:17:"notverytransgress";i:10279;s:16:"nottransgression";i:10280;s:20:"notverytransgression";i:10281;s:9:"nottrauma";i:10282;s:13:"notverytrauma";i:10283;s:12:"nottraumatic";i:10284;s:16:"notverytraumatic";i:10285;s:16:"nottraumatically";i:10286;s:20:"notverytraumatically";i:10287;s:13:"nottraumatize";i:10288;s:17:"notverytraumatize";i:10289;s:14:"nottraumatized";i:10290;s:18:"notverytraumatized";i:10291;s:13:"nottravesties";i:10292;s:17:"notverytravesties";i:10293;s:11:"nottravesty";i:10294;s:15:"notverytravesty";i:10295;s:14:"nottreacherous";i:10296;s:18:"notverytreacherous";i:10297;s:16:"nottreacherously";i:10298;s:20:"notverytreacherously";i:10299;s:12:"nottreachery";i:10300;s:16:"notverytreachery";i:10301;s:10:"nottreason";i:10302;s:14:"notverytreason";i:10303;s:13:"nottreasonous";i:10304;s:17:"notverytreasonous";i:10305;s:8:"nottrial";i:10306;s:12:"notverytrial";i:10307;s:8:"nottrick";i:10308;s:12:"notverytrick";i:10309;s:9:"nottricky";i:10310;s:13:"notverytricky";i:10311;s:11:"nottrickery";i:10312;s:15:"notverytrickery";i:10313;s:10:"nottrivial";i:10314;s:14:"notverytrivial";i:10315;s:13:"nottrivialize";i:10316;s:17:"notverytrivialize";i:10317;s:12:"nottrivially";i:10318;s:16:"notverytrivially";i:10319;s:10:"nottrouble";i:10320;s:14:"notverytrouble";i:10321;s:15:"nottroublemaker";i:10322;s:19:"notverytroublemaker";i:10323;s:14:"nottroublesome";i:10324;s:18:"notverytroublesome";i:10325;s:16:"nottroublesomely";i:10326;s:20:"notverytroublesomely";i:10327;s:12:"nottroubling";i:10328;s:16:"notverytroubling";i:10329;s:14:"nottroublingly";i:10330;s:18:"notverytroublingly";i:10331;s:9:"nottruant";i:10332;s:13:"notverytruant";i:10333;s:13:"nottumultuous";i:10334;s:17:"notverytumultuous";i:10335;s:12:"notturbulent";i:10336;s:16:"notveryturbulent";i:10337;s:10:"notturmoil";i:10338;s:14:"notveryturmoil";i:10339;s:8:"nottwist";i:10340;s:12:"notverytwist";i:10341;s:10:"nottwisted";i:10342;s:14:"notverytwisted";i:10343;s:9:"nottwists";i:10344;s:13:"notverytwists";i:10345;s:13:"nottyrannical";i:10346;s:17:"notverytyrannical";i:10347;s:15:"nottyrannically";i:10348;s:19:"notverytyrannically";i:10349;s:10:"nottyranny";i:10350;s:14:"notverytyranny";i:10351;s:9:"nottyrant";i:10352;s:13:"notverytyrant";i:10353;s:6:"notugh";i:10354;s:10:"notveryugh";i:10355;s:11:"notugliness";i:10356;s:15:"notveryugliness";i:10357;s:7:"notugly";i:10358;s:11:"notveryugly";i:10359;s:11:"notulterior";i:10360;s:15:"notveryulterior";i:10361;s:12:"notultimatum";i:10362;s:16:"notveryultimatum";i:10363;s:13:"notultimatums";i:10364;s:17:"notveryultimatums";i:10365;s:17:"notultra-hardline";i:10366;s:21:"notveryultra-hardline";i:10367;s:9:"notunable";i:10368;s:13:"notveryunable";i:10369;s:15:"notunacceptable";i:10370;s:19:"notveryunacceptable";i:10371;s:17:"notunacceptablely";i:10372;s:21:"notveryunacceptablely";i:10373;s:15:"notunaccustomed";i:10374;s:19:"notveryunaccustomed";i:10375;s:15:"notunattractive";i:10376;s:19:"notveryunattractive";i:10377;s:14:"notunauthentic";i:10378;s:18:"notveryunauthentic";i:10379;s:14:"notunavailable";i:10380;s:18:"notveryunavailable";i:10381;s:14:"notunavoidable";i:10382;s:18:"notveryunavoidable";i:10383;s:14:"notunavoidably";i:10384;s:18:"notveryunavoidably";i:10385;s:13:"notunbearable";i:10386;s:17:"notveryunbearable";i:10387;s:15:"notunbearablely";i:10388;s:19:"notveryunbearablely";i:10389;s:15:"notunbelievable";i:10390;s:19:"notveryunbelievable";i:10391;s:15:"notunbelievably";i:10392;s:19:"notveryunbelievably";i:10393;s:12:"notuncertain";i:10394;s:16:"notveryuncertain";i:10395;s:10:"notuncivil";i:10396;s:14:"notveryuncivil";i:10397;s:14:"notuncivilized";i:10398;s:18:"notveryuncivilized";i:10399;s:10:"notunclean";i:10400;s:14:"notveryunclean";i:10401;s:10:"notunclear";i:10402;s:14:"notveryunclear";i:10403;s:16:"notuncollectible";i:10404;s:20:"notveryuncollectible";i:10405;s:16:"notuncomfortable";i:10406;s:20:"notveryuncomfortable";i:10407;s:16:"notuncompetitive";i:10408;s:20:"notveryuncompetitive";i:10409;s:17:"notuncompromising";i:10410;s:21:"notveryuncompromising";i:10411;s:19:"notuncompromisingly";i:10412;s:23:"notveryuncompromisingly";i:10413;s:14:"notunconfirmed";i:10414;s:18:"notveryunconfirmed";i:10415;s:19:"notunconstitutional";i:10416;s:23:"notveryunconstitutional";i:10417;s:15:"notuncontrolled";i:10418;s:19:"notveryuncontrolled";i:10419;s:15:"notunconvincing";i:10420;s:19:"notveryunconvincing";i:10421;s:17:"notunconvincingly";i:10422;s:21:"notveryunconvincingly";i:10423;s:10:"notuncouth";i:10424;s:14:"notveryuncouth";i:10425;s:12:"notundecided";i:10426;s:16:"notveryundecided";i:10427;s:12:"notundefined";i:10428;s:16:"notveryundefined";i:10429;s:18:"notundependability";i:10430;s:22:"notveryundependability";i:10431;s:15:"notundependable";i:10432;s:19:"notveryundependable";i:10433;s:11:"notunderdog";i:10434;s:15:"notveryunderdog";i:10435;s:16:"notunderestimate";i:10436;s:20:"notveryunderestimate";i:10437;s:13:"notunderlings";i:10438;s:17:"notveryunderlings";i:10439;s:12:"notundermine";i:10440;s:16:"notveryundermine";i:10441;s:12:"notunderpaid";i:10442;s:16:"notveryunderpaid";i:10443;s:14:"notundesirable";i:10444;s:18:"notveryundesirable";i:10445;s:15:"notundetermined";i:10446;s:19:"notveryundetermined";i:10447;s:8:"notundid";i:10448;s:12:"notveryundid";i:10449;s:14:"notundignified";i:10450;s:18:"notveryundignified";i:10451;s:7:"notundo";i:10452;s:11:"notveryundo";i:10453;s:15:"notundocumented";i:10454;s:19:"notveryundocumented";i:10455;s:9:"notundone";i:10456;s:13:"notveryundone";i:10457;s:8:"notundue";i:10458;s:12:"notveryundue";i:10459;s:9:"notunease";i:10460;s:13:"notveryunease";i:10461;s:11:"notuneasily";i:10462;s:15:"notveryuneasily";i:10463;s:13:"notuneasiness";i:10464;s:17:"notveryuneasiness";i:10465;s:9:"notuneasy";i:10466;s:13:"notveryuneasy";i:10467;s:15:"notuneconomical";i:10468;s:19:"notveryuneconomical";i:10469;s:10:"notunequal";i:10470;s:14:"notveryunequal";i:10471;s:12:"notunethical";i:10472;s:16:"notveryunethical";i:10473;s:9:"notuneven";i:10474;s:13:"notveryuneven";i:10475;s:13:"notuneventful";i:10476;s:17:"notveryuneventful";i:10477;s:13:"notunexpected";i:10478;s:17:"notveryunexpected";i:10479;s:15:"notunexpectedly";i:10480;s:19:"notveryunexpectedly";i:10481;s:14:"notunexplained";i:10482;s:18:"notveryunexplained";i:10483;s:9:"notunfair";i:10484;s:13:"notveryunfair";i:10485;s:11:"notunfairly";i:10486;s:15:"notveryunfairly";i:10487;s:13:"notunfaithful";i:10488;s:17:"notveryunfaithful";i:10489;s:15:"notunfaithfully";i:10490;s:19:"notveryunfaithfully";i:10491;s:13:"notunfamiliar";i:10492;s:17:"notveryunfamiliar";i:10493;s:14:"notunfavorable";i:10494;s:18:"notveryunfavorable";i:10495;s:12:"notunfeeling";i:10496;s:16:"notveryunfeeling";i:10497;s:13:"notunfinished";i:10498;s:17:"notveryunfinished";i:10499;s:8:"notunfit";i:10500;s:12:"notveryunfit";i:10501;s:13:"notunforeseen";i:10502;s:17:"notveryunforeseen";i:10503;s:14:"notunfortunate";i:10504;s:18:"notveryunfortunate";i:10505;s:12:"notunfounded";i:10506;s:16:"notveryunfounded";i:10507;s:13:"notunfriendly";i:10508;s:17:"notveryunfriendly";i:10509;s:14:"notunfulfilled";i:10510;s:18:"notveryunfulfilled";i:10511;s:11:"notunfunded";i:10512;s:15:"notveryunfunded";i:10513;s:13:"notungrateful";i:10514;s:17:"notveryungrateful";i:10515;s:15:"notungovernable";i:10516;s:19:"notveryungovernable";i:10517;s:12:"notunhappily";i:10518;s:16:"notveryunhappily";i:10519;s:14:"notunhappiness";i:10520;s:18:"notveryunhappiness";i:10521;s:10:"notunhappy";i:10522;s:14:"notveryunhappy";i:10523;s:12:"notunhealthy";i:10524;s:16:"notveryunhealthy";i:10525;s:16:"notunilateralism";i:10526;s:20:"notveryunilateralism";i:10527;s:15:"notunimaginable";i:10528;s:19:"notveryunimaginable";i:10529;s:15:"notunimaginably";i:10530;s:19:"notveryunimaginably";i:10531;s:14:"notunimportant";i:10532;s:18:"notveryunimportant";i:10533;s:13:"notuninformed";i:10534;s:17:"notveryuninformed";i:10535;s:12:"notuninsured";i:10536;s:16:"notveryuninsured";i:10537;s:11:"notunipolar";i:10538;s:15:"notveryunipolar";i:10539;s:9:"notunjust";i:10540;s:13:"notveryunjust";i:10541;s:16:"notunjustifiable";i:10542;s:20:"notveryunjustifiable";i:10543;s:16:"notunjustifiably";i:10544;s:20:"notveryunjustifiably";i:10545;s:14:"notunjustified";i:10546;s:18:"notveryunjustified";i:10547;s:11:"notunjustly";i:10548;s:15:"notveryunjustly";i:10549;s:9:"notunkind";i:10550;s:13:"notveryunkind";i:10551;s:11:"notunkindly";i:10552;s:15:"notveryunkindly";i:10553;s:15:"notunlamentable";i:10554;s:19:"notveryunlamentable";i:10555;s:15:"notunlamentably";i:10556;s:19:"notveryunlamentably";i:10557;s:11:"notunlawful";i:10558;s:15:"notveryunlawful";i:10559;s:13:"notunlawfully";i:10560;s:17:"notveryunlawfully";i:10561;s:15:"notunlawfulness";i:10562;s:19:"notveryunlawfulness";i:10563;s:10:"notunleash";i:10564;s:14:"notveryunleash";i:10565;s:13:"notunlicensed";i:10566;s:17:"notveryunlicensed";i:10567;s:10:"notunlucky";i:10568;s:14:"notveryunlucky";i:10569;s:10:"notunmoved";i:10570;s:14:"notveryunmoved";i:10571;s:12:"notunnatural";i:10572;s:16:"notveryunnatural";i:10573;s:14:"notunnaturally";i:10574;s:18:"notveryunnaturally";i:10575;s:14:"notunnecessary";i:10576;s:18:"notveryunnecessary";i:10577;s:11:"notunneeded";i:10578;s:15:"notveryunneeded";i:10579;s:10:"notunnerve";i:10580;s:14:"notveryunnerve";i:10581;s:11:"notunnerved";i:10582;s:15:"notveryunnerved";i:10583;s:12:"notunnerving";i:10584;s:16:"notveryunnerving";i:10585;s:14:"notunnervingly";i:10586;s:18:"notveryunnervingly";i:10587;s:12:"notunnoticed";i:10588;s:16:"notveryunnoticed";i:10589;s:13:"notunobserved";i:10590;s:17:"notveryunobserved";i:10591;s:13:"notunorthodox";i:10592;s:17:"notveryunorthodox";i:10593;s:14:"notunorthodoxy";i:10594;s:18:"notveryunorthodoxy";i:10595;s:13:"notunpleasant";i:10596;s:17:"notveryunpleasant";i:10597;s:17:"notunpleasantries";i:10598;s:21:"notveryunpleasantries";i:10599;s:12:"notunpopular";i:10600;s:16:"notveryunpopular";i:10601;s:14:"notunprecedent";i:10602;s:18:"notveryunprecedent";i:10603;s:16:"notunprecedented";i:10604;s:20:"notveryunprecedented";i:10605;s:16:"notunpredictable";i:10606;s:20:"notveryunpredictable";i:10607;s:13:"notunprepared";i:10608;s:17:"notveryunprepared";i:10609;s:15:"notunproductive";i:10610;s:19:"notveryunproductive";i:10611;s:15:"notunprofitable";i:10612;s:19:"notveryunprofitable";i:10613;s:14:"notunqualified";i:10614;s:18:"notveryunqualified";i:10615;s:10:"notunravel";i:10616;s:14:"notveryunravel";i:10617;s:12:"notunraveled";i:10618;s:16:"notveryunraveled";i:10619;s:14:"notunrealistic";i:10620;s:18:"notveryunrealistic";i:10621;s:15:"notunreasonable";i:10622;s:19:"notveryunreasonable";i:10623;s:15:"notunreasonably";i:10624;s:19:"notveryunreasonably";i:10625;s:14:"notunrelenting";i:10626;s:18:"notveryunrelenting";i:10627;s:16:"notunrelentingly";i:10628;s:20:"notveryunrelentingly";i:10629;s:16:"notunreliability";i:10630;s:20:"notveryunreliability";i:10631;s:13:"notunreliable";i:10632;s:17:"notveryunreliable";i:10633;s:13:"notunresolved";i:10634;s:17:"notveryunresolved";i:10635;s:9:"notunrest";i:10636;s:13:"notveryunrest";i:10637;s:9:"notunruly";i:10638;s:13:"notveryunruly";i:10639;s:9:"notunsafe";i:10640;s:13:"notveryunsafe";i:10641;s:17:"notunsatisfactory";i:10642;s:21:"notveryunsatisfactory";i:10643;s:11:"notunsavory";i:10644;s:15:"notveryunsavory";i:10645;s:15:"notunscrupulous";i:10646;s:19:"notveryunscrupulous";i:10647;s:17:"notunscrupulously";i:10648;s:21:"notveryunscrupulously";i:10649;s:11:"notunseemly";i:10650;s:15:"notveryunseemly";i:10651;s:11:"notunsettle";i:10652;s:15:"notveryunsettle";i:10653;s:12:"notunsettled";i:10654;s:16:"notveryunsettled";i:10655;s:13:"notunsettling";i:10656;s:17:"notveryunsettling";i:10657;s:15:"notunsettlingly";i:10658;s:19:"notveryunsettlingly";i:10659;s:12:"notunskilled";i:10660;s:16:"notveryunskilled";i:10661;s:18:"notunsophisticated";i:10662;s:22:"notveryunsophisticated";i:10663;s:10:"notunsound";i:10664;s:14:"notveryunsound";i:10665;s:14:"notunspeakable";i:10666;s:18:"notveryunspeakable";i:10667;s:16:"notunspeakablely";i:10668;s:20:"notveryunspeakablely";i:10669;s:14:"notunspecified";i:10670;s:18:"notveryunspecified";i:10671;s:11:"notunstable";i:10672;s:15:"notveryunstable";i:10673;s:13:"notunsteadily";i:10674;s:17:"notveryunsteadily";i:10675;s:15:"notunsteadiness";i:10676;s:19:"notveryunsteadiness";i:10677;s:11:"notunsteady";i:10678;s:15:"notveryunsteady";i:10679;s:15:"notunsuccessful";i:10680;s:19:"notveryunsuccessful";i:10681;s:17:"notunsuccessfully";i:10682;s:21:"notveryunsuccessfully";i:10683;s:14:"notunsupported";i:10684;s:18:"notveryunsupported";i:10685;s:9:"notunsure";i:10686;s:13:"notveryunsure";i:10687;s:15:"notunsuspecting";i:10688;s:19:"notveryunsuspecting";i:10689;s:16:"notunsustainable";i:10690;s:20:"notveryunsustainable";i:10691;s:12:"notuntenable";i:10692;s:16:"notveryuntenable";i:10693;s:11:"notuntested";i:10694;s:15:"notveryuntested";i:10695;s:14:"notunthinkable";i:10696;s:18:"notveryunthinkable";i:10697;s:14:"notunthinkably";i:10698;s:18:"notveryunthinkably";i:10699;s:11:"notuntimely";i:10700;s:15:"notveryuntimely";i:10701;s:9:"notuntrue";i:10702;s:13:"notveryuntrue";i:10703;s:16:"notuntrustworthy";i:10704;s:20:"notveryuntrustworthy";i:10705;s:13:"notuntruthful";i:10706;s:17:"notveryuntruthful";i:10707;s:10:"notunusual";i:10708;s:14:"notveryunusual";i:10709;s:12:"notunusually";i:10710;s:16:"notveryunusually";i:10711;s:11:"notunwanted";i:10712;s:15:"notveryunwanted";i:10713;s:14:"notunwarranted";i:10714;s:18:"notveryunwarranted";i:10715;s:12:"notunwelcome";i:10716;s:16:"notveryunwelcome";i:10717;s:11:"notunwieldy";i:10718;s:15:"notveryunwieldy";i:10719;s:12:"notunwilling";i:10720;s:16:"notveryunwilling";i:10721;s:14:"notunwillingly";i:10722;s:18:"notveryunwillingly";i:10723;s:16:"notunwillingness";i:10724;s:20:"notveryunwillingness";i:10725;s:9:"notunwise";i:10726;s:13:"notveryunwise";i:10727;s:11:"notunwisely";i:10728;s:15:"notveryunwisely";i:10729;s:13:"notunworkable";i:10730;s:17:"notveryunworkable";i:10731;s:11:"notunworthy";i:10732;s:15:"notveryunworthy";i:10733;s:13:"notunyielding";i:10734;s:17:"notveryunyielding";i:10735;s:10:"notupbraid";i:10736;s:14:"notveryupbraid";i:10737;s:11:"notupheaval";i:10738;s:15:"notveryupheaval";i:10739;s:11:"notuprising";i:10740;s:15:"notveryuprising";i:10741;s:9:"notuproar";i:10742;s:13:"notveryuproar";i:10743;s:13:"notuproarious";i:10744;s:17:"notveryuproarious";i:10745;s:15:"notuproariously";i:10746;s:19:"notveryuproariously";i:10747;s:12:"notuproarous";i:10748;s:16:"notveryuproarous";i:10749;s:14:"notuproarously";i:10750;s:18:"notveryuproarously";i:10751;s:9:"notuproot";i:10752;s:13:"notveryuproot";i:10753;s:8:"notupset";i:10754;s:12:"notveryupset";i:10755;s:12:"notupsetting";i:10756;s:16:"notveryupsetting";i:10757;s:14:"notupsettingly";i:10758;s:18:"notveryupsettingly";i:10759;s:10:"noturgency";i:10760;s:14:"notveryurgency";i:10761;s:9:"noturgent";i:10762;s:13:"notveryurgent";i:10763;s:11:"noturgently";i:10764;s:15:"notveryurgently";i:10765;s:10:"notuseless";i:10766;s:14:"notveryuseless";i:10767;s:8:"notusurp";i:10768;s:12:"notveryusurp";i:10769;s:10:"notusurper";i:10770;s:14:"notveryusurper";i:10771;s:8:"notutter";i:10772;s:12:"notveryutter";i:10773;s:10:"notutterly";i:10774;s:14:"notveryutterly";i:10775;s:10:"notvagrant";i:10776;s:14:"notveryvagrant";i:10777;s:8:"notvague";i:10778;s:12:"notveryvague";i:10779;s:12:"notvagueness";i:10780;s:16:"notveryvagueness";i:10781;s:7:"notvain";i:10782;s:11:"notveryvain";i:10783;s:9:"notvainly";i:10784;s:13:"notveryvainly";i:10785;s:9:"notvanish";i:10786;s:13:"notveryvanish";i:10787;s:9:"notvanity";i:10788;s:13:"notveryvanity";i:10789;s:11:"notvehement";i:10790;s:15:"notveryvehement";i:10791;s:13:"notvehemently";i:10792;s:17:"notveryvehemently";i:10793;s:12:"notvengeance";i:10794;s:16:"notveryvengeance";i:10795;s:11:"notvengeful";i:10796;s:15:"notveryvengeful";i:10797;s:13:"notvengefully";i:10798;s:17:"notveryvengefully";i:10799;s:15:"notvengefulness";i:10800;s:19:"notveryvengefulness";i:10801;s:8:"notvenom";i:10802;s:12:"notveryvenom";i:10803;s:11:"notvenomous";i:10804;s:15:"notveryvenomous";i:10805;s:13:"notvenomously";i:10806;s:17:"notveryvenomously";i:10807;s:7:"notvent";i:10808;s:11:"notveryvent";i:10809;s:11:"notvestiges";i:10810;s:15:"notveryvestiges";i:10811;s:7:"notveto";i:10812;s:11:"notveryveto";i:10813;s:6:"notvex";i:10814;s:10:"notveryvex";i:10815;s:11:"notvexation";i:10816;s:15:"notveryvexation";i:10817;s:9:"notvexing";i:10818;s:13:"notveryvexing";i:10819;s:11:"notvexingly";i:10820;s:15:"notveryvexingly";i:10821;s:7:"notvice";i:10822;s:11:"notveryvice";i:10823;s:10:"notvicious";i:10824;s:14:"notveryvicious";i:10825;s:12:"notviciously";i:10826;s:16:"notveryviciously";i:10827;s:14:"notviciousness";i:10828;s:18:"notveryviciousness";i:10829;s:12:"notvictimize";i:10830;s:16:"notveryvictimize";i:10831;s:6:"notvie";i:10832;s:10:"notveryvie";i:10833;s:7:"notvile";i:10834;s:11:"notveryvile";i:10835;s:11:"notvileness";i:10836;s:15:"notveryvileness";i:10837;s:9:"notvilify";i:10838;s:13:"notveryvilify";i:10839;s:13:"notvillainous";i:10840;s:17:"notveryvillainous";i:10841;s:15:"notvillainously";i:10842;s:19:"notveryvillainously";i:10843;s:11:"notvillains";i:10844;s:15:"notveryvillains";i:10845;s:10:"notvillian";i:10846;s:14:"notveryvillian";i:10847;s:13:"notvillianous";i:10848;s:17:"notveryvillianous";i:10849;s:15:"notvillianously";i:10850;s:19:"notveryvillianously";i:10851;s:10:"notvillify";i:10852;s:14:"notveryvillify";i:10853;s:13:"notvindictive";i:10854;s:17:"notveryvindictive";i:10855;s:15:"notvindictively";i:10856;s:19:"notveryvindictively";i:10857;s:17:"notvindictiveness";i:10858;s:21:"notveryvindictiveness";i:10859;s:10:"notviolate";i:10860;s:14:"notveryviolate";i:10861;s:12:"notviolation";i:10862;s:16:"notveryviolation";i:10863;s:11:"notviolator";i:10864;s:15:"notveryviolator";i:10865;s:10:"notviolent";i:10866;s:14:"notveryviolent";i:10867;s:12:"notviolently";i:10868;s:16:"notveryviolently";i:10869;s:8:"notviper";i:10870;s:12:"notveryviper";i:10871;s:12:"notvirulence";i:10872;s:16:"notveryvirulence";i:10873;s:11:"notvirulent";i:10874;s:15:"notveryvirulent";i:10875;s:13:"notvirulently";i:10876;s:17:"notveryvirulently";i:10877;s:8:"notvirus";i:10878;s:12:"notveryvirus";i:10879;s:10:"notvocally";i:10880;s:14:"notveryvocally";i:10881;s:13:"notvociferous";i:10882;s:17:"notveryvociferous";i:10883;s:15:"notvociferously";i:10884;s:19:"notveryvociferously";i:10885;s:7:"notvoid";i:10886;s:11:"notveryvoid";i:10887;s:11:"notvolatile";i:10888;s:15:"notveryvolatile";i:10889;s:13:"notvolatility";i:10890;s:17:"notveryvolatility";i:10891;s:8:"notvomit";i:10892;s:12:"notveryvomit";i:10893;s:9:"notvulgar";i:10894;s:13:"notveryvulgar";i:10895;s:7:"notwail";i:10896;s:11:"notverywail";i:10897;s:9:"notwallow";i:10898;s:13:"notverywallow";i:10899;s:7:"notwane";i:10900;s:11:"notverywane";i:10901;s:9:"notwaning";i:10902;s:13:"notverywaning";i:10903;s:9:"notwanton";i:10904;s:13:"notverywanton";i:10905;s:6:"notwar";i:10906;s:10:"notverywar";i:10907;s:11:"notwar-like";i:10908;s:15:"notverywar-like";i:10909;s:10:"notwarfare";i:10910;s:14:"notverywarfare";i:10911;s:10:"notwarlike";i:10912;s:14:"notverywarlike";i:10913;s:10:"notwarning";i:10914;s:14:"notverywarning";i:10915;s:7:"notwarp";i:10916;s:11:"notverywarp";i:10917;s:9:"notwarped";i:10918;s:13:"notverywarped";i:10919;s:7:"notwary";i:10920;s:11:"notverywary";i:10921;s:9:"notwarily";i:10922;s:13:"notverywarily";i:10923;s:11:"notwariness";i:10924;s:15:"notverywariness";i:10925;s:8:"notwaste";i:10926;s:12:"notverywaste";i:10927;s:11:"notwasteful";i:10928;s:15:"notverywasteful";i:10929;s:15:"notwastefulness";i:10930;s:19:"notverywastefulness";i:10931;s:11:"notwatchdog";i:10932;s:15:"notverywatchdog";i:10933;s:10:"notwayward";i:10934;s:14:"notverywayward";i:10935;s:7:"notweak";i:10936;s:11:"notveryweak";i:10937;s:9:"notweaken";i:10938;s:13:"notveryweaken";i:10939;s:12:"notweakening";i:10940;s:16:"notveryweakening";i:10941;s:11:"notweakness";i:10942;s:15:"notveryweakness";i:10943;s:13:"notweaknesses";i:10944;s:17:"notveryweaknesses";i:10945;s:12:"notweariness";i:10946;s:16:"notveryweariness";i:10947;s:12:"notwearisome";i:10948;s:16:"notverywearisome";i:10949;s:8:"notweary";i:10950;s:12:"notveryweary";i:10951;s:8:"notwedge";i:10952;s:12:"notverywedge";i:10953;s:6:"notwee";i:10954;s:10:"notverywee";i:10955;s:7:"notweed";i:10956;s:11:"notveryweed";i:10957;s:7:"notweep";i:10958;s:11:"notveryweep";i:10959;s:8:"notweird";i:10960;s:12:"notveryweird";i:10961;s:10:"notweirdly";i:10962;s:14:"notveryweirdly";i:10963;s:10:"notwheedle";i:10964;s:14:"notverywheedle";i:10965;s:10:"notwhimper";i:10966;s:14:"notverywhimper";i:10967;s:8:"notwhine";i:10968;s:12:"notverywhine";i:10969;s:8:"notwhips";i:10970;s:12:"notverywhips";i:10971;s:9:"notwicked";i:10972;s:13:"notverywicked";i:10973;s:11:"notwickedly";i:10974;s:15:"notverywickedly";i:10975;s:13:"notwickedness";i:10976;s:17:"notverywickedness";i:10977;s:13:"notwidespread";i:10978;s:17:"notverywidespread";i:10979;s:7:"notwild";i:10980;s:11:"notverywild";i:10981;s:9:"notwildly";i:10982;s:13:"notverywildly";i:10983;s:8:"notwiles";i:10984;s:12:"notverywiles";i:10985;s:7:"notwilt";i:10986;s:11:"notverywilt";i:10987;s:7:"notwily";i:10988;s:11:"notverywily";i:10989;s:8:"notwince";i:10990;s:12:"notverywince";i:10991;s:11:"notwithheld";i:10992;s:15:"notverywithheld";i:10993;s:11:"notwithhold";i:10994;s:15:"notverywithhold";i:10995;s:6:"notwoe";i:10996;s:10:"notverywoe";i:10997;s:12:"notwoebegone";i:10998;s:16:"notverywoebegone";i:10999;s:9:"notwoeful";i:11000;s:13:"notverywoeful";i:11001;s:11:"notwoefully";i:11002;s:15:"notverywoefully";i:11003;s:7:"notworn";i:11004;s:11:"notveryworn";i:11005;s:10:"notworried";i:11006;s:14:"notveryworried";i:11007;s:12:"notworriedly";i:11008;s:16:"notveryworriedly";i:11009;s:10:"notworrier";i:11010;s:14:"notveryworrier";i:11011;s:10:"notworries";i:11012;s:14:"notveryworries";i:11013;s:12:"notworrisome";i:11014;s:16:"notveryworrisome";i:11015;s:8:"notworry";i:11016;s:12:"notveryworry";i:11017;s:11:"notworrying";i:11018;s:15:"notveryworrying";i:11019;s:13:"notworryingly";i:11020;s:17:"notveryworryingly";i:11021;s:8:"notworse";i:11022;s:12:"notveryworse";i:11023;s:9:"notworsen";i:11024;s:13:"notveryworsen";i:11025;s:12:"notworsening";i:11026;s:16:"notveryworsening";i:11027;s:8:"notworst";i:11028;s:12:"notveryworst";i:11029;s:12:"notworthless";i:11030;s:16:"notveryworthless";i:11031;s:14:"notworthlessly";i:11032;s:18:"notveryworthlessly";i:11033;s:16:"notworthlessness";i:11034;s:20:"notveryworthlessness";i:11035;s:8:"notwound";i:11036;s:12:"notverywound";i:11037;s:9:"notwounds";i:11038;s:13:"notverywounds";i:11039;s:8:"notwreck";i:11040;s:12:"notverywreck";i:11041;s:10:"notwrangle";i:11042;s:14:"notverywrangle";i:11043;s:8:"notwrath";i:11044;s:12:"notverywrath";i:11045;s:8:"notwrest";i:11046;s:12:"notverywrest";i:11047;s:10:"notwrestle";i:11048;s:14:"notverywrestle";i:11049;s:9:"notwretch";i:11050;s:13:"notverywretch";i:11051;s:11:"notwretched";i:11052;s:15:"notverywretched";i:11053;s:13:"notwretchedly";i:11054;s:17:"notverywretchedly";i:11055;s:15:"notwretchedness";i:11056;s:19:"notverywretchedness";i:11057;s:9:"notwrithe";i:11058;s:13:"notverywrithe";i:11059;s:8:"notwrong";i:11060;s:12:"notverywrong";i:11061;s:11:"notwrongful";i:11062;s:15:"notverywrongful";i:11063;s:10:"notwrongly";i:11064;s:14:"notverywrongly";i:11065;s:10:"notwrought";i:11066;s:14:"notverywrought";i:11067;s:7:"notyawn";i:11068;s:11:"notveryyawn";i:11069;s:7:"notyelp";i:11070;s:11:"notveryyelp";i:11071;s:9:"notzealot";i:11072;s:13:"notveryzealot";i:11073;s:10:"notzealous";i:11074;s:14:"notveryzealous";i:11075;s:12:"notzealously";i:11076;s:16:"notveryzealously";i:11077;s:4:"nice";}data/data.prefix.php000064400000000066151556062050010402 0ustar00a:3:{i:0;s:5:"isn't";i:1;s:6:"aren't";i:2;s:3:"not";}
dictionaries/source.ign.php000064400000013723151556062050012021 0ustar00<?php
$ign = array(
	'able',
	'about',
	'above',
	'according',
	'accordingly',
	'acirc',
	'across',
	'actually',
	'acute',
	'aelig',
	'after',
	'afterwards',
	'again',
	'against',
	'agrave',
	'ain\'t',
	'all',
	'allow',
	'allows',
	'almost',
	'alone',
	'along',
	'already',
	'also',
	'although',
	'always',
	'am',
	'among',
	'amongst',
	'amp',
	'an',
	'and',
	'another',
	'any',
	'anybody',
	'anyhow',
	'anyone',
	'anything',
	'anyway',
	'anyways',
	'anywhere',
	'apart',
	'appear',
	'appreciate',
	'appropriate',
	'are',
	'aring',
	'around',
	'as',
	'aside',
	'ask',
	'asking',
	'associated',
	'at',
	'atilde',
	'auml',
	'available',
	'away',
	'awfully',
	'be',
	'became',
	'because',
	'become',
	'becomes',
	'becoming',
	'been',
	'before',
	'beforehand',
	'behind',
	'being',
	'believe',
	'below',
	'beside',
	'besides',
	'best',
	'better',
	'between',
	'beyond',
	'bit',
	'both',
	'brief',
	'brvbar',
	'but',
	'by',
	'c\'mon',
	'c\'s',
	'came',
	'can',
	'can\'t',
	'cannot',
	'cant',
	'cause',
	'causes',
	'ccedil',
	'cedil',
	'cent',
	'certain',
	'certainly',
	'changes',
	'clearly',
	'co',
	'com',
	'come',
	'comes',
	'como',
	'concerning',
	'consequently',
	'consider',
	'considering',
	'contain',
	'containing',
	'contains',
	'corresponding',
	'could',
	'couldn\'t',
	'course',
	'currently',
	'definitely',
	'described',
	'despite',
	'did',
	'didn\'t',
	'different',
	'dlvr',
	'do',
	'does',
	'doesn\'t',
	'doing',
	'don\'t',
	'done',
	'down',
	'downwards',
	'during',
	'each',
	'eacute',
	'edu',
	'eg',
	'egrave',
	'eight',
	'either',
	'else',
	'elsewhere',
	'enough',
	'entirely',
	'especially',
	'et',
	'etc',
	'ETH',
	'even',
	'ever',
	'every',
	'everybody',
	'everyone',
	'everything',
	'everywhere',
	'ex',
	'exactly',
	'example',
	'except',
	'far',
	'few',
	'fifth',
	'filhos',
	'first',
	'five',
	'followed',
	'following',
	'follows',
	'for',
	'former',
	'formerly',
	'forth',
	'four',
	'frac',
	'from',
	'further',
	'furthermore',
	'get',
	'gets',
	'getting',
	'given',
	'gives',
	'go',
	'goes',
	'going',
	'gone',
	'goo',
	'got',
	'gotten',
	'greetings',
	'had',
	'hadn\'t',
	'happens',
	'hardly',
	'has',
	'hasn\'t',
	'have',
	'haven\'t',
	'having',
	'he',
	'he\'s',
	'hello',
	'help',
	'hence',
	'her',
	'here',
	'here\'s',
	'hereafter',
	'hereby',
	'herein',
	'hereupon',
	'hers',
	'herself',
	'hi',
	'him',
	'himself',
	'his',
	'hither',
	'hopefully',
	'how',
	'howbeit',
	'however',
	'http',
	'https',
	'i\'d',
	'i\'ll',
	'i\'m',
	'i\'ve',
	'Icirc',
	'ie',
	'iexcl',
	'if',
	'ignored',
	'immediate',
	'in',
	'inasmuch',
	'inc',
	'indeed',
	'indicate',
	'indicated',
	'indicates',
	'inner',
	'insofar',
	'instead',
	'into',
	'inward',
	'is',
	'it',
	'it\'d',
	'it\'ll',
	'it\'s',
	'its',
	'itself',
	'iuml',
	'just',
	'keep',
	'keeps',
	'kept',
	'know',
	'known',
	'knows',
	'laquo',
	'last',
	'lately',
	'later',
	'latter',
	'latterly',
	'least',
	'less',
	'lest',
	'let',
	'let\'s',
	'liked',
	'likely',
	'little',
	'look',
	'looking',
	'looks',
	'ltd',
	'macr',
	'mainly',
	'many',
	'may',
	'maybe',
	'me',
	'mean',
	'meanwhile',
	'merely',
	'might',
	'more',
	'moreover',
	'most',
	'mostly',
	'much',
	'must',
	'my',
	'myself',
	'name',
	'namely',
	'nbsp',
	'nd',
	'near',
	'nearly',
	'necessary',
	'need',
	'needs',
	'neither',
	'never',
	'nevertheless',
	'new',
	'next',
	'nine',
	'no',
	'nobody',
	'non',
	'none',
	'noone',
	'nor',
	'normally',
	'nothing',
	'novel',
	'now',
	'nowhere',
	'ntilde',
	'obviously',
	'of',
	'off',
	'often',
	'oh',
	'ok',
	'okay',
	'old',
	'on',
	'once',
	'one',
	'ones',
	'only',
	'onto',
	'or',
	'ordf',
	'ordm',
	'other',
	'others',
	'otherwise',
	'ought',
	'our',
	'ours',
	'ourselves',
	'out',
	'outside',
	'over',
	'overall',
	'own',
	'para',
	'particular',
	'particularly',
	'per',
	'perhaps',
	'placed',
	'please',
	'plus',
	'plusmn',
	'possible',
	'presumably',
	'probably',
	'provides',
	'que',
	'quite',
	'quot',
	'qv',
	'rather',
	'rd',
	're',
	'really',
	'reg',
	'regarding',
	'regardless',
	'regards',
	'relatively',
	'respectively',
	'right',
	'said',
	'same',
	'saw',
	'say',
	'saying',
	'says',
	'second',
	'secondly',
	'sect',
	'see',
	'seeing',
	'seem',
	'seemed',
	'seeming',
	'seems',
	'seen',
	'self',
	'selves',
	'sensible',
	'sent',
	'ser',
	'serious',
	'seriously',
	'seu',
	'seven',
	'several',
	'shall',
	'she',
	'should',
	'shouldn\'t',
	'since',
	'six',
	'sLZjpNxJtx',
	'so',
	'some',
	'somebody',
	'somehow',
	'someone',
	'something',
	'sometime',
	'sometimes',
	'somewhat',
	'somewhere',
	'soon',
	'sorry',
	'specified',
	'specify',
	'specifying',
	'still',
	'sub',
	'such',
	'sup',
	'sure',
	'take',
	'taken',
	'tell',
	'tends',
	'th',
	'than',
	'thank',
	'thanks',
	'thanx',
	'that',
	'that\'s',
	'thats',
	'the',
	'their',
	'theirs',
	'them',
	'themselves',
	'then',
	'thence',
	'there',
	'there\'s',
	'thereafter',
	'thereby',
	'therefore',
	'therein',
	'theres',
	'thereupon',
	'these',
	'they',
	'they\'d',
	'they\'ll',
	'they\'re',
	'they\'ve',
	'think',
	'third',
	'this',
	'thorough',
	'thoroughly',
	'those',
	'though',
	'three',
	'through',
	'throughout',
	'thru',
	'thus',
	'to',
	'together',
	'too',
	'took',
	'toward',
	'towards',
	'tried',
	'tries',
	'truly',
	'try',
	'trying',
	'twice',
	'two',
	'Ugrave',
	'un',
	'under',
	'unfortunately',
	'unless',
	'unlikely',
	'until',
	'unto',
	'up',
	'upon',
	'us',
	'use',
	'used',
	'uses',
	'using',
	'usually',
	'value',
	'various',
	'very',
	'via',
	'viz',
	'vs',
	'want',
	'wants',
	'was',
	'wasn\'t',
	'way',
	'we',
	'we\'d',
	'we\'ll',
	'we\'re',
	'we\'ve',
	'welcome',
	'well',
	'went',
	'were',
	'weren\'t',
	'what',
	'what\'s',
	'whatever',
	'when',
	'whence',
	'whenever',
	'where',
	'where\'s',
	'whereafter',
	'whereas',
	'whereby',
	'wherein',
	'whereupon',
	'wherever',
	'whether',
	'which',
	'while',
	'whither',
	'who',
	'who\'s',
	'whoever',
	'whole',
	'whom',
	'whose',
	'why',
	'will',
	'willing',
	'wish',
	'with',
	'within',
	'without',
	'won\'t',
	'wonder',
	'would',
	'wouldn\'t',
	'www',
	'yes',
	'yet',
	'you',
	'you\'d',
	'you\'ll',
	'you\'re',
	'you\'ve',
	'your',
	'yours',
	'yourself',
	'yourselves',
	'zero',
	'zynga',
);
dictionaries/source.neg.php000064400000434577151556062050012033 0ustar00<?php
$neg = array(
	"%-(",
	")-:",
	"):",
	")o:",
	"38*",
	"8",
	"8-0",
	"8/",
	"8c",
	":",
	":#",
	":(",
	":*(",
	":,(",
	":-",
	":-&",
	":-(",
	":-(o)",
	":-/",
	":-s",
	":-|",
	":/",
	":?¢‚Ǩ¬¶(",
	":[",
	":_(",
	":e",
	":f",
	":o",
	":o(",
	":s",
	":|",
	"=[",
	">",
	">/",
	">:(",
	">:l",
	">:o",
	">[",
	">o>",
	"^o)",
	"abandon",
	"abandoned",
	"abandonment",
	"abase",
	"abasement",
	"abash",
	"abate",
	"abdicate",
	"aberration",
	"abhor",
	"abhorred",
	"abhorrence",
	"abhorrent",
	"abhorrently",
	"abhors",
	"abject",
	"abjectly",
	"abjure",
	"abnormal",
	"abolish",
	"abominable",
	"abominably",
	"abominate",
	"abomination",
	"abrade",
	"abrasive",
	"abrupt",
	"abscond",
	"absence",
	"absent-minded",
	"absentee",
	"absurd",
	"absurdity",
	"absurdly",
	"absurdness",
	"abuse",
	"abused",
	"abuses",
	"abusive",
	"abysmal",
	"abysmally",
	"abyss",
	"accidental",
	"accost",
	"accursed",
	"accusation",
	"accusations",
	"accuse",
	"accused",
	"accuses",
	"accusing",
	"accusingly",
	"acerbate",
	"acerbic",
	"acerbically",
	"ache",
	"acrid",
	"acridly",
	"acridness",
	"acrimonious",
	"acrimoniously",
	"acrimony",
	"adamant",
	"adamantly",
	"addict",
	"addicted",
	"addiction",
	"admonish",
	"admonisher",
	"admonishingly",
	"admonishment",
	"admonition",
	"adrift",
	"adulterate",
	"adulterated",
	"adulteration",
	"adversarial",
	"adversary",
	"adverse",
	"adversity",
	"affectation",
	"afflict",
	"affliction",
	"afflictive",
	"affront",
	"afraid",
	"aggravate",
	"aggravated",
	"aggravating",
	"aggravation",
	"aggression",
	"aggressive",
	"aggressiveness",
	"aggressor",
	"aggrieve",
	"aggrieved",
	"aghast",
	"agitate",
	"agitated",
	"agitation",
	"agitator",
	"agonies",
	"agonize",
	"agonizing",
	"agonizingly",
	"agony",
	"ail",
	"ailment",
	"aimless",
	"airs",
	"alarm",
	"alarmed",
	"alarming",
	"alarmingly",
	"alas",
	"alienate",
	"alienated",
	"alienation",
	"allegation",
	"allegations",
	"allege",
	"allergic",
	"alone",
	"aloof",
	"altercation",
	"ambiguity",
	"ambiguous",
	"ambivalence",
	"ambivalent",
	"ambush",
	"amiss",
	"amputate",
	"anarchism",
	"anarchist",
	"anarchistic",
	"anarchy",
	"anemic",
	"anger",
	"angrily",
	"angriness",
	"angry",
	"anguish",
	"animosity",
	"annihilate",
	"annihilation",
	"annoy",
	"annoyance",
	"annoyed",
	"annoying",
	"annoyingly",
	"anomalous",
	"anomaly",
	"antagonism",
	"antagonist",
	"antagonistic",
	"antagonize",
	"anti-",
	"anti-american",
	"anti-israeli",
	"anti-occupation",
	"anti-proliferation",
	"anti-semites",
	"anti-social",
	"anti-us",
	"anti-white",
	"antipathy",
	"antiquated",
	"antithetical",
	"anxieties",
	"anxiety",
	"anxious",
	"anxiously",
	"anxiousness",
	"apathetic",
	"apathetically",
	"apathy",
	"ape",
	"apocalypse",
	"apocalyptic",
	"apologist",
	"apologists",
	"appal",
	"appall",
	"appalled",
	"appalling",
	"appallingly",
	"apprehension",
	"apprehensions",
	"apprehensive",
	"apprehensively",
	"arbitrary",
	"arcane",
	"archaic",
	"arduous",
	"arduously",
	"aren'tgood",
	"argue",
	"argument",
	"argumentative",
	"arguments",
	"arrogance",
	"arrogant",
	"arrogantly",
	"artificial",
	"ashamed",
	"asinine",
	"asininely",
	"asinininity",
	"askance",
	"asperse",
	"aspersion",
	"aspersions",
	"assail",
	"assassin",
	"assassinate",
	"assault",
	"assaulted",
	"astray",
	"asunder",
	"atrocious",
	"atrocities",
	"atrocity",
	"atrophy",
	"attack",
	"attacked",
	"audacious",
	"audaciously",
	"audaciousness",
	"audacity",
	"austere",
	"authoritarian",
	"autocrat",
	"autocratic",
	"avalanche",
	"avarice",
	"avaricious",
	"avariciously",
	"avenge",
	"averse",
	"aversion",
	"avoid",
	"avoidance",
	"avoided",
	"awful",
	"awfulness",
	"awkward",
	"awkwardness",
	"ax",
	"b(",
	"babble",
	"backbite",
	"backbiting",
	"backward",
	"backwardness",
	"bad",
	"badgered",
	"badly",
	"baffle",
	"baffled",
	"bafflement",
	"baffling",
	"bait",
	"balk",
	"banal",
	"banalize",
	"bane",
	"banish",
	"banishment",
	"bankrupt",
	"banned",
	"bar",
	"barbarian",
	"barbaric",
	"barbarically",
	"barbarity",
	"barbarous",
	"barbarously",
	"barely",
	"barren",
	"baseless",
	"bashful",
	"bastard",
	"battered",
	"battering",
	"battle",
	"battle-lines",
	"battlefield",
	"battleground",
	"batty",
	"bd",
	"bearish",
	"beast",
	"beastly",
	"beat",
	"beaten",
	"bedlam",
	"bedlamite",
	"befoul",
	"beg",
	"beggar",
	"beggarly",
	"begging",
	"beguile",
	"belabor",
	"belated",
	"beleaguer",
	"belie",
	"belittle",
	"belittled",
	"belittling",
	"bellicose",
	"belligerence",
	"belligerent",
	"belligerently",
	"bemoan",
	"bemoaning",
	"bemused",
	"bent",
	"berate",
	"berated",
	"bereave",
	"bereavement",
	"bereft",
	"berserk",
	"beseech",
	"beset",
	"besiege",
	"besmirch",
	"bestial",
	"betray",
	"betrayal",
	"betrayals",
	"betrayed",
	"betrayer",
	"bewail",
	"beware",
	"bewilder",
	"bewildered",
	"bewildering",
	"bewilderingly",
	"bewilderment",
	"bewitch",
	"bias",
	"biased",
	"biases",
	"bicker",
	"bickering",
	"bid-rigging",
	"bitch",
	"bitchy",
	"biting",
	"bitingly",
	"bitter",
	"bitterly",
	"bitterness",
	"bizarre",
	"bizzare",
	"blab",
	"blabber",
	"black",
	"blacklisted",
	"blackmail",
	"blackmailed",
	"blah",
	"blame",
	"blamed",
	"blameworthy",
	"bland",
	"blandish",
	"blaspheme",
	"blasphemous",
	"blasphemy",
	"blast",
	"blasted",
	"blatant",
	"blatantly",
	"blather",
	"bleak",
	"bleakly",
	"bleakness",
	"bleed",
	"blemish",
	"blind",
	"blinding",
	"blindingly",
	"blindness",
	"blindside",
	"blister",
	"blistering",
	"bloated",
	"block",
	"blockhead",
	"blood",
	"bloodshed",
	"bloodthirsty",
	"bloody",
	"blow",
	"blunder",
	"blundering",
	"blunders",
	"blunt",
	"blur",
	"blurt",
	"boast",
	"boastful",
	"boggle",
	"bogus",
	"boil",
	"boiling",
	"boisterous",
	"bomb",
	"bombard",
	"bombardment",
	"bombastic",
	"bondage",
	"bonkers",
	"bore",
	"bored",
	"boredom",
	"boring",
	"botch",
	"bother",
	"bothered",
	"bothersome",
	"bounded",
	"bowdlerize",
	"boycott",
	"braggart",
	"bragger",
	"brainwash",
	"brash",
	"brashly",
	"brashness",
	"brat",
	"bravado",
	"brazen",
	"brazenly",
	"brazenness",
	"breach",
	"break",
	"break-point",
	"breakdown",
	"brimstone",
	"bristle",
	"brittle",
	"broke",
	"broken",
	"broken-hearted",
	"brood",
	"browbeat",
	"bruise",
	"bruised",
	"brusque",
	"brutal",
	"brutalising",
	"brutalities",
	"brutality",
	"brutalize",
	"brutalizing",
	"brutally",
	"brute",
	"brutish",
	"buckle",
	"bug",
	"bugged",
	"bulky",
	"bullied",
	"bullies",
	"bully",
	"bullyingly",
	"bum",
	"bummed",
	"bumpy",
	"bungle",
	"bungler",
	"bunk",
	"burden",
	"burdened",
	"burdensome",
	"burdensomely",
	"burn",
	"burned",
	"busy",
	"busybody",
	"butcher",
	"butchery",
	"byzantine",
	"cackle",
	"caged",
	"cajole",
	"calamities",
	"calamitous",
	"calamitously",
	"calamity",
	"callous",
	"calumniate",
	"calumniation",
	"calumnies",
	"calumnious",
	"calumniously",
	"calumny",
	"cancer",
	"cancerous",
	"cannibal",
	"cannibalize",
	"capitulate",
	"capricious",
	"capriciously",
	"capriciousness",
	"capsize",
	"captive",
	"careless",
	"carelessness",
	"caricature",
	"carnage",
	"carp",
	"cartoon",
	"cartoonish",
	"cash-strapped",
	"castigate",
	"casualty",
	"cataclysm",
	"cataclysmal",
	"cataclysmic",
	"cataclysmically",
	"catastrophe",
	"catastrophes",
	"catastrophic",
	"catastrophically",
	"caustic",
	"caustically",
	"cautionary",
	"cautious",
	"cave",
	"censure",
	"chafe",
	"chaff",
	"chagrin",
	"challenge",
	"challenging",
	"chaos",
	"chaotic",
	"charisma",
	"chased",
	"chasten",
	"chastise",
	"chastisement",
	"chatter",
	"chatterbox",
	"cheap",
	"cheapen",
	"cheat",
	"cheated",
	"cheater",
	"cheerless",
	"chicken",
	"chide",
	"childish",
	"chill",
	"chilly",
	"chit",
	"choke",
	"choppy",
	"chore",
	"chronic",
	"clamor",
	"clamorous",
	"clash",
	"claustrophobic",
	"cliche",
	"cliched",
	"clingy",
	"clique",
	"clog",
	"close",
	"closed",
	"cloud",
	"clueless",
	"clumsy",
	"coarse",
	"coaxed",
	"cocky",
	"codependent",
	"coerce",
	"coerced",
	"coercion",
	"coercive",
	"cold",
	"coldly",
	"collapse",
	"collide",
	"collude",
	"collusion",
	"combative",
	"comedy",
	"comical",
	"commanded",
	"commiserate",
	"commonplace",
	"commotion",
	"compared",
	"compel",
	"competitive",
	"complacent",
	"complain",
	"complaining",
	"complaint",
	"complaints",
	"complicate",
	"complicated",
	"complication",
	"complicit",
	"compulsion",
	"compulsive",
	"compulsory",
	"concede",
	"conceit",
	"conceited",
	"concern",
	"concerned",
	"concerns",
	"concession",
	"concessions",
	"condemn",
	"condemnable",
	"condemnation",
	"condescend",
	"condescending",
	"condescendingly",
	"condescension",
	"condolence",
	"condolences",
	"confess",
	"confession",
	"confessions",
	"confined",
	"conflict",
	"conflicted",
	"confound",
	"confounded",
	"confounding",
	"confront",
	"confrontation",
	"confrontational",
	"confronted",
	"confuse",
	"confused",
	"confusing",
	"confusion",
	"congested",
	"congestion",
	"conned",
	"conspicuous",
	"conspicuously",
	"conspiracies",
	"conspiracy",
	"conspirator",
	"conspiratorial",
	"conspire",
	"consternation",
	"constrain",
	"constraint",
	"consume",
	"consumed",
	"contagious",
	"contaminate",
	"contamination",
	"contemplative",
	"contempt",
	"contemptible",
	"contemptuous",
	"contemptuously",
	"contend",
	"contention",
	"contentious",
	"contort",
	"contortions",
	"contradict",
	"contradiction",
	"contradictory",
	"contrariness",
	"contrary",
	"contravene",
	"contrive",
	"contrived",
	"controlled",
	"controversial",
	"controversy",
	"convicted",
	"convoluted",
	"coping",
	"cornered",
	"corralled",
	"corrode",
	"corrosion",
	"corrosive",
	"corrupt",
	"corruption",
	"costly",
	"counterproductive",
	"coupists",
	"covetous",
	"cow",
	"coward",
	"cowardly",
	"crabby",
	"crackdown",
	"crafty",
	"cramped",
	"cranky",
	"crap",
	"crappy",
	"crass",
	"craven",
	"cravenly",
	"craze",
	"crazily",
	"craziness",
	"crazy",
	"credulous",
	"creepy",
	"crime",
	"criminal",
	"cringe",
	"cripple",
	"crippling",
	"crisis",
	"critic",
	"critical",
	"criticism",
	"criticisms",
	"criticize",
	"criticized",
	"critics",
	"crook",
	"crooked",
	"cross",
	"crowded",
	"cruddy",
	"crude",
	"cruel",
	"cruelties",
	"cruelty",
	"crumble",
	"crummy",
	"crumple",
	"crush",
	"crushed",
	"crushing",
	"cry",
	"culpable",
	"cumbersome",
	"cuplrit",
	"curse",
	"cursed",
	"curses",
	"cursory",
	"curt",
	"cuss",
	"cut",
	"cutthroat",
	"cynical",
	"cynicism",
	"d:",
	"damage",
	"damaged",
	"damaging",
	"damn",
	"damnable",
	"damnably",
	"damnation",
	"damned",
	"damning",
	"danger",
	"dangerous",
	"dangerousness",
	"dangle",
	"dark",
	"darken",
	"darkness",
	"darn",
	"dash",
	"dastard",
	"dastardly",
	"daunt",
	"daunting",
	"dauntingly",
	"dawdle",
	"daze",
	"dazed",
	"dead",
	"deadbeat",
	"deadlock",
	"deadly",
	"deadweight",
	"deaf",
	"dearth",
	"death",
	"debacle",
	"debase",
	"debasement",
	"debaser",
	"debatable",
	"debate",
	"debauch",
	"debaucher",
	"debauchery",
	"debilitate",
	"debilitating",
	"debility",
	"decadence",
	"decadent",
	"decay",
	"decayed",
	"deceit",
	"deceitful",
	"deceitfully",
	"deceitfulness",
	"deceive",
	"deceived",
	"deceiver",
	"deceivers",
	"deceiving",
	"deception",
	"deceptive",
	"deceptively",
	"declaim",
	"decline",
	"declining",
	"decrease",
	"decreasing",
	"decrement",
	"decrepit",
	"decrepitude",
	"decry",
	"deep",
	"deepening",
	"defamation",
	"defamations",
	"defamatory",
	"defame",
	"defamed",
	"defeat",
	"defeated",
	"defect",
	"defective",
	"defenseless",
	"defensive",
	"defiance",
	"defiant",
	"defiantly",
	"deficiency",
	"deficient",
	"defile",
	"defiler",
	"deflated",
	"deform",
	"deformed",
	"defrauding",
	"defunct",
	"defy",
	"degenerate",
	"degenerately",
	"degeneration",
	"degradation",
	"degrade",
	"degraded",
	"degrading",
	"degradingly",
	"dehumanization",
	"dehumanize",
	"dehumanized",
	"deign",
	"deject",
	"dejected",
	"dejectedly",
	"dejection",
	"delicate",
	"delinquency",
	"delinquent",
	"delirious",
	"delirium",
	"delude",
	"deluded",
	"deluge",
	"delusion",
	"delusional",
	"delusions",
	"demanding",
	"demean",
	"demeaned",
	"demeaning",
	"demented",
	"demise",
	"demolish",
	"demolisher",
	"demon",
	"demonic",
	"demonize",
	"demoralize",
	"demoralized",
	"demoralizing",
	"demoralizingly",
	"demotivated",
	"denial",
	"denigrate",
	"denounce",
	"denunciate",
	"denunciation",
	"denunciations",
	"deny",
	"dependent",
	"deplete",
	"depleted",
	"deplorable",
	"deplorably",
	"deplore",
	"deploring",
	"deploringly",
	"deprave",
	"depraved",
	"depravedly",
	"deprecate",
	"depress",
	"depressed",
	"depressing",
	"depressingly",
	"depression",
	"deprive",
	"deprived",
	"deride",
	"derision",
	"derisive",
	"derisively",
	"derisiveness",
	"derogatory",
	"desecrate",
	"desert",
	"deserted",
	"desertion",
	"desiccate",
	"desiccated",
	"desolate",
	"desolately",
	"desolation",
	"despair",
	"despairing",
	"despairingly",
	"desperate",
	"desperately",
	"desperation",
	"despicable",
	"despicably",
	"despise",
	"despised",
	"despoil",
	"despoiler",
	"despondence",
	"despondency",
	"despondent",
	"despondently",
	"despot",
	"despotic",
	"despotism",
	"destabilisation",
	"destitute",
	"destitution",
	"destroy",
	"destroyed",
	"destroyer",
	"destruction",
	"destructive",
	"desultory",
	"detached",
	"deter",
	"deteriorate",
	"deteriorating",
	"deterioration",
	"deterrent",
	"detest",
	"detestable",
	"detestably",
	"detested",
	"detract",
	"detraction",
	"detriment",
	"detrimental",
	"devalued",
	"devastate",
	"devastated",
	"devastating",
	"devastatingly",
	"devastation",
	"deviant",
	"deviate",
	"deviation",
	"devil",
	"devilish",
	"devilishly",
	"devilment",
	"devilry",
	"devious",
	"deviously",
	"deviousness",
	"devoid",
	"diabolic",
	"diabolical",
	"diabolically",
	"diagnosed",
	"diametrically",
	"diatribe",
	"diatribes",
	"dictator",
	"dictatorial",
	"differ",
	"different",
	"difficult",
	"difficulties",
	"difficulty",
	"diffidence",
	"dig",
	"digress",
	"dilapidated",
	"dilemma",
	"dilly-dally",
	"dim",
	"diminish",
	"diminishing",
	"din",
	"dinky",
	"dire",
	"directionless",
	"direly",
	"direness",
	"dirt",
	"dirty",
	"disable",
	"disabled",
	"disaccord",
	"disadvantage",
	"disadvantaged",
	"disadvantageous",
	"disaffect",
	"disaffected",
	"disaffirm",
	"disagree",
	"disagreeable",
	"disagreeably",
	"disagreement",
	"disallow",
	"disappoint",
	"disappointed",
	"disappointing",
	"disappointingly",
	"disappointment",
	"disapprobation",
	"disapproval",
	"disapprove",
	"disapproving",
	"disarm",
	"disarray",
	"disaster",
	"disastrous",
	"disastrously",
	"disavow",
	"disavowal",
	"disbelief",
	"disbelieve",
	"disbelieved",
	"disbeliever",
	"discardable",
	"discarded",
	"disclaim",
	"discombobulate",
	"discomfit",
	"discomfititure",
	"discomfort",
	"discompose",
	"disconcert",
	"disconcerted",
	"disconcerting",
	"disconcertingly",
	"disconnected",
	"disconsolate",
	"disconsolately",
	"disconsolation",
	"discontent",
	"discontented",
	"discontentedly",
	"discontinuity",
	"discord",
	"discordance",
	"discordant",
	"discountenance",
	"discourage",
	"discouraged",
	"discouragement",
	"discouraging",
	"discouragingly",
	"discourteous",
	"discourteously",
	"discredit",
	"discrepant",
	"discriminate",
	"discriminated",
	"discrimination",
	"discriminatory",
	"disdain",
	"disdainful",
	"disdainfully",
	"disease",
	"diseased",
	"disempowered",
	"disenchanted",
	"disfavor",
	"disgrace",
	"disgraced",
	"disgraceful",
	"disgracefully",
	"disgruntle",
	"disgruntled",
	"disgust",
	"disgusted",
	"disgustedly",
	"disgustful",
	"disgustfully",
	"disgusting",
	"disgustingly",
	"dishearten",
	"disheartened",
	"disheartening",
	"dishearteningly",
	"dishonest",
	"dishonestly",
	"dishonesty",
	"dishonor",
	"dishonorable",
	"dishonorablely",
	"disillusion",
	"disillusioned",
	"disinclination",
	"disinclined",
	"disingenuous",
	"disingenuously",
	"disintegrate",
	"disintegration",
	"disinterest",
	"disinterested",
	"dislike",
	"disliked",
	"dislocated",
	"disloyal",
	"disloyalty",
	"dismal",
	"dismally",
	"dismalness",
	"dismay",
	"dismayed",
	"dismaying",
	"dismayingly",
	"dismissive",
	"dismissively",
	"disobedience",
	"disobedient",
	"disobey",
	"disorder",
	"disordered",
	"disorderly",
	"disorganized",
	"disorient",
	"disoriented",
	"disown",
	"disowned",
	"disparage",
	"disparaging",
	"disparagingly",
	"dispensable",
	"dispirit",
	"dispirited",
	"dispiritedly",
	"dispiriting",
	"displace",
	"displaced",
	"displease",
	"displeased",
	"displeasing",
	"displeasure",
	"disposable",
	"disproportionate",
	"disprove",
	"disputable",
	"dispute",
	"disputed",
	"disquiet",
	"disquieting",
	"disquietingly",
	"disquietude",
	"disregard",
	"disregarded",
	"disregardful",
	"disreputable",
	"disrepute",
	"disrespect",
	"disrespectable",
	"disrespectablity",
	"disrespected",
	"disrespectful",
	"disrespectfully",
	"disrespectfulness",
	"disrespecting",
	"disrupt",
	"disruption",
	"disruptive",
	"dissatisfaction",
	"dissatisfactory",
	"dissatisfied",
	"dissatisfy",
	"dissatisfying",
	"dissemble",
	"dissembler",
	"dissension",
	"dissent",
	"dissenter",
	"dissention",
	"disservice",
	"dissidence",
	"dissident",
	"dissidents",
	"dissocial",
	"dissolute",
	"dissolution",
	"dissonance",
	"dissonant",
	"dissonantly",
	"dissuade",
	"dissuasive",
	"distant",
	"distaste",
	"distasteful",
	"distastefully",
	"distort",
	"distortion",
	"distract",
	"distracted",
	"distracting",
	"distraction",
	"distraught",
	"distraughtly",
	"distraughtness",
	"distress",
	"distressed",
	"distressing",
	"distressingly",
	"distrust",
	"distrustful",
	"distrusting",
	"disturb",
	"disturbed",
	"disturbed-let",
	"disturbing",
	"disturbingly",
	"disunity",
	"disvalue",
	"divergent",
	"divide",
	"divided",
	"division",
	"divisive",
	"divisively",
	"divisiveness",
	"divorce",
	"divorced",
	"dizzing",
	"dizzingly",
	"dizzy",
	"doddering",
	"dodgey",
	"dogged",
	"doggedly",
	"dogmatic",
	"doldrums",
	"dominance",
	"dominate",
	"dominated",
	"domination",
	"domineer",
	"domineering",
	"doom",
	"doomed",
	"doomsday",
	"dope",
	"doubt",
	"doubted",
	"doubtful",
	"doubtfully",
	"doubts",
	"down",
	"downbeat",
	"downcast",
	"downer",
	"downfall",
	"downfallen",
	"downgrade",
	"downhearted",
	"downheartedly",
	"downside",
	"downtrodden",
	"drab",
	"draconian",
	"draconic",
	"dragon",
	"dragons",
	"dragoon",
	"drain",
	"drained",
	"drama",
	"dramatic",
	"drastic",
	"drastically",
	"dread",
	"dreadful",
	"dreadfully",
	"dreadfulness",
	"dreary",
	"drones",
	"droop",
	"dropped",
	"drought",
	"drowning",
	"drunk",
	"drunkard",
	"drunken",
	"dry",
	"dubious",
	"dubiously",
	"dubitable",
	"dud",
	"dull",
	"dullard",
	"dumb",
	"dumbfound",
	"dumbfounded",
	"dummy",
	"dump",
	"dumped",
	"dunce",
	"dungeon",
	"dungeons",
	"dupe",
	"duped",
	"dusty",
	"dwindle",
	"dwindling",
	"dying",
	"earsplitting",
	"eccentric",
	"eccentricity",
	"edgy",
	"effigy",
	"effrontery",
	"ego",
	"egocentric",
	"egomania",
	"egotism",
	"egotistic",
	"egotistical",
	"egotistically",
	"egregious",
	"egregiously",
	"ejaculate",
	"election-rigger",
	"eliminate",
	"elimination",
	"elusive",
	"emaciated",
	"emancipated",
	"emasculate",
	"emasculated",
	"embarrass",
	"embarrassed",
	"embarrassing",
	"embarrassingly",
	"embarrassment",
	"embattled",
	"embroil",
	"embroiled",
	"embroilment",
	"emotional",
	"emotionless",
	"empathize",
	"empathy",
	"emphatic",
	"emphatically",
	"emptiness",
	"empty",
	"encroach",
	"encroachment",
	"encumbered",
	"endanger",
	"endangered",
	"endless",
	"enemies",
	"enemy",
	"enervate",
	"enfeeble",
	"enflame",
	"engulf",
	"enjoin",
	"enmity",
	"enormities",
	"enormity",
	"enormous",
	"enormously",
	"enrage",
	"enraged",
	"enslave",
	"enslaved",
	"entangle",
	"entangled",
	"entanglement",
	"entrap",
	"entrapment",
	"envious",
	"enviously",
	"enviousness",
	"envy",
	"epidemic",
	"equivocal",
	"eradicate",
	"erase",
	"erode",
	"erosion",
	"err",
	"errant",
	"erratic",
	"erratically",
	"erroneous",
	"erroneously",
	"error",
	"escapade",
	"eschew",
	"esoteric",
	"estranged",
	"eternal",
	"evade",
	"evaded",
	"evasion",
	"evasive",
	"evicted",
	"evil",
	"evildoer",
	"evils",
	"eviscerate",
	"exacerbate",
	"exacting",
	"exaggerate",
	"exaggeration",
	"exasperate",
	"exasperating",
	"exasperatingly",
	"exasperation",
	"excessive",
	"excessively",
	"exclaim",
	"exclude",
	"excluded",
	"exclusion",
	"excoriate",
	"excruciating",
	"excruciatingly",
	"excuse",
	"excuses",
	"execrate",
	"exhaust",
	"exhausted",
	"exhaustion",
	"exhort",
	"exile",
	"exorbitant",
	"exorbitantance",
	"exorbitantly",
	"expediencies",
	"expedient",
	"expel",
	"expensive",
	"expire",
	"explode",
	"exploit",
	"exploitation",
	"explosive",
	"expose",
	"exposed",
	"expropriate",
	"expropriation",
	"expulse",
	"expunge",
	"exterminate",
	"extermination",
	"extinguish",
	"extort",
	"extortion",
	"extraneous",
	"extravagance",
	"extravagant",
	"extravagantly",
	"extreme",
	"extremely",
	"extremism",
	"extremist",
	"extremists",
	"fabricate",
	"fabrication",
	"facetious",
	"facetiously",
	"fading",
	"fail",
	"failful",
	"failing",
	"failure",
	"failures",
	"faint",
	"fainthearted",
	"faithless",
	"fake",
	"fall",
	"fallacies",
	"fallacious",
	"fallaciously",
	"fallaciousness",
	"fallacy",
	"fallout",
	"false",
	"falsehood",
	"falsely",
	"falsify",
	"falter",
	"famine",
	"famished",
	"fanatic",
	"fanatical",
	"fanatically",
	"fanaticism",
	"fanatics",
	"fanciful",
	"far-fetched",
	"farce",
	"farcical",
	"farcical-yet-provocative",
	"farcically",
	"farfetched",
	"fascism",
	"fascist",
	"fastidious",
	"fastidiously",
	"fastuous",
	"fat",
	"fatal",
	"fatalistic",
	"fatalistically",
	"fatally",
	"fateful",
	"fatefully",
	"fathomless",
	"fatigue",
	"fatty",
	"fatuity",
	"fatuous",
	"fatuously",
	"fault",
	"faulty",
	"fawningly",
	"faze",
	"fear",
	"fearful",
	"fearfully",
	"fears",
	"fearsome",
	"feckless",
	"feeble",
	"feeblely",
	"feebleminded",
	"feign",
	"feint",
	"fell",
	"felon",
	"felonious",
	"ferocious",
	"ferociously",
	"ferocity",
	"fetid",
	"fever",
	"feverish",
	"fiasco",
	"fiat",
	"fib",
	"fibber",
	"fickle",
	"fiction",
	"fictional",
	"fictitious",
	"fidget",
	"fidgety",
	"fiend",
	"fiendish",
	"fierce",
	"fight",
	"figurehead",
	"filth",
	"filthy",
	"finagle",
	"fissures",
	"fist",
	"flabbergast",
	"flabbergasted",
	"flagging",
	"flagrant",
	"flagrantly",
	"flak",
	"flake",
	"flakey",
	"flaky",
	"flash",
	"flashy",
	"flat-out",
	"flaunt",
	"flaw",
	"flawed",
	"flaws",
	"fleer",
	"fleeting",
	"flighty",
	"flimflam",
	"flimsy",
	"flirt",
	"flirty",
	"floored",
	"flounder",
	"floundering",
	"flout",
	"fluster",
	"foe",
	"fool",
	"foolhardy",
	"foolish",
	"foolishly",
	"foolishness",
	"forbid",
	"forbidden",
	"forbidding",
	"force",
	"forced",
	"forceful",
	"foreboding",
	"forebodingly",
	"forfeit",
	"forged",
	"forget",
	"forgetful",
	"forgetfully",
	"forgetfulness",
	"forgettable",
	"forgotten",
	"forlorn",
	"forlornly",
	"formidable",
	"forsake",
	"forsaken",
	"forswear",
	"foul",
	"foully",
	"foulness",
	"fractious",
	"fractiously",
	"fracture",
	"fragile",
	"fragmented",
	"frail",
	"frantic",
	"frantically",
	"franticly",
	"fraternize",
	"fraud",
	"fraudulent",
	"fraught",
	"frazzle",
	"frazzled",
	"freak",
	"freakish",
	"freakishly",
	"frenetic",
	"frenetically",
	"frenzied",
	"frenzy",
	"fret",
	"fretful",
	"friction",
	"frictions",
	"friggin",
	"fright",
	"frighten",
	"frightened",
	"frightening",
	"frighteningly",
	"frightful",
	"frightfully",
	"frigid",
	"frivolous",
	"frown",
	"frozen",
	"fruitless",
	"fruitlessly",
	"frustrate",
	"frustrated",
	"frustrating",
	"frustratingly",
	"frustration",
	"fudge",
	"fugitive",
	"full-blown",
	"fulminate",
	"fumble",
	"fume",
	"fundamentalism",
	"furious",
	"furiously",
	"furor",
	"fury",
	"fuss",
	"fussy",
	"fustigate",
	"fusty",
	"futile",
	"futilely",
	"futility",
	"fuzzy",
	"gabble",
	"gaff",
	"gaffe",
	"gaga",
	"gaggle",
	"gainsay",
	"gainsayer",
	"gall",
	"galling",
	"gallingly",
	"gamble",
	"game",
	"gape",
	"garbage",
	"garish",
	"gasp",
	"gauche",
	"gaudy",
	"gawk",
	"gawky",
	"geezer",
	"genocide",
	"get-rich",
	"ghastly",
	"ghetto",
	"gibber",
	"gibberish",
	"gibe",
	"glare",
	"glaring",
	"glaringly",
	"glib",
	"glibly",
	"glitch",
	"gloatingly",
	"gloom",
	"gloomy",
	"gloss",
	"glower",
	"glum",
	"glut",
	"gnawing",
	"goad",
	"goading",
	"god-awful",
	"goddam",
	"goddamn",
	"goof",
	"gossip",
	"gothic",
	"graceless",
	"gracelessly",
	"graft",
	"grandiose",
	"grapple",
	"grate",
	"grating",
	"gratuitous",
	"gratuitously",
	"grave",
	"gravely",
	"greed",
	"greedy",
	"grey",
	"grief",
	"grievance",
	"grievances",
	"grieve",
	"grieving",
	"grievous",
	"grievously",
	"grill",
	"grim",
	"grimace",
	"grind",
	"gripe",
	"grisly",
	"gritty",
	"gross",
	"grossly",
	"grotesque",
	"grouch",
	"grouchy",
	"grounded",
	"groundless",
	"grouse",
	"growl",
	"grudge",
	"grudges",
	"grudging",
	"grudgingly",
	"gruesome",
	"gruesomely",
	"gruff",
	"grumble",
	"grumpy",
	"guile",
	"guilt",
	"guiltily",
	"guilty",
	"gullible",
	"haggard",
	"haggle",
	"halfhearted",
	"halfheartedly",
	"hallucinate",
	"hallucination",
	"hamper",
	"hamstring",
	"hamstrung",
	"handicapped",
	"haphazard",
	"hapless",
	"harangue",
	"harass",
	"harassment",
	"harboring",
	"harbors",
	"hard",
	"hard-hit",
	"hard-line",
	"hard-liner",
	"hardball",
	"harden",
	"hardened",
	"hardheaded",
	"hardhearted",
	"hardliner",
	"hardliners",
	"hardship",
	"hardships",
	"harm",
	"harmful",
	"harms",
	"harpy",
	"harridan",
	"harried",
	"harrow",
	"harsh",
	"harshly",
	"hassle",
	"haste",
	"hasty",
	"hate",
	"hateful",
	"hatefully",
	"hatefulness",
	"hater",
	"hatred",
	"haughtily",
	"haughty",
	"haunt",
	"haunting",
	"havoc",
	"hawkish",
	"hazard",
	"hazardous",
	"hazy",
	"headache",
	"headaches",
	"heartbreak",
	"heartbreaker",
	"heartbreaking",
	"heartbreakingly",
	"heartless",
	"heartrending",
	"heathen",
	"heavily",
	"heavy-handed",
	"heavyhearted",
	"heck",
	"heckle",
	"hectic",
	"hedge",
	"hedonistic",
	"heedless",
	"hegemonism",
	"hegemonistic",
	"hegemony",
	"heinous",
	"hell",
	"hell-bent",
	"hellion",
	"helpless",
	"helplessly",
	"helplessness",
	"heresy",
	"heretic",
	"heretical",
	"hesitant",
	"hideous",
	"hideously",
	"hideousness",
	"hinder",
	"hindrance",
	"hoard",
	"hoax",
	"hobble",
	"hole",
	"hollow",
	"hoodwink",
	"hopeless",
	"hopelessly",
	"hopelessness",
	"horde",
	"horrendous",
	"horrendously",
	"horrible",
	"horribly",
	"horrid",
	"horrific",
	"horrifically",
	"horrify",
	"horrifying",
	"horrifyingly",
	"horror",
	"horrors",
	"hostage",
	"hostile",
	"hostilities",
	"hostility",
	"hotbeds",
	"hothead",
	"hotheaded",
	"hothouse",
	"hubris",
	"huckster",
	"humbling",
	"humiliate",
	"humiliating",
	"humiliation",
	"hunger",
	"hungry",
	"hurt",
	"hurtful",
	"hustler",
	"hypocrisy",
	"hypocrite",
	"hypocrites",
	"hypocritical",
	"hypocritically",
	"hysteria",
	"hysteric",
	"hysterical",
	"hysterically",
	"hysterics",
	"icy",
	"idiocies",
	"idiocy",
	"idiot",
	"idiotic",
	"idiotically",
	"idiots",
	"idle",
	"ignoble",
	"ignominious",
	"ignominiously",
	"ignominy",
	"ignorance",
	"ignorant",
	"ignore",
	"ignored",
	"ill",
	"ill-advised",
	"ill-conceived",
	"ill-fated",
	"ill-favored",
	"ill-mannered",
	"ill-natured",
	"ill-sorted",
	"ill-tempered",
	"ill-treated",
	"ill-treatment",
	"ill-usage",
	"ill-used",
	"illegal",
	"illegally",
	"illegitimate",
	"illicit",
	"illiquid",
	"illiterate",
	"illness",
	"illogic",
	"illogical",
	"illogically",
	"illusion",
	"illusions",
	"illusory",
	"imaginary",
	"imbalance",
	"imbalanced",
	"imbecile",
	"imbroglio",
	"immaterial",
	"immature",
	"imminence",
	"imminent",
	"imminently",
	"immobilized",
	"immoderate",
	"immoderately",
	"immodest",
	"immoral",
	"immorality",
	"immorally",
	"immovable",
	"impair",
	"impaired",
	"impasse",
	"impassive",
	"impatience",
	"impatient",
	"impatiently",
	"impeach",
	"impedance",
	"impede",
	"impediment",
	"impending",
	"impenitent",
	"imperfect",
	"imperfectly",
	"imperialist",
	"imperil",
	"imperious",
	"imperiously",
	"impermissible",
	"impersonal",
	"impertinent",
	"impetuous",
	"impetuously",
	"impiety",
	"impinge",
	"impious",
	"implacable",
	"implausible",
	"implausibly",
	"implicate",
	"implication",
	"implode",
	"impolite",
	"impolitely",
	"impolitic",
	"importunate",
	"importune",
	"impose",
	"imposers",
	"imposing",
	"imposition",
	"impossible",
	"impossiblity",
	"impossibly",
	"impotent",
	"impoverish",
	"impoverished",
	"impractical",
	"imprecate",
	"imprecise",
	"imprecisely",
	"imprecision",
	"imprison",
	"imprisoned",
	"imprisonment",
	"improbability",
	"improbable",
	"improbably",
	"improper",
	"improperly",
	"impropriety",
	"imprudence",
	"imprudent",
	"impudence",
	"impudent",
	"impudently",
	"impugn",
	"impulsive",
	"impulsively",
	"impunity",
	"impure",
	"impurity",
	"in",
	"inability",
	"inaccessible",
	"inaccuracies",
	"inaccuracy",
	"inaccurate",
	"inaccurately",
	"inaction",
	"inactive",
	"inadequacy",
	"inadequate",
	"inadequately",
	"inadverent",
	"inadverently",
	"inadvisable",
	"inadvisably",
	"inane",
	"inanely",
	"inappropriate",
	"inappropriately",
	"inapt",
	"inaptitude",
	"inarticulate",
	"inattentive",
	"incapable",
	"incapably",
	"incautious",
	"incendiary",
	"incense",
	"incessant",
	"incessantly",
	"incite",
	"incitement",
	"incivility",
	"inclement",
	"incognizant",
	"incoherence",
	"incoherent",
	"incoherently",
	"incommensurate",
	"incommunicative",
	"incomparable",
	"incomparably",
	"incompatibility",
	"incompatible",
	"incompetence",
	"incompetent",
	"incompetently",
	"incomplete",
	"incompliant",
	"incomprehensible",
	"incomprehension",
	"inconceivable",
	"inconceivably",
	"inconclusive",
	"incongruous",
	"incongruously",
	"inconsequent",
	"inconsequential",
	"inconsequentially",
	"inconsequently",
	"inconsiderate",
	"inconsiderately",
	"inconsistence",
	"inconsistencies",
	"inconsistency",
	"inconsistent",
	"inconsolable",
	"inconsolably",
	"inconstant",
	"inconvenience",
	"inconvenient",
	"inconveniently",
	"incorrect",
	"incorrectly",
	"incorrigible",
	"incorrigibly",
	"incredulous",
	"incredulously",
	"inculcate",
	"indecency",
	"indecent",
	"indecently",
	"indecision",
	"indecisive",
	"indecisively",
	"indecorum",
	"indefensible",
	"indefinite",
	"indefinitely",
	"indelicate",
	"indeterminable",
	"indeterminably",
	"indeterminate",
	"indifference",
	"indifferent",
	"indigent",
	"indignant",
	"indignantly",
	"indignation",
	"indignity",
	"indiscernible",
	"indiscreet",
	"indiscreetly",
	"indiscretion",
	"indiscriminate",
	"indiscriminately",
	"indiscriminating",
	"indisposed",
	"indistinct",
	"indistinctive",
	"indoctrinate",
	"indoctrinated",
	"indoctrination",
	"indolent",
	"indulge",
	"inebriated",
	"ineffective",
	"ineffectively",
	"ineffectiveness",
	"ineffectual",
	"ineffectually",
	"ineffectualness",
	"inefficacious",
	"inefficacy",
	"inefficiency",
	"inefficient",
	"inefficiently",
	"inelegance",
	"inelegant",
	"ineligible",
	"ineloquent",
	"ineloquently",
	"inept",
	"ineptitude",
	"ineptly",
	"inequalities",
	"inequality",
	"inequitable",
	"inequitably",
	"inequities",
	"inertia",
	"inescapable",
	"inescapably",
	"inessential",
	"inevitable",
	"inevitably",
	"inexact",
	"inexcusable",
	"inexcusably",
	"inexorable",
	"inexorably",
	"inexperience",
	"inexperienced",
	"inexpert",
	"inexpertly",
	"inexpiable",
	"inexplainable",
	"inexplicable",
	"inextricable",
	"inextricably",
	"infamous",
	"infamously",
	"infamy",
	"infected",
	"inferior",
	"inferiority",
	"infernal",
	"infest",
	"infested",
	"infidel",
	"infidels",
	"infiltrator",
	"infiltrators",
	"infirm",
	"inflame",
	"inflammatory",
	"inflated",
	"inflationary",
	"inflexible",
	"inflict",
	"infraction",
	"infringe",
	"infringement",
	"infringements",
	"infuriate",
	"infuriated",
	"infuriating",
	"infuriatingly",
	"inglorious",
	"ingrate",
	"ingratitude",
	"inhibit",
	"inhibited",
	"inhibition",
	"inhospitable",
	"inhospitality",
	"inhuman",
	"inhumane",
	"inhumanity",
	"inimical",
	"inimically",
	"iniquitous",
	"iniquity",
	"injudicious",
	"injure",
	"injured",
	"injurious",
	"injury",
	"injustice",
	"injusticed",
	"injustices",
	"innuendo",
	"inopportune",
	"inordinate",
	"inordinately",
	"insane",
	"insanely",
	"insanity",
	"insatiable",
	"insecure",
	"insecurity",
	"insensible",
	"insensitive",
	"insensitively",
	"insensitivity",
	"insidious",
	"insidiously",
	"insignificance",
	"insignificant",
	"insignificantly",
	"insincere",
	"insincerely",
	"insincerity",
	"insinuate",
	"insinuating",
	"insinuation",
	"insociable",
	"insolence",
	"insolent",
	"insolently",
	"insolvent",
	"insouciance",
	"instability",
	"instable",
	"instigate",
	"instigator",
	"instigators",
	"insubordinate",
	"insubstantial",
	"insubstantially",
	"insufferable",
	"insufferably",
	"insufficiency",
	"insufficient",
	"insufficiently",
	"insular",
	"insult",
	"insulted",
	"insulting",
	"insultingly",
	"insupportable",
	"insupportably",
	"insurmountable",
	"insurmountably",
	"insurrection",
	"intense",
	"interfere",
	"interference",
	"intermittent",
	"interrogated",
	"interrupt",
	"interrupted",
	"interruption",
	"intimidate",
	"intimidated",
	"intimidating",
	"intimidatingly",
	"intimidation",
	"intolerable",
	"intolerablely",
	"intolerance",
	"intolerant",
	"intoxicate",
	"intoxicated",
	"intractable",
	"intransigence",
	"intransigent",
	"intrude",
	"intrusion",
	"intrusive",
	"inundate",
	"inundated",
	"invader",
	"invalid",
	"invalidate",
	"invalidated",
	"invalidity",
	"invasive",
	"invective",
	"inveigle",
	"invidious",
	"invidiously",
	"invidiousness",
	"invisible",
	"involuntarily",
	"involuntary",
	"irate",
	"irately",
	"ire",
	"irk",
	"irksome",
	"ironic",
	"ironies",
	"irony",
	"irrational",
	"irrationality",
	"irrationally",
	"irreconcilable",
	"irredeemable",
	"irredeemably",
	"irreformable",
	"irregular",
	"irregularity",
	"irrelevance",
	"irrelevant",
	"irreparable",
	"irreplacible",
	"irrepressible",
	"irresolute",
	"irresolvable",
	"irresponsible",
	"irresponsibly",
	"irretrievable",
	"irreverence",
	"irreverent",
	"irreverently",
	"irreversible",
	"irritable",
	"irritably",
	"irritant",
	"irritate",
	"irritated",
	"irritating",
	"irritation",
	"isn'tgood",
	"isn'tverygood",
	"isn\'tgood",
	"isolate",
	"isolated",
	"isolation",
	"itch",
	"jabber",
	"jaded",
	"jam",
	"jar",
	"jaundiced",
	"jealous",
	"jealously",
	"jealousness",
	"jealousy",
	"jeer",
	"jeering",
	"jeeringly",
	"jeers",
	"jeopardize",
	"jeopardy",
	"jerk",
	"jittery",
	"jobless",
	"joker",
	"jolt",
	"joyless",
	"judged",
	"jumpy",
	"junk",
	"junky",
	"juvenile",
	"kaput",
	"kick",
	"kill",
	"killer",
	"killjoy",
	"knave",
	"knife",
	"knock",
	"kook",
	"kooky",
	"labeled",
	"lack",
	"lackadaisical",
	"lackey",
	"lackeys",
	"lacking",
	"lackluster",
	"laconic",
	"lag",
	"lambast",
	"lambaste",
	"lame",
	"lame-duck",
	"lament",
	"lamentable",
	"lamentably",
	"languid",
	"languish",
	"languor",
	"languorous",
	"languorously",
	"lanky",
	"lapse",
	"lascivious",
	"last-ditch",
	"laugh",
	"laughable",
	"laughably",
	"laughingstock",
	"laughter",
	"lawbreaker",
	"lawbreaking",
	"lawless",
	"lawlessness",
	"lax",
	"lazy",
	"leak",
	"leakage",
	"leaky",
	"lech",
	"lecher",
	"lecherous",
	"lechery",
	"lecture",
	"leech",
	"leer",
	"leery",
	"left-leaning",
	"less-developed",
	"lessen",
	"lesser",
	"lesser-known",
	"letch",
	"lethal",
	"lethargic",
	"lethargy",
	"lewd",
	"lewdly",
	"lewdness",
	"liability",
	"liable",
	"liar",
	"liars",
	"licentious",
	"licentiously",
	"licentiousness",
	"lie",
	"lier",
	"lies",
	"life-threatening",
	"lifeless",
	"limit",
	"limitation",
	"limited",
	"limp",
	"listless",
	"litigious",
	"little-known",
	"livid",
	"lividly",
	"loath",
	"loathe",
	"loathing",
	"loathly",
	"loathsome",
	"loathsomely",
	"lone",
	"loneliness",
	"lonely",
	"lonesome",
	"long",
	"longing",
	"longingly",
	"loophole",
	"loopholes",
	"loot",
	"lorn",
	"lose",
	"loser",
	"losing",
	"loss",
	"lost",
	"lousy",
	"loveless",
	"lovelorn",
	"low",
	"low-rated",
	"lowly",
	"ludicrous",
	"ludicrously",
	"lugubrious",
	"lukewarm",
	"lull",
	"lunatic",
	"lunaticism",
	"lurch",
	"lure",
	"lurid",
	"lurk",
	"lurking",
	"lying",
	"macabre",
	"mad",
	"madden",
	"maddening",
	"maddeningly",
	"madder",
	"madly",
	"madman",
	"madness",
	"maladjusted",
	"maladjustment",
	"malady",
	"malaise",
	"malcontent",
	"malcontented",
	"maledict",
	"malevolence",
	"malevolent",
	"malevolently",
	"malice",
	"malicious",
	"maliciously",
	"maliciousness",
	"malign",
	"malignant",
	"malodorous",
	"maltreatment",
	"maneuver",
	"mangle",
	"mania",
	"maniac",
	"maniacal",
	"manic",
	"manipulate",
	"manipulated",
	"manipulation",
	"manipulative",
	"manipulators",
	"mar",
	"marginal",
	"marginally",
	"martyrdom",
	"martyrdom-seeking",
	"masochistic",
	"massacre",
	"massacres",
	"maverick",
	"mawkish",
	"mawkishly",
	"mawkishness",
	"maxi-devaluation",
	"meager",
	"meaningless",
	"meanness",
	"meddle",
	"meddlesome",
	"mediocrity",
	"melancholy",
	"melodramatic",
	"melodramatically",
	"menace",
	"menacing",
	"menacingly",
	"mendacious",
	"mendacity",
	"menial",
	"merciless",
	"mercilessly",
	"mere",
	"mess",
	"messy",
	"midget",
	"miff",
	"miffed",
	"militancy",
	"mind",
	"mindless",
	"mindlessly",
	"mirage",
	"mire",
	"misapprehend",
	"misbecome",
	"misbecoming",
	"misbegotten",
	"misbehave",
	"misbehavior",
	"miscalculate",
	"miscalculation",
	"mischief",
	"mischievous",
	"mischievously",
	"misconception",
	"misconceptions",
	"miscreant",
	"miscreants",
	"misdirection",
	"miser",
	"miserable",
	"miserableness",
	"miserably",
	"miseries",
	"miserly",
	"misery",
	"misfit",
	"misfortune",
	"misgiving",
	"misgivings",
	"misguidance",
	"misguide",
	"misguided",
	"mishandle",
	"mishap",
	"misinform",
	"misinformed",
	"misinterpret",
	"misjudge",
	"misjudgment",
	"mislead",
	"misleading",
	"misleadingly",
	"misled",
	"mislike",
	"mismanage",
	"misread",
	"misreading",
	"misrepresent",
	"misrepresentation",
	"miss",
	"misstatement",
	"mistake",
	"mistaken",
	"mistakenly",
	"mistakes",
	"mistified",
	"mistreated",
	"mistrust",
	"mistrusted",
	"mistrustful",
	"mistrustfully",
	"misunderstand",
	"misunderstanding",
	"misunderstandings",
	"misunderstood",
	"misuse",
	"moan",
	"mock",
	"mocked",
	"mockeries",
	"mockery",
	"mocking",
	"mockingly",
	"molest",
	"molestation",
	"molested",
	"monotonous",
	"monotony",
	"monster",
	"monstrosities",
	"monstrosity",
	"monstrous",
	"monstrously",
	"moody",
	"moon",
	"moot",
	"mope",
	"morbid",
	"morbidly",
	"mordant",
	"mordantly",
	"moribund",
	"mortification",
	"mortified",
	"mortify",
	"mortifying",
	"motionless",
	"motley",
	"mourn",
	"mourner",
	"mournful",
	"mournfully",
	"muddle",
	"muddy",
	"mudslinger",
	"mudslinging",
	"mulish",
	"multi-polarization",
	"mundane",
	"murder",
	"murderous",
	"murderously",
	"murky",
	"muscle-flexing",
	"mysterious",
	"mysteriously",
	"mystery",
	"mystify",
	"myth",
	"nag",
	"nagged",
	"nagging",
	"naive",
	"naively",
	"narrow",
	"narrower",
	"nastily",
	"nastiness",
	"nasty",
	"nationalism",
	"naughty",
	"nauseate",
	"nauseating",
	"nauseatingly",
	"nebulous",
	"nebulously",
	"needless",
	"needlessly",
	"needy",
	"nefarious",
	"nefariously",
	"negate",
	"negation",
	"negative",
	"neglect",
	"neglected",
	"negligence",
	"negligent",
	"negligible",
	"nemesis",
	"nervous",
	"nervously",
	"nervousness",
	"nettle",
	"nettlesome",
	"neurotic",
	"neurotically",
	"niggle",
	"nightmare",
	"nightmarish",
	"nightmarishly",
	"nix",
	"noisy",
	"non-confidence",
	"nonconforming",
	"nonexistent",
	"nonsense",
	"nosey",
	"notabidance",
	"notabide",
	"notabilities",
	"notability",
	"notabound",
	"notabove-average",
	"notabsolve",
	"notabundance",
	"notabundant",
	"notaccede",
	"notaccept",
	"notacceptable",
	"notacceptance",
	"notaccessible",
	"notacclaim",
	"notacclaimed",
	"notacclamation",
	"notaccolade",
	"notaccolades",
	"notaccommodating",
	"notaccommodative",
	"notaccomplish",
	"notaccomplished",
	"notaccomplishment",
	"notaccomplishments",
	"notaccord",
	"notaccordance",
	"notaccordantly",
	"notaccountable",
	"notaccurate",
	"notaccurately",
	"notachievable",
	"notachieve",
	"notachievement",
	"notachievements",
	"notacknowledge",
	"notacknowledgement",
	"notacquit",
	"notactive",
	"notacumen",
	"notadaptability",
	"notadaptable",
	"notadaptive",
	"notadept",
	"notadeptly",
	"notadequate",
	"notadherence",
	"notadherent",
	"notadhesion",
	"notadmirable",
	"notadmirably",
	"notadmiration",
	"notadmire",
	"notadmirer",
	"notadmiring",
	"notadmiringly",
	"notadmission",
	"notadmit",
	"notadmittedly",
	"notadorable",
	"notadore",
	"notadored",
	"notadorer",
	"notadoring",
	"notadoringly",
	"notadroit",
	"notadroitly",
	"notadulate",
	"notadulation",
	"notadulatory",
	"notadvanced",
	"notadvantage",
	"notadvantageous",
	"notadvantages",
	"notadventure",
	"notadventuresome",
	"notadventurism",
	"notadventurous",
	"notadvice",
	"notadvisable",
	"notadvocacy",
	"notadvocate",
	"notaffability",
	"notaffable",
	"notaffably",
	"notaffection",
	"notaffectionate",
	"notaffinity",
	"notaffirm",
	"notaffirmation",
	"notaffirmative",
	"notaffluence",
	"notaffluent",
	"notafford",
	"notaffordable",
	"notafloat",
	"notagile",
	"notagilely",
	"notagility",
	"notagree",
	"notagreeability",
	"notagreeable",
	"notagreeableness",
	"notagreeably",
	"notagreement",
	"notairy",
	"notalive",
	"notallay",
	"notalleviate",
	"notallowable",
	"notallure",
	"notalluring",
	"notalluringly",
	"notally",
	"notalmighty",
	"notaltruist",
	"notaltruistic",
	"notaltruistically",
	"notamaze",
	"notamazed",
	"notamazement",
	"notamazing",
	"notamazingly",
	"notambitious",
	"notambitiously",
	"notameliorate",
	"notamenable",
	"notamenity",
	"notamiability",
	"notamiabily",
	"notamiable",
	"notamicability",
	"notamicable",
	"notamicably",
	"notamity",
	"notamnesty",
	"notamorous",
	"notamour",
	"notample",
	"notamply",
	"notamuse",
	"notamusement",
	"notamusing",
	"notamusingly",
	"notangel",
	"notangelic",
	"notanimated",
	"notapostle",
	"notapotheosis",
	"notappeal",
	"notappealing",
	"notappease",
	"notapplaud",
	"notappreciable",
	"notappreciation",
	"notappreciative",
	"notappreciatively",
	"notappreciativeness",
	"notapproachable",
	"notappropriate",
	"notapproval",
	"notapprove",
	"notapt",
	"notaptitude",
	"notaptly",
	"notardent",
	"notardently",
	"notardor",
	"notaristocratic",
	"notarousal",
	"notarouse",
	"notarousing",
	"notarresting",
	"notarticulate",
	"notartistic",
	"notascendant",
	"notascertainable",
	"notaspiration",
	"notaspirations",
	"notaspire",
	"notassent",
	"notassertions",
	"notassertive",
	"notasset",
	"notassiduous",
	"notassiduously",
	"notassuage",
	"notassurance",
	"notassurances",
	"notassure",
	"notassured",
	"notassuredly",
	"notastonish",
	"notastonished",
	"notastonishing",
	"notastonishingly",
	"notastonishment",
	"notastound",
	"notastounded",
	"notastounding",
	"notastoundingly",
	"notastute",
	"notastutely",
	"notasylum",
	"notathletic",
	"notattain",
	"notattainable",
	"notattentive",
	"notattest",
	"notattraction",
	"notattractive",
	"notattractively",
	"notattune",
	"notauspicious",
	"notauthentic",
	"notauthoritative",
	"notautonomous",
	"notaver",
	"notavid",
	"notavidly",
	"notaward",
	"notawe",
	"notawed",
	"notawesome",
	"notawesomely",
	"notawesomeness",
	"notawestruck",
	"notback",
	"notbackbone",
	"notbalanced",
	"notbargain",
	"notbasic",
	"notbask",
	"notbeacon",
	"notbeatify",
	"notbeauteous",
	"notbeautiful",
	"notbeautifully",
	"notbeautify",
	"notbeauty",
	"notbefit",
	"notbefitting",
	"notbefriend",
	"notbelievable",
	"notbeloved",
	"notbenefactor",
	"notbeneficent",
	"notbeneficial",
	"notbeneficially",
	"notbeneficiary",
	"notbenefit",
	"notbenefits",
	"notbenevolence",
	"notbenevolent",
	"notbenign",
	"notbest-known",
	"notbest-performing",
	"notbest-selling",
	"notbetter-known",
	"notbetter-than-expected",
	"notblameless",
	"notbless",
	"notblessed",
	"notblessing",
	"notbliss",
	"notblissful",
	"notblissfully",
	"notblithe",
	"notbloom",
	"notblossom",
	"notboast",
	"notbold",
	"notboldly",
	"notboldness",
	"notbolster",
	"notbonny",
	"notbonus",
	"notboom",
	"notbooming",
	"notboost",
	"notboundless",
	"notbountiful",
	"notbrains",
	"notbrainy",
	"notbrave",
	"notbravery",
	"notbreakthrough",
	"notbreakthroughs",
	"notbreathlessness",
	"notbreathtaking",
	"notbreathtakingly",
	"notbright",
	"notbrighten",
	"notbrightness",
	"notbrilliance",
	"notbrilliant",
	"notbrilliantly",
	"notbrisk",
	"notbroad",
	"notbrook",
	"notbrotherly",
	"notbull",
	"notbullish",
	"notbuoyant",
	"notcalm",
	"notcalming",
	"notcalmness",
	"notcandid",
	"notcandor",
	"notcapability",
	"notcapable",
	"notcapably",
	"notcapitalize",
	"notcaptivate",
	"notcaptivating",
	"notcaptivation",
	"notcare",
	"notcarefree",
	"notcareful",
	"notcaring",
	"notcasual",
	"notcatalyst",
	"notcatchy",
	"notcelebrate",
	"notcelebrated",
	"notcelebration",
	"notcelebratory",
	"notcelebrity",
	"notcerebral",
	"notchamp",
	"notchampion",
	"notcharismatic",
	"notcharitable",
	"notcharity",
	"notcharm",
	"notcharming",
	"notcharmingly",
	"notchaste",
	"notchatty",
	"notcheer",
	"notcheerful",
	"notcheery",
	"notcherish",
	"notcherished",
	"notcherub",
	"notchic",
	"notchivalrous",
	"notchivalry",
	"notchum",
	"notcivil",
	"notcivility",
	"notcivilization",
	"notcivilize",
	"notclarity",
	"notclassic",
	"notclean",
	"notcleanliness",
	"notcleanse",
	"notclear",
	"notclear-cut",
	"notclearer",
	"notclearheaded",
	"notclever",
	"notcloseness",
	"notclout",
	"notco-operation",
	"notcoax",
	"notcoddle",
	"notcogent",
	"notcognizant",
	"notcohere",
	"notcoherence",
	"notcoherent",
	"notcohesion",
	"notcohesive",
	"notcolorful",
	"notcolossal",
	"notcomeback",
	"notcomedic",
	"notcomely",
	"notcomfort",
	"notcomfortable",
	"notcomfortably",
	"notcomforting",
	"notcommend",
	"notcommendable",
	"notcommendably",
	"notcommensurate",
	"notcommitment",
	"notcommodious",
	"notcommonsense",
	"notcommonsensible",
	"notcommonsensibly",
	"notcommonsensical",
	"notcompact",
	"notcompanionable",
	"notcompassion",
	"notcompassionate",
	"notcompatible",
	"notcompelling",
	"notcompensate",
	"notcompetence",
	"notcompetency",
	"notcompetent",
	"notcompetitiveness",
	"notcomplement",
	"notcomplex",
	"notcompliant",
	"notcompliment",
	"notcomplimentary",
	"notcomprehensive",
	"notcompromise",
	"notcompromises",
	"notcomrades",
	"notconceivable",
	"notconciliate",
	"notconciliatory",
	"notconcise",
	"notconclusive",
	"notconcrete",
	"notconcur",
	"notcondone",
	"notconducive",
	"notconfer",
	"notconfidence",
	"notconfident",
	"notconfute",
	"notcongenial",
	"notcongratulate",
	"notcongratulations",
	"notcongratulatory",
	"notconquer",
	"notconscience",
	"notconscientious",
	"notconsensus",
	"notconsent",
	"notconsiderate",
	"notconsistent",
	"notconsole",
	"notconstancy",
	"notconstant",
	"notconstructive",
	"notconsummate",
	"notcontent",
	"notcontentment",
	"notcontinuity",
	"notcontribution",
	"notconvenient",
	"notconveniently",
	"notconviction",
	"notconvince",
	"notconvincing",
	"notconvincingly",
	"notconvivial",
	"notconvulsive",
	"notcooperate",
	"notcooperation",
	"notcooperative",
	"notcooperatively",
	"notcordial",
	"notcornerstone",
	"notcorrect",
	"notcorrectly",
	"notcost-effective",
	"notcost-saving",
	"notcourage",
	"notcourageous",
	"notcourageously",
	"notcourageousness",
	"notcourt",
	"notcourteous",
	"notcourtesy",
	"notcourtly",
	"notcovenant",
	"notcovet",
	"notcoveting",
	"notcovetingly",
	"notcozy",
	"notcrave",
	"notcraving",
	"notcreative",
	"notcredence",
	"notcredible",
	"notcrisp",
	"notcrusade",
	"notcrusader",
	"notcure-all",
	"notcurious",
	"notcuriously",
	"notcute",
	"notdance",
	"notdare",
	"notdaring",
	"notdaringly",
	"notdarling",
	"notdashing",
	"notdauntless",
	"notdawn",
	"notdaydream",
	"notdaydreamer",
	"notdazzle",
	"notdazzled",
	"notdazzling",
	"notdeal",
	"notdear",
	"notdecency",
	"notdecent",
	"notdecisive",
	"notdecisiveness",
	"notdedicated",
	"notdeep",
	"notdefend",
	"notdefender",
	"notdefense",
	"notdeference",
	"notdefined",
	"notdefinite",
	"notdefinitive",
	"notdefinitively",
	"notdeflationary",
	"notdeft",
	"notdelectable",
	"notdeliberate",
	"notdelicacy",
	"notdelicious",
	"notdelight",
	"notdelighted",
	"notdelightful",
	"notdelightfully",
	"notdelightfulness",
	"notdemocratic",
	"notdemystify",
	"notdependable",
	"notdeserve",
	"notdeserved",
	"notdeservedly",
	"notdeserving",
	"notdesirable",
	"notdesire",
	"notdesirous",
	"notdestine",
	"notdestined",
	"notdestinies",
	"notdestiny",
	"notdetermination",
	"notdetermined",
	"notdevote",
	"notdevoted",
	"notdevotee",
	"notdevotion",
	"notdevout",
	"notdexterity",
	"notdexterous",
	"notdexterously",
	"notdextrous",
	"notdig",
	"notdignified",
	"notdignify",
	"notdignity",
	"notdiligence",
	"notdiligent",
	"notdiligently",
	"notdiplomatic",
	"notdirect",
	"notdisarming",
	"notdiscerning",
	"notdiscreet",
	"notdiscrete",
	"notdiscretion",
	"notdiscriminating",
	"notdiscriminatingly",
	"notdistinct",
	"notdistinction",
	"notdistinctive",
	"notdistinguish",
	"notdistinguished",
	"notdiversified",
	"notdivine",
	"notdivinely",
	"notdodge",
	"notdote",
	"notdotingly",
	"notdoubtless",
	"notdream",
	"notdreamland",
	"notdreams",
	"notdreamy",
	"notdrive",
	"notdriven",
	"notdurability",
	"notdurable",
	"notdutiful",
	"notdynamic",
	"noteager",
	"noteagerly",
	"noteagerness",
	"notearnest",
	"notearnestly",
	"notearnestness",
	"notease",
	"noteasier",
	"noteasiest",
	"noteasily",
	"noteasiness",
	"noteasy",
	"noteasygoing",
	"notebullience",
	"notebullient",
	"notebulliently",
	"noteclectic",
	"noteconomical",
	"notecstasies",
	"notecstasy",
	"notecstatic",
	"notecstatically",
	"notedify",
	"noteducable",
	"noteducated",
	"noteducational",
	"noteffective",
	"noteffectiveness",
	"noteffectual",
	"notefficacious",
	"notefficiency",
	"notefficient",
	"noteffortless",
	"noteffortlessly",
	"noteffusion",
	"noteffusive",
	"noteffusively",
	"noteffusiveness",
	"notegalitarian",
	"notelan",
	"notelate",
	"notelated",
	"notelatedly",
	"notelation",
	"notelectrification",
	"notelectrify",
	"notelegance",
	"notelegant",
	"notelegantly",
	"notelevate",
	"notelevated",
	"noteligible",
	"notelite",
	"noteloquence",
	"noteloquent",
	"noteloquently",
	"notemancipate",
	"notembellish",
	"notembolden",
	"notembrace",
	"noteminence",
	"noteminent",
	"notempower",
	"notempowerment",
	"notenable",
	"notenchant",
	"notenchanted",
	"notenchanting",
	"notenchantingly",
	"notencourage",
	"notencouragement",
	"notencouraging",
	"notencouragingly",
	"notendear",
	"notendearing",
	"notendorse",
	"notendorsement",
	"notendorser",
	"notendurable",
	"notendure",
	"notenduring",
	"notenergetic",
	"notenergize",
	"notengaging",
	"notengrossing",
	"notenhance",
	"notenhanced",
	"notenhancement",
	"notenjoy",
	"notenjoyable",
	"notenjoyably",
	"notenjoyment",
	"notenlighten",
	"notenlightened",
	"notenlightenment",
	"notenliven",
	"notennoble",
	"notenrapt",
	"notenrapture",
	"notenraptured",
	"notenrich",
	"notenrichment",
	"notensure",
	"notenterprising",
	"notentertain",
	"notentertaining",
	"notenthral",
	"notenthrall",
	"notenthralled",
	"notenthuse",
	"notenthusiasm",
	"notenthusiast",
	"notenthusiastic",
	"notenthusiastically",
	"notentice",
	"notenticing",
	"notenticingly",
	"notentrance",
	"notentranced",
	"notentrancing",
	"notentreat",
	"notentreatingly",
	"notentrust",
	"notenviable",
	"notenviably",
	"notenvision",
	"notenvisions",
	"notepic",
	"notepitome",
	"notequality",
	"notequitable",
	"noterudite",
	"notessential",
	"notestablished",
	"notesteem",
	"noteternity",
	"notethical",
	"noteulogize",
	"noteuphoria",
	"noteuphoric",
	"noteuphorically",
	"notevenly",
	"noteventful",
	"noteverlasting",
	"notevident",
	"notevidently",
	"notevocative",
	"notexact",
	"notexalt",
	"notexaltation",
	"notexalted",
	"notexaltedly",
	"notexalting",
	"notexaltingly",
	"notexceed",
	"notexceeding",
	"notexceedingly",
	"notexcel",
	"notexcellence",
	"notexcellency",
	"notexcellent",
	"notexcellently",
	"notexceptional",
	"notexceptionally",
	"notexcite",
	"notexcited",
	"notexcitedly",
	"notexcitedness",
	"notexcitement",
	"notexciting",
	"notexcitingly",
	"notexclusive",
	"notexcusable",
	"notexcuse",
	"notexemplar",
	"notexemplary",
	"notexhaustive",
	"notexhaustively",
	"notexhilarate",
	"notexhilarating",
	"notexhilaratingly",
	"notexhilaration",
	"notexonerate",
	"notexpansive",
	"notexperienced",
	"notexpert",
	"notexpertly",
	"notexplicit",
	"notexplicitly",
	"notexpressive",
	"notexquisite",
	"notexquisitely",
	"notextol",
	"notextoll",
	"notextraordinarily",
	"notextraordinary",
	"notexuberance",
	"notexuberant",
	"notexuberantly",
	"notexult",
	"notexultant",
	"notexultation",
	"notexultingly",
	"notfabulous",
	"notfabulously",
	"notfacilitate",
	"notfair",
	"notfairly",
	"notfairness",
	"notfaith",
	"notfaithful",
	"notfaithfully",
	"notfaithfulness",
	"notfame",
	"notfamed",
	"notfamous",
	"notfamously",
	"notfancy",
	"notfanfare",
	"notfantastic",
	"notfantastically",
	"notfantasy",
	"notfarsighted",
	"notfascinate",
	"notfascinating",
	"notfascinatingly",
	"notfascination",
	"notfashionable",
	"notfashionably",
	"notfast-growing",
	"notfast-paced",
	"notfastest-growing",
	"notfathom",
	"notfavor",
	"notfavorable",
	"notfavored",
	"notfavorite",
	"notfavour",
	"notfawn",
	"notfearless",
	"notfearlessly",
	"notfeasible",
	"notfeasibly",
	"notfeat",
	"notfeatly",
	"notfeisty",
	"notfelicitate",
	"notfelicitous",
	"notfelicity",
	"notfertile",
	"notfervent",
	"notfervently",
	"notfervid",
	"notfervidly",
	"notfervor",
	"notfestive",
	"notfidelity",
	"notfiery",
	"notfine",
	"notfinely",
	"notfirst-class",
	"notfirst-rate",
	"notfit",
	"notfitting",
	"notflair",
	"notflame",
	"notflatter",
	"notflattering",
	"notflatteringly",
	"notflawless",
	"notflawlessly",
	"notflexible",
	"notflourish",
	"notflourishing",
	"notfluent",
	"notfocused",
	"notfond",
	"notfondly",
	"notfondness",
	"notfoolproof",
	"notforbearing",
	"notforemost",
	"notforesight",
	"notforgave",
	"notforgive",
	"notforgiven",
	"notforgiveness",
	"notforgiving",
	"notforgivingly",
	"notforthright",
	"notfortitude",
	"notfortuitous",
	"notfortuitously",
	"notfortunate",
	"notfortunately",
	"notfortune",
	"notfragrant",
	"notfrank",
	"notfree",
	"notfreedom",
	"notfreedoms",
	"notfresh",
	"notfriend",
	"notfriendliness",
	"notfriendly",
	"notfriends",
	"notfriendship",
	"notfrolic",
	"notfruitful",
	"notfulfillment",
	"notfull-fledged",
	"notfun",
	"notfunctional",
	"notfunny",
	"notgaiety",
	"notgaily",
	"notgain",
	"notgainful",
	"notgainfully",
	"notgallant",
	"notgallantly",
	"notgalore",
	"notgem",
	"notgems",
	"notgenerosity",
	"notgenerous",
	"notgenerously",
	"notgenial",
	"notgenius",
	"notgenteel",
	"notgentle",
	"notgenuine",
	"notgermane",
	"notgiddy",
	"notgifted",
	"notglad",
	"notgladden",
	"notgladly",
	"notgladness",
	"notglamorous",
	"notglee",
	"notgleeful",
	"notgleefully",
	"notglimmer",
	"notglimmering",
	"notglisten",
	"notglistening",
	"notglitter",
	"notgloat",
	"notglorify",
	"notglorious",
	"notgloriously",
	"notglory",
	"notglossy",
	"notglow",
	"notglowing",
	"notglowingly",
	"notgo-ahead",
	"notgod-given",
	"notgodlike",
	"notgodly",
	"notgold",
	"notgolden",
	"notgood",
	"notgoodhearted",
	"notgoodly",
	"notgoodness",
	"notgoodwill",
	"notgorgeous",
	"notgorgeously",
	"notgrace",
	"notgraceful",
	"notgracefully",
	"notgracious",
	"notgraciously",
	"notgraciousness",
	"notgrail",
	"notgrand",
	"notgrandeur",
	"notgrateful",
	"notgratefully",
	"notgratification",
	"notgratify",
	"notgratifying",
	"notgratifyingly",
	"notgratitude",
	"notgreat",
	"notgreatest",
	"notgreatness",
	"notgreet",
	"notgregarious",
	"notgrin",
	"notgrit",
	"notgroove",
	"notgroundbreaking",
	"notgrounded",
	"notguarantee",
	"notguardian",
	"notguidance",
	"notguiltless",
	"notgumption",
	"notgush",
	"notgusto",
	"notgutsy",
	"nothail",
	"nothalcyon",
	"nothale",
	"nothallowed",
	"nothandily",
	"nothandsome",
	"nothandy",
	"nothanker",
	"nothappily",
	"nothappiness",
	"nothappy",
	"nothard-working",
	"nothardier",
	"nothardy",
	"notharmless",
	"notharmonious",
	"notharmoniously",
	"notharmonize",
	"notharmony",
	"nothaven",
	"notheadway",
	"notheady",
	"notheal",
	"nothealthful",
	"nothealthy",
	"notheart",
	"nothearten",
	"notheartening",
	"notheartfelt",
	"notheartily",
	"notheartwarming",
	"notheaven",
	"notheavenly",
	"notheedful",
	"nothelpful",
	"notherald",
	"nothero",
	"notheroic",
	"notheroically",
	"notheroine",
	"notheroize",
	"notheros",
	"nothigh-quality",
	"nothighlight",
	"nothilarious",
	"nothilariously",
	"nothilariousness",
	"nothilarity",
	"nothistoric",
	"notholy",
	"nothomage",
	"nothonest",
	"nothonestly",
	"nothonesty",
	"nothoneymoon",
	"nothonor",
	"nothonorable",
	"nothope",
	"nothopeful",
	"nothopefulness",
	"nothopes",
	"nothospitable",
	"nothot",
	"nothug",
	"nothumane",
	"nothumanists",
	"nothumanity",
	"nothumankind",
	"nothumble",
	"nothumility",
	"nothumor",
	"nothumorous",
	"nothumorously",
	"nothumour",
	"nothumourous",
	"notideal",
	"notidealism",
	"notidealist",
	"notidealize",
	"notideally",
	"notidol",
	"notidolize",
	"notidolized",
	"notidyllic",
	"notilluminate",
	"notilluminati",
	"notilluminating",
	"notillumine",
	"notillustrious",
	"notimaginative",
	"notimmaculate",
	"notimmaculately",
	"notimpartial",
	"notimpartiality",
	"notimpartially",
	"notimpassioned",
	"notimpeccable",
	"notimpeccably",
	"notimpel",
	"notimperial",
	"notimperturbable",
	"notimpervious",
	"notimpetus",
	"notimportance",
	"notimportant",
	"notimportantly",
	"notimpregnable",
	"notimpress",
	"notimpression",
	"notimpressions",
	"notimpressive",
	"notimpressively",
	"notimpressiveness",
	"notimprove",
	"notimproved",
	"notimprovement",
	"notimproving",
	"notimprovise",
	"notinalienable",
	"notincisive",
	"notincisively",
	"notincisiveness",
	"notinclination",
	"notinclinations",
	"notinclined",
	"notinclusive",
	"notincontestable",
	"notincontrovertible",
	"notincorruptible",
	"notincredible",
	"notincredibly",
	"notindebted",
	"notindefatigable",
	"notindelible",
	"notindelibly",
	"notindependence",
	"notindependent",
	"notindescribable",
	"notindescribably",
	"notindestructible",
	"notindispensability",
	"notindispensable",
	"notindisputable",
	"notindividuality",
	"notindomitable",
	"notindomitably",
	"notindubitable",
	"notindubitably",
	"notindulgence",
	"notindulgent",
	"notindustrious",
	"notinestimable",
	"notinestimably",
	"notinexpensive",
	"notinfallibility",
	"notinfallible",
	"notinfallibly",
	"notinfluential",
	"notinformative",
	"notingenious",
	"notingeniously",
	"notingenuity",
	"notingenuous",
	"notingenuously",
	"notingratiate",
	"notingratiating",
	"notingratiatingly",
	"notinnocence",
	"notinnocent",
	"notinnocently",
	"notinnocuous",
	"notinnovation",
	"notinnovative",
	"notinoffensive",
	"notinquisitive",
	"notinsight",
	"notinsightful",
	"notinsightfully",
	"notinsist",
	"notinsistence",
	"notinsistent",
	"notinsistently",
	"notinspiration",
	"notinspirational",
	"notinspire",
	"notinspired",
	"notinspiring",
	"notinstructive",
	"notinstrumental",
	"notintact",
	"notintegral",
	"notintegrity",
	"notintelligence",
	"notintelligent",
	"notintelligible",
	"notintercede",
	"notinterest",
	"notinterested",
	"notinteresting",
	"notinterests",
	"notintimacy",
	"notintimate",
	"notintricate",
	"notintrigue",
	"notintriguing",
	"notintriguingly",
	"notintuitive",
	"notinvaluable",
	"notinvaluablely",
	"notinventive",
	"notinvigorate",
	"notinvigorating",
	"notinvincibility",
	"notinvincible",
	"notinviolable",
	"notinviolate",
	"notinvulnerable",
	"notirrefutable",
	"notirrefutably",
	"notirreproachable",
	"notirresistible",
	"notirresistibly",
	"notjauntily",
	"notjaunty",
	"notjest",
	"notjoke",
	"notjollify",
	"notjolly",
	"notjovial",
	"notjoy",
	"notjoyful",
	"notjoyfully",
	"notjoyous",
	"notjoyously",
	"notjubilant",
	"notjubilantly",
	"notjubilate",
	"notjubilation",
	"notjudicious",
	"notjust",
	"notjustice",
	"notjustifiable",
	"notjustifiably",
	"notjustification",
	"notjustify",
	"notjustly",
	"notkeen",
	"notkeenly",
	"notkeenness",
	"notkemp",
	"notkid",
	"notkind",
	"notkindliness",
	"notkindly",
	"notkindness",
	"notkingmaker",
	"notkiss",
	"notkissable",
	"notknowledgeable",
	"notlarge",
	"notlark",
	"notlaud",
	"notlaudable",
	"notlaudably",
	"notlavish",
	"notlavishly",
	"notlaw-abiding",
	"notlawful",
	"notlawfully",
	"notleading",
	"notlean",
	"notlearned",
	"notlearning",
	"notlegendary",
	"notlegitimacy",
	"notlegitimate",
	"notlegitimately",
	"notlenient",
	"notleniently",
	"notless-expensive",
	"notleverage",
	"notlevity",
	"notliberal",
	"notliberalism",
	"notliberally",
	"notliberate",
	"notliberation",
	"notliberty",
	"notlifeblood",
	"notlifelong",
	"notlight",
	"notlight-hearted",
	"notlighten",
	"notlikable",
	"notlike",
	"notlikeable",
	"notliking",
	"notlionhearted",
	"notliterate",
	"notlive",
	"notlively",
	"notlofty",
	"notlogical",
	"notlooking",
	"notlovable",
	"notlovably",
	"notlove",
	"notlovee",
	"notloveliness",
	"notlovely",
	"notlover",
	"notlow-cost",
	"notlow-risk",
	"notlower-priced",
	"notloyal",
	"notloyalty",
	"notlucid",
	"notlucidly",
	"notluck",
	"notluckier",
	"notluckiest",
	"notluckily",
	"notluckiness",
	"notlucky",
	"notlucrative",
	"notluminous",
	"notlush",
	"notlust",
	"notluster",
	"notlustrous",
	"notluxuriant",
	"notluxuriate",
	"notluxurious",
	"notluxuriously",
	"notluxury",
	"notlyrical",
	"notmagic",
	"notmagical",
	"notmagnanimous",
	"notmagnanimously",
	"notmagnetic",
	"notmagnificence",
	"notmagnificent",
	"notmagnificently",
	"notmagnify",
	"notmajestic",
	"notmajesty",
	"notmanageable",
	"notmanifest",
	"notmanly",
	"notmannered",
	"notmannerly",
	"notmarvel",
	"notmarvellous",
	"notmarvelous",
	"notmarvelously",
	"notmarvelousness",
	"notmarvels",
	"notmaster",
	"notmasterful",
	"notmasterfully",
	"notmasterly",
	"notmasterpiece",
	"notmasterpieces",
	"notmasters",
	"notmastery",
	"notmatchless",
	"notmature",
	"notmaturely",
	"notmaturity",
	"notmaximize",
	"notmeaningful",
	"notmeek",
	"notmellow",
	"notmemorable",
	"notmemorialize",
	"notmend",
	"notmentor",
	"notmerciful",
	"notmercifully",
	"notmercy",
	"notmerit",
	"notmeritorious",
	"notmerrily",
	"notmerriment",
	"notmerriness",
	"notmerry",
	"notmesmerize",
	"notmesmerizing",
	"notmesmerizingly",
	"notmeticulous",
	"notmeticulously",
	"notmightily",
	"notmighty",
	"notmild",
	"notmindful",
	"notminister",
	"notmiracle",
	"notmiracles",
	"notmiraculous",
	"notmiraculously",
	"notmiraculousness",
	"notmirth",
	"notmoderate",
	"notmoderation",
	"notmodern",
	"notmodest",
	"notmodesty",
	"notmollify",
	"notmomentous",
	"notmonumental",
	"notmonumentally",
	"notmoral",
	"notmorality",
	"notmoralize",
	"notmotivate",
	"notmotivated",
	"notmotivation",
	"notmoving",
	"notmyriad",
	"notnatural",
	"notnaturally",
	"notnavigable",
	"notneat",
	"notneatly",
	"notnecessarily",
	"notneighborly",
	"notneutralize",
	"notnice",
	"notnicely",
	"notnifty",
	"notnimble",
	"notnoble",
	"notnobly",
	"notnon-violence",
	"notnon-violent",
	"notnormal",
	"notnotable",
	"notnotably",
	"notnoteworthy",
	"notnoticeable",
	"notnourish",
	"notnourishing",
	"notnourishment",
	"notnurture",
	"notnurturing",
	"notoasis",
	"notobedience",
	"notobedient",
	"notobediently",
	"notobey",
	"notobjective",
	"notobjectively",
	"notobliged",
	"notobviate",
	"notoffbeat",
	"notoffset",
	"notonward",
	"notopen",
	"notopenhanded",
	"notopenly",
	"notopenness",
	"notopportune",
	"notopportunity",
	"notoptimal",
	"notoptimism",
	"notoptimistic",
	"notopulent",
	"notorderly",
	"notoriginal",
	"notoriginality",
	"notorious",
	"notoriously",
	"notoutdo",
	"notoutgoing",
	"notoutshine",
	"notoutsmart",
	"notoutstanding",
	"notoutstandingly",
	"notoutstrip",
	"notoutwit",
	"notovation",
	"notoverachiever",
	"notoverjoyed",
	"notoverture",
	"notpacifist",
	"notpacifists",
	"notpainless",
	"notpainlessly",
	"notpainstaking",
	"notpainstakingly",
	"notpalatable",
	"notpalatial",
	"notpalliate",
	"notpamper",
	"notparadise",
	"notparamount",
	"notpardon",
	"notpassion",
	"notpassionate",
	"notpassionately",
	"notpatience",
	"notpatient",
	"notpatiently",
	"notpatriot",
	"notpatriotic",
	"notpeace",
	"notpeaceable",
	"notpeaceful",
	"notpeacefully",
	"notpeacekeepers",
	"notpeerless",
	"notpenetrating",
	"notpenitent",
	"notperceptive",
	"notperfect",
	"notperfection",
	"notperfectly",
	"notpermissible",
	"notperseverance",
	"notpersevere",
	"notpersistent",
	"notpersonable",
	"notpersonages",
	"notpersonality",
	"notperspicuous",
	"notperspicuously",
	"notpersuade",
	"notpersuasive",
	"notpersuasively",
	"notpertinent",
	"notphenomenal",
	"notphenomenally",
	"notphilanthropic",
	"notphilosophical",
	"notpicturesque",
	"notpiety",
	"notpillar",
	"notpinnacle",
	"notpious",
	"notpithy",
	"notplacate",
	"notplacid",
	"notplainly",
	"notplausibility",
	"notplausible",
	"notplayful",
	"notplayfully",
	"notpleasant",
	"notpleasantly",
	"notpleased",
	"notpleasing",
	"notpleasingly",
	"notpleasurable",
	"notpleasurably",
	"notpleasure",
	"notpledge",
	"notpledges",
	"notplentiful",
	"notplenty",
	"notplush",
	"notpoetic",
	"notpoeticize",
	"notpoignant",
	"notpoise",
	"notpoised",
	"notpolished",
	"notpolite",
	"notpoliteness",
	"notpopular",
	"notpopularity",
	"notportable",
	"notposh",
	"notpositive",
	"notpositively",
	"notpositiveness",
	"notposterity",
	"notpotent",
	"notpotential",
	"notpowerful",
	"notpowerfully",
	"notpracticable",
	"notpractical",
	"notpragmatic",
	"notpraise",
	"notpraiseworthy",
	"notpraising",
	"notpre-eminent",
	"notpreach",
	"notpreaching",
	"notprecaution",
	"notprecautions",
	"notprecedent",
	"notprecious",
	"notprecise",
	"notprecisely",
	"notprecision",
	"notpreeminent",
	"notpreemptive",
	"notprefer",
	"notpreferable",
	"notpreferably",
	"notpreference",
	"notpreferences",
	"notpremier",
	"notpremium",
	"notprepared",
	"notpreponderance",
	"notpress",
	"notprestige",
	"notprestigious",
	"notprettily",
	"notpretty",
	"notpriceless",
	"notpride",
	"notprinciple",
	"notprincipled",
	"notprivilege",
	"notprivileged",
	"notprize",
	"notpro",
	"notpro-american",
	"notpro-beijing",
	"notpro-cuba",
	"notpro-peace",
	"notproactive",
	"notprodigious",
	"notprodigiously",
	"notprodigy",
	"notproductive",
	"notprofess",
	"notprofessional",
	"notproficient",
	"notproficiently",
	"notprofit",
	"notprofitable",
	"notprofound",
	"notprofoundly",
	"notprofuse",
	"notprofusely",
	"notprofusion",
	"notprogress",
	"notprogressive",
	"notprolific",
	"notprominence",
	"notprominent",
	"notpromise",
	"notpromising",
	"notpromoter",
	"notprompt",
	"notpromptly",
	"notproper",
	"notproperly",
	"notpropitious",
	"notpropitiously",
	"notprospect",
	"notprospects",
	"notprosper",
	"notprosperity",
	"notprosperous",
	"notprotect",
	"notprotection",
	"notprotective",
	"notprotector",
	"notproud",
	"notprovidence",
	"notprovident",
	"notprowess",
	"notprudence",
	"notprudent",
	"notprudently",
	"notpunctual",
	"notpundits",
	"notpure",
	"notpurification",
	"notpurify",
	"notpurity",
	"notpurposeful",
	"notquaint",
	"notqualified",
	"notqualify",
	"notquasi-ally",
	"notquench",
	"notquicken",
	"notradiance",
	"notradiant",
	"notrally",
	"notrapport",
	"notrapprochement",
	"notrapt",
	"notrapture",
	"notraptureous",
	"notraptureously",
	"notrapturous",
	"notrapturously",
	"notrational",
	"notrationality",
	"notrave",
	"notre-conquest",
	"notreadily",
	"notready",
	"notreaffirm",
	"notreaffirmation",
	"notreal",
	"notrealist",
	"notrealistic",
	"notrealistically",
	"notreason",
	"notreasonable",
	"notreasonably",
	"notreasoned",
	"notreassurance",
	"notreassure",
	"notreceptive",
	"notreclaim",
	"notrecognition",
	"notrecommend",
	"notrecommendation",
	"notrecommendations",
	"notrecommended",
	"notrecompense",
	"notreconcile",
	"notreconciliation",
	"notrecord-setting",
	"notrecover",
	"notrectification",
	"notrectify",
	"notrectifying",
	"notredeem",
	"notredeeming",
	"notredemption",
	"notreestablish",
	"notrefine",
	"notrefined",
	"notrefinement",
	"notreflective",
	"notreform",
	"notrefresh",
	"notrefreshing",
	"notrefuge",
	"notregal",
	"notregally",
	"notregard",
	"notrehabilitate",
	"notrehabilitation",
	"notreinforce",
	"notreinforcement",
	"notrejoice",
	"notrejoicing",
	"notrejoicingly",
	"notrelax",
	"notrelaxed",
	"notrelent",
	"notrelevance",
	"notrelevant",
	"notreliability",
	"notreliable",
	"notreliably",
	"notrelief",
	"notrelieve",
	"notrelish",
	"notremarkable",
	"notremarkably",
	"notremedy",
	"notreminiscent",
	"notremunerate",
	"notrenaissance",
	"notrenewal",
	"notrenovate",
	"notrenovation",
	"notrenown",
	"notrenowned",
	"notrepair",
	"notreparation",
	"notrepay",
	"notrepent",
	"notrepentance",
	"notreposed",
	"notreputable",
	"notrescue",
	"notresilient",
	"notresolute",
	"notresolve",
	"notresolved",
	"notresound",
	"notresounding",
	"notresourceful",
	"notresourcefulness",
	"notrespect",
	"notrespectable",
	"notrespectful",
	"notrespectfully",
	"notrespite",
	"notresplendent",
	"notresponsibility",
	"notresponsible",
	"notresponsibly",
	"notresponsive",
	"notrestful",
	"notrestoration",
	"notrestore",
	"notrestrained",
	"notrestraint",
	"notresurgent",
	"notreunite",
	"notrevel",
	"notrevelation",
	"notrevere",
	"notreverence",
	"notreverent",
	"notreverently",
	"notrevitalize",
	"notrevival",
	"notrevive",
	"notrevolution",
	"notreward",
	"notrewarding",
	"notrewardingly",
	"notrich",
	"notriches",
	"notrichly",
	"notrichness",
	"notright",
	"notrighten",
	"notrighteous",
	"notrighteously",
	"notrighteousness",
	"notrightful",
	"notrightfully",
	"notrightly",
	"notrightness",
	"notrights",
	"notripe",
	"notrisk-free",
	"notrobust",
	"notromantic",
	"notromantically",
	"notromanticize",
	"notrosy",
	"notrousing",
	"notsacred",
	"notsafe",
	"notsafeguard",
	"notsagacious",
	"notsagacity",
	"notsage",
	"notsagely",
	"notsaint",
	"notsaintliness",
	"notsaintly",
	"notsalable",
	"notsalivate",
	"notsalutary",
	"notsalute",
	"notsalvation",
	"notsanctify",
	"notsanction",
	"notsanctity",
	"notsanctuary",
	"notsane",
	"notsanguine",
	"notsanity",
	"notsatisfaction",
	"notsatisfactorily",
	"notsatisfactory",
	"notsatisfied",
	"notsatisfy",
	"notsatisfying",
	"notsavor",
	"notsavvy",
	"notscenic",
	"notscholarly",
	"notscruples",
	"notscrupulous",
	"notscrupulously",
	"notseamless",
	"notseasoned",
	"notsecure",
	"notsecurely",
	"notsecurity",
	"notseductive",
	"notseemly",
	"notselective",
	"notself-determination",
	"notself-respect",
	"notself-satisfaction",
	"notself-sufficiency",
	"notself-sufficient",
	"notsemblance",
	"notsensation",
	"notsensational",
	"notsensationally",
	"notsensations",
	"notsense",
	"notsensible",
	"notsensibly",
	"notsensitively",
	"notsensitivity",
	"notsensual",
	"notsentiment",
	"notsentimental",
	"notsentimentality",
	"notsentimentally",
	"notsentiments",
	"notserene",
	"notserenity",
	"notsettle",
	"notsexy",
	"notsharp",
	"notshelter",
	"notshield",
	"notshimmer",
	"notshimmering",
	"notshimmeringly",
	"notshine",
	"notshiny",
	"notshrewd",
	"notshrewdly",
	"notshrewdness",
	"notsignificance",
	"notsignificant",
	"notsignify",
	"notsimple",
	"notsimplicity",
	"notsimplified",
	"notsimplify",
	"notsincere",
	"notsincerely",
	"notsincerity",
	"notskill",
	"notskilled",
	"notskillful",
	"notskillfully",
	"notsleek",
	"notslender",
	"notslim",
	"notsmart",
	"notsmarter",
	"notsmartest",
	"notsmartly",
	"notsmile",
	"notsmiling",
	"notsmilingly",
	"notsmitten",
	"notsmooth",
	"notsociable",
	"notsoft-spoken",
	"notsoften",
	"notsolace",
	"notsolicitous",
	"notsolicitously",
	"notsolicitude",
	"notsolid",
	"notsolidarity",
	"notsoothe",
	"notsoothingly",
	"notsophisticated",
	"notsoulful",
	"notsound",
	"notsoundness",
	"notspacious",
	"notspare",
	"notsparing",
	"notsparingly",
	"notsparkle",
	"notsparkling",
	"notspecial",
	"notspectacular",
	"notspectacularly",
	"notspeedy",
	"notspellbind",
	"notspellbinding",
	"notspellbindingly",
	"notspellbound",
	"notspirit",
	"notspirited",
	"notspiritual",
	"notsplendid",
	"notsplendidly",
	"notsplendor",
	"notspontaneous",
	"notspotless",
	"notsprightly",
	"notsprite",
	"notspry",
	"notspur",
	"notsquarely",
	"notstability",
	"notstabilize",
	"notstable",
	"notstainless",
	"notstand",
	"notstar",
	"notstars",
	"notstately",
	"notstatuesque",
	"notstaunch",
	"notstaunchly",
	"notstaunchness",
	"notsteadfast",
	"notsteadfastly",
	"notsteadfastness",
	"notsteadiness",
	"notsteady",
	"notstellar",
	"notstellarly",
	"notstimulate",
	"notstimulating",
	"notstimulative",
	"notstirring",
	"notstirringly",
	"notstood",
	"notstraight",
	"notstraightforward",
	"notstreamlined",
	"notstride",
	"notstrides",
	"notstriking",
	"notstrikingly",
	"notstriving",
	"notstrong",
	"notstudious",
	"notstudiously",
	"notstunned",
	"notstunning",
	"notstunningly",
	"notstupendous",
	"notstupendously",
	"notsturdy",
	"notstylish",
	"notstylishly",
	"notsuave",
	"notsublime",
	"notsubscribe",
	"notsubstantial",
	"notsubstantially",
	"notsubstantive",
	"notsubtle",
	"notsucceed",
	"notsuccess",
	"notsuccessful",
	"notsuccessfully",
	"notsuffice",
	"notsufficient",
	"notsufficiently",
	"notsuggest",
	"notsuggestions",
	"notsuit",
	"notsuitable",
	"notsumptuous",
	"notsumptuously",
	"notsumptuousness",
	"notsunny",
	"notsuper",
	"notsuperb",
	"notsuperbly",
	"notsuperior",
	"notsuperlative",
	"notsupport",
	"notsupporter",
	"notsupportive",
	"notsupreme",
	"notsupremely",
	"notsupurb",
	"notsupurbly",
	"notsurely",
	"notsurge",
	"notsurging",
	"notsurmise",
	"notsurmount",
	"notsurpass",
	"notsurvival",
	"notsurvive",
	"notsurvivor",
	"notsustainability",
	"notsustainable",
	"notsustained",
	"notsweeping",
	"notsweet",
	"notsweeten",
	"notsweetheart",
	"notsweetly",
	"notsweetness",
	"notswell",
	"notswift",
	"notswiftness",
	"notsworn",
	"notsympathetic",
	"notsystematic",
	"nottact",
	"nottalent",
	"nottalented",
	"nottantalize",
	"nottantalizing",
	"nottantalizingly",
	"nottaste",
	"nottemperance",
	"nottemperate",
	"nottempt",
	"nottempting",
	"nottemptingly",
	"nottenacious",
	"nottenaciously",
	"nottenacity",
	"nottender",
	"nottenderly",
	"nottenderness",
	"notterrific",
	"notterrifically",
	"notterrified",
	"notterrify",
	"notterrifying",
	"notterrifyingly",
	"notthankful",
	"notthankfully",
	"notthanks",
	"notthinkable",
	"notthorough",
	"notthoughtful",
	"notthoughtfully",
	"notthoughtfulness",
	"notthrift",
	"notthrifty",
	"notthrill",
	"notthrilling",
	"notthrillingly",
	"notthrills",
	"notthrive",
	"notthriving",
	"nottickle",
	"nottidy",
	"nottime-honored",
	"nottimely",
	"nottingle",
	"nottitillate",
	"nottitillating",
	"nottitillatingly",
	"nottoast",
	"nottogetherness",
	"nottolerable",
	"nottolerably",
	"nottolerance",
	"nottolerant",
	"nottolerantly",
	"nottolerate",
	"nottoleration",
	"nottop",
	"nottorrid",
	"nottorridly",
	"nottough",
	"nottradition",
	"nottraditional",
	"nottranquil",
	"nottranquility",
	"nottreasure",
	"nottreat",
	"nottremendous",
	"nottremendously",
	"nottrendy",
	"nottrepidation",
	"nottribute",
	"nottrim",
	"nottriumph",
	"nottriumphal",
	"nottriumphant",
	"nottriumphantly",
	"nottruculent",
	"nottruculently",
	"nottrue",
	"nottrump",
	"nottrumpet",
	"nottrust",
	"nottrusting",
	"nottrustingly",
	"nottrustworthiness",
	"nottrustworthy",
	"nottruth",
	"nottruthful",
	"nottruthfully",
	"nottruthfulness",
	"nottwinkly",
	"notultimate",
	"notultimately",
	"notultra",
	"notunabashed",
	"notunabashedly",
	"notunanimous",
	"notunassailable",
	"notunbiased",
	"notunbosom",
	"notunbound",
	"notunbroken",
	"notuncommon",
	"notuncommonly",
	"notunconcerned",
	"notunconditional",
	"notunconventional",
	"notundaunted",
	"notunderstand",
	"notunderstandable",
	"notunderstanding",
	"notunderstate",
	"notunderstated",
	"notunderstatedly",
	"notunderstood",
	"notundisputable",
	"notundisputably",
	"notundisputed",
	"notundoubted",
	"notundoubtedly",
	"notunencumbered",
	"notunequivocal",
	"notunequivocally",
	"notunfazed",
	"notunfettered",
	"notunforgettable",
	"notuniform",
	"notuniformly",
	"notunique",
	"notunity",
	"notuniversal",
	"notunlimited",
	"notunparalleled",
	"notunpretentious",
	"notunquestionable",
	"notunquestionably",
	"notunrestricted",
	"notunscathed",
	"notunselfish",
	"notuntouched",
	"notuntrained",
	"notupbeat",
	"notupfront",
	"notupgrade",
	"notupheld",
	"notuphold",
	"notuplift",
	"notuplifting",
	"notupliftingly",
	"notupliftment",
	"notupright",
	"notupscale",
	"notupside",
	"notupward",
	"noturge",
	"notusable",
	"notuseful",
	"notusefulness",
	"notutilitarian",
	"notutmost",
	"notuttermost",
	"notvaliant",
	"notvaliantly",
	"notvalid",
	"notvalidity",
	"notvalor",
	"notvaluable",
	"notvalues",
	"notvanquish",
	"notvast",
	"notvastly",
	"notvastness",
	"notvenerable",
	"notvenerably",
	"notvenerate",
	"notverifiable",
	"notveritable",
	"notversatile",
	"notversatility",
	"notveryabidance",
	"notveryabide",
	"notveryabilities",
	"notveryability",
	"notveryabound",
	"notveryabove-average",
	"notveryabsolve",
	"notveryabundance",
	"notveryabundant",
	"notveryaccede",
	"notveryaccept",
	"notveryacceptable",
	"notveryacceptance",
	"notveryaccessible",
	"notveryacclaim",
	"notveryacclaimed",
	"notveryacclamation",
	"notveryaccolade",
	"notveryaccolades",
	"notveryaccommodating",
	"notveryaccommodative",
	"notveryaccomplish",
	"notveryaccomplished",
	"notveryaccomplishment",
	"notveryaccomplishments",
	"notveryaccord",
	"notveryaccordance",
	"notveryaccordantly",
	"notveryaccountable",
	"notveryaccurate",
	"notveryaccurately",
	"notveryachievable",
	"notveryachieve",
	"notveryachievement",
	"notveryachievements",
	"notveryacknowledge",
	"notveryacknowledgement",
	"notveryacquit",
	"notveryactive",
	"notveryacumen",
	"notveryadaptability",
	"notveryadaptable",
	"notveryadaptive",
	"notveryadept",
	"notveryadeptly",
	"notveryadequate",
	"notveryadherence",
	"notveryadherent",
	"notveryadhesion",
	"notveryadmirable",
	"notveryadmirably",
	"notveryadmiration",
	"notveryadmire",
	"notveryadmirer",
	"notveryadmiring",
	"notveryadmiringly",
	"notveryadmission",
	"notveryadmit",
	"notveryadmittedly",
	"notveryadorable",
	"notveryadore",
	"notveryadored",
	"notveryadorer",
	"notveryadoring",
	"notveryadoringly",
	"notveryadroit",
	"notveryadroitly",
	"notveryadulate",
	"notveryadulation",
	"notveryadulatory",
	"notveryadvanced",
	"notveryadvantage",
	"notveryadvantageous",
	"notveryadvantages",
	"notveryadventure",
	"notveryadventuresome",
	"notveryadventurism",
	"notveryadventurous",
	"notveryadvice",
	"notveryadvisable",
	"notveryadvocacy",
	"notveryadvocate",
	"notveryaffability",
	"notveryaffable",
	"notveryaffably",
	"notveryaffection",
	"notveryaffectionate",
	"notveryaffinity",
	"notveryaffirm",
	"notveryaffirmation",
	"notveryaffirmative",
	"notveryaffluence",
	"notveryaffluent",
	"notveryafford",
	"notveryaffordable",
	"notveryafloat",
	"notveryagile",
	"notveryagilely",
	"notveryagility",
	"notveryagree",
	"notveryagreeability",
	"notveryagreeable",
	"notveryagreeableness",
	"notveryagreeably",
	"notveryagreement",
	"notveryairy",
	"notveryalive",
	"notveryallay",
	"notveryalleviate",
	"notveryallowable",
	"notveryallure",
	"notveryalluring",
	"notveryalluringly",
	"notveryally",
	"notveryalmighty",
	"notveryaltruist",
	"notveryaltruistic",
	"notveryaltruistically",
	"notveryamaze",
	"notveryamazed",
	"notveryamazement",
	"notveryamazing",
	"notveryamazingly",
	"notveryambitious",
	"notveryambitiously",
	"notveryameliorate",
	"notveryamenable",
	"notveryamenity",
	"notveryamiability",
	"notveryamiabily",
	"notveryamiable",
	"notveryamicability",
	"notveryamicable",
	"notveryamicably",
	"notveryamity",
	"notveryamnesty",
	"notveryamorous",
	"notveryamour",
	"notveryample",
	"notveryamply",
	"notveryamuse",
	"notveryamusement",
	"notveryamusing",
	"notveryamusingly",
	"notveryangel",
	"notveryangelic",
	"notveryanimated",
	"notveryapostle",
	"notveryapotheosis",
	"notveryappeal",
	"notveryappealing",
	"notveryappease",
	"notveryapplaud",
	"notveryappreciable",
	"notveryappreciation",
	"notveryappreciative",
	"notveryappreciatively",
	"notveryappreciativeness",
	"notveryapproachable",
	"notveryappropriate",
	"notveryapproval",
	"notveryapprove",
	"notveryapt",
	"notveryaptitude",
	"notveryaptly",
	"notveryardent",
	"notveryardently",
	"notveryardor",
	"notveryaristocratic",
	"notveryarousal",
	"notveryarouse",
	"notveryarousing",
	"notveryarresting",
	"notveryarticulate",
	"notveryartistic",
	"notveryascendant",
	"notveryascertainable",
	"notveryaspiration",
	"notveryaspirations",
	"notveryaspire",
	"notveryassent",
	"notveryassertions",
	"notveryassertive",
	"notveryasset",
	"notveryassiduous",
	"notveryassiduously",
	"notveryassuage",
	"notveryassurance",
	"notveryassurances",
	"notveryassure",
	"notveryassured",
	"notveryassuredly",
	"notveryastonish",
	"notveryastonished",
	"notveryastonishing",
	"notveryastonishingly",
	"notveryastonishment",
	"notveryastound",
	"notveryastounded",
	"notveryastounding",
	"notveryastoundingly",
	"notveryastute",
	"notveryastutely",
	"notveryasylum",
	"notveryathletic",
	"notveryattain",
	"notveryattainable",
	"notveryattentive",
	"notveryattest",
	"notveryattraction",
	"notveryattractive",
	"notveryattractively",
	"notveryattune",
	"notveryauspicious",
	"notveryauthentic",
	"notveryauthoritative",
	"notveryautonomous",
	"notveryaver",
	"notveryavid",
	"notveryavidly",
	"notveryaward",
	"notveryawe",
	"notveryawed",
	"notveryawesome",
	"notveryawesomely",
	"notveryawesomeness",
	"notveryawestruck",
	"notveryback",
	"notverybackbone",
	"notverybalanced",
	"notverybargain",
	"notverybasic",
	"notverybask",
	"notverybeacon",
	"notverybeatify",
	"notverybeauteous",
	"notverybeautiful",
	"notverybeautifully",
	"notverybeautify",
	"notverybeauty",
	"notverybefit",
	"notverybefitting",
	"notverybefriend",
	"notverybelievable",
	"notverybeloved",
	"notverybenefactor",
	"notverybeneficent",
	"notverybeneficial",
	"notverybeneficially",
	"notverybeneficiary",
	"notverybenefit",
	"notverybenefits",
	"notverybenevolence",
	"notverybenevolent",
	"notverybenign",
	"notverybest-known",
	"notverybest-performing",
	"notverybest-selling",
	"notverybetter-known",
	"notverybetter-than-expected",
	"notveryblameless",
	"notverybless",
	"notveryblessed",
	"notveryblessing",
	"notverybliss",
	"notveryblissful",
	"notveryblissfully",
	"notveryblithe",
	"notverybloom",
	"notveryblossom",
	"notveryboast",
	"notverybold",
	"notveryboldly",
	"notveryboldness",
	"notverybolster",
	"notverybonny",
	"notverybonus",
	"notveryboom",
	"notverybooming",
	"notveryboost",
	"notveryboundless",
	"notverybountiful",
	"notverybrains",
	"notverybrainy",
	"notverybrave",
	"notverybravery",
	"notverybreakthrough",
	"notverybreakthroughs",
	"notverybreathlessness",
	"notverybreathtaking",
	"notverybreathtakingly",
	"notverybright",
	"notverybrighten",
	"notverybrightness",
	"notverybrilliance",
	"notverybrilliant",
	"notverybrilliantly",
	"notverybrisk",
	"notverybroad",
	"notverybrook",
	"notverybrotherly",
	"notverybull",
	"notverybullish",
	"notverybuoyant",
	"notverycalm",
	"notverycalming",
	"notverycalmness",
	"notverycandid",
	"notverycandor",
	"notverycapability",
	"notverycapable",
	"notverycapably",
	"notverycapitalize",
	"notverycaptivate",
	"notverycaptivating",
	"notverycaptivation",
	"notverycare",
	"notverycarefree",
	"notverycareful",
	"notverycaring",
	"notverycasual",
	"notverycatalyst",
	"notverycatchy",
	"notverycelebrate",
	"notverycelebrated",
	"notverycelebration",
	"notverycelebratory",
	"notverycelebrity",
	"notverycerebral",
	"notverychamp",
	"notverychampion",
	"notverycharismatic",
	"notverycharitable",
	"notverycharity",
	"notverycharm",
	"notverycharming",
	"notverycharmingly",
	"notverychaste",
	"notverychatty",
	"notverycheer",
	"notverycheerful",
	"notverycheery",
	"notverycherish",
	"notverycherished",
	"notverycherub",
	"notverychic",
	"notverychivalrous",
	"notverychivalry",
	"notverychum",
	"notverycivil",
	"notverycivility",
	"notverycivilization",
	"notverycivilize",
	"notveryclarity",
	"notveryclassic",
	"notveryclean",
	"notverycleanliness",
	"notverycleanse",
	"notveryclear",
	"notveryclear-cut",
	"notveryclearer",
	"notveryclearheaded",
	"notveryclever",
	"notverycloseness",
	"notveryclout",
	"notveryco-operation",
	"notverycoax",
	"notverycoddle",
	"notverycogent",
	"notverycognizant",
	"notverycohere",
	"notverycoherence",
	"notverycoherent",
	"notverycohesion",
	"notverycohesive",
	"notverycolorful",
	"notverycolossal",
	"notverycomeback",
	"notverycomedic",
	"notverycomely",
	"notverycomfort",
	"notverycomfortable",
	"notverycomfortably",
	"notverycomforting",
	"notverycommend",
	"notverycommendable",
	"notverycommendably",
	"notverycommensurate",
	"notverycommitment",
	"notverycommodious",
	"notverycommonsense",
	"notverycommonsensible",
	"notverycommonsensibly",
	"notverycommonsensical",
	"notverycompact",
	"notverycompanionable",
	"notverycompassion",
	"notverycompassionate",
	"notverycompatible",
	"notverycompelling",
	"notverycompensate",
	"notverycompetence",
	"notverycompetency",
	"notverycompetent",
	"notverycompetitiveness",
	"notverycomplement",
	"notverycomplex",
	"notverycompliant",
	"notverycompliment",
	"notverycomplimentary",
	"notverycomprehensive",
	"notverycompromise",
	"notverycompromises",
	"notverycomrades",
	"notveryconceivable",
	"notveryconciliate",
	"notveryconciliatory",
	"notveryconcise",
	"notveryconclusive",
	"notveryconcrete",
	"notveryconcur",
	"notverycondone",
	"notveryconducive",
	"notveryconfer",
	"notveryconfidence",
	"notveryconfident",
	"notveryconfute",
	"notverycongenial",
	"notverycongratulate",
	"notverycongratulations",
	"notverycongratulatory",
	"notveryconquer",
	"notveryconscience",
	"notveryconscientious",
	"notveryconsensus",
	"notveryconsent",
	"notveryconsiderate",
	"notveryconsistent",
	"notveryconsole",
	"notveryconstancy",
	"notveryconstant",
	"notveryconstructive",
	"notveryconsummate",
	"notverycontent",
	"notverycontentment",
	"notverycontinuity",
	"notverycontribution",
	"notveryconvenient",
	"notveryconveniently",
	"notveryconviction",
	"notveryconvince",
	"notveryconvincing",
	"notveryconvincingly",
	"notveryconvivial",
	"notveryconvulsive",
	"notverycooperate",
	"notverycooperation",
	"notverycooperative",
	"notverycooperatively",
	"notverycordial",
	"notverycornerstone",
	"notverycorrect",
	"notverycorrectly",
	"notverycost-effective",
	"notverycost-saving",
	"notverycourage",
	"notverycourageous",
	"notverycourageously",
	"notverycourageousness",
	"notverycourt",
	"notverycourteous",
	"notverycourtesy",
	"notverycourtly",
	"notverycovenant",
	"notverycovet",
	"notverycoveting",
	"notverycovetingly",
	"notverycozy",
	"notverycrave",
	"notverycraving",
	"notverycreative",
	"notverycredence",
	"notverycredible",
	"notverycrisp",
	"notverycrusade",
	"notverycrusader",
	"notverycure-all",
	"notverycurious",
	"notverycuriously",
	"notverycute",
	"notverydance",
	"notverydare",
	"notverydaring",
	"notverydaringly",
	"notverydarling",
	"notverydashing",
	"notverydauntless",
	"notverydawn",
	"notverydaydream",
	"notverydaydreamer",
	"notverydazzle",
	"notverydazzled",
	"notverydazzling",
	"notverydeal",
	"notverydear",
	"notverydecency",
	"notverydecent",
	"notverydecisive",
	"notverydecisiveness",
	"notverydedicated",
	"notverydeep",
	"notverydefend",
	"notverydefender",
	"notverydefense",
	"notverydeference",
	"notverydefined",
	"notverydefinite",
	"notverydefinitive",
	"notverydefinitively",
	"notverydeflationary",
	"notverydeft",
	"notverydelectable",
	"notverydeliberate",
	"notverydelicacy",
	"notverydelicious",
	"notverydelight",
	"notverydelighted",
	"notverydelightful",
	"notverydelightfully",
	"notverydelightfulness",
	"notverydemocratic",
	"notverydemystify",
	"notverydependable",
	"notverydeserve",
	"notverydeserved",
	"notverydeservedly",
	"notverydeserving",
	"notverydesirable",
	"notverydesire",
	"notverydesirous",
	"notverydestine",
	"notverydestined",
	"notverydestinies",
	"notverydestiny",
	"notverydetermination",
	"notverydetermined",
	"notverydevote",
	"notverydevoted",
	"notverydevotee",
	"notverydevotion",
	"notverydevout",
	"notverydexterity",
	"notverydexterous",
	"notverydexterously",
	"notverydextrous",
	"notverydig",
	"notverydignified",
	"notverydignify",
	"notverydignity",
	"notverydiligence",
	"notverydiligent",
	"notverydiligently",
	"notverydiplomatic",
	"notverydirect",
	"notverydisarming",
	"notverydiscerning",
	"notverydiscreet",
	"notverydiscrete",
	"notverydiscretion",
	"notverydiscriminating",
	"notverydiscriminatingly",
	"notverydistinct",
	"notverydistinction",
	"notverydistinctive",
	"notverydistinguish",
	"notverydistinguished",
	"notverydiversified",
	"notverydivine",
	"notverydivinely",
	"notverydodge",
	"notverydote",
	"notverydotingly",
	"notverydoubtless",
	"notverydream",
	"notverydreamland",
	"notverydreams",
	"notverydreamy",
	"notverydrive",
	"notverydriven",
	"notverydurability",
	"notverydurable",
	"notverydutiful",
	"notverydynamic",
	"notveryeager",
	"notveryeagerly",
	"notveryeagerness",
	"notveryearnest",
	"notveryearnestly",
	"notveryearnestness",
	"notveryease",
	"notveryeasier",
	"notveryeasiest",
	"notveryeasily",
	"notveryeasiness",
	"notveryeasy",
	"notveryeasygoing",
	"notveryebullience",
	"notveryebullient",
	"notveryebulliently",
	"notveryeclectic",
	"notveryeconomical",
	"notveryecstasies",
	"notveryecstasy",
	"notveryecstatic",
	"notveryecstatically",
	"notveryedify",
	"notveryeducable",
	"notveryeducated",
	"notveryeducational",
	"notveryeffective",
	"notveryeffectiveness",
	"notveryeffectual",
	"notveryefficacious",
	"notveryefficiency",
	"notveryefficient",
	"notveryeffortless",
	"notveryeffortlessly",
	"notveryeffusion",
	"notveryeffusive",
	"notveryeffusively",
	"notveryeffusiveness",
	"notveryegalitarian",
	"notveryelan",
	"notveryelate",
	"notveryelated",
	"notveryelatedly",
	"notveryelation",
	"notveryelectrification",
	"notveryelectrify",
	"notveryelegance",
	"notveryelegant",
	"notveryelegantly",
	"notveryelevate",
	"notveryelevated",
	"notveryeligible",
	"notveryelite",
	"notveryeloquence",
	"notveryeloquent",
	"notveryeloquently",
	"notveryemancipate",
	"notveryembellish",
	"notveryembolden",
	"notveryembrace",
	"notveryeminence",
	"notveryeminent",
	"notveryempower",
	"notveryempowerment",
	"notveryenable",
	"notveryenchant",
	"notveryenchanted",
	"notveryenchanting",
	"notveryenchantingly",
	"notveryencourage",
	"notveryencouragement",
	"notveryencouraging",
	"notveryencouragingly",
	"notveryendear",
	"notveryendearing",
	"notveryendorse",
	"notveryendorsement",
	"notveryendorser",
	"notveryendurable",
	"notveryendure",
	"notveryenduring",
	"notveryenergetic",
	"notveryenergize",
	"notveryengaging",
	"notveryengrossing",
	"notveryenhance",
	"notveryenhanced",
	"notveryenhancement",
	"notveryenjoy",
	"notveryenjoyable",
	"notveryenjoyably",
	"notveryenjoyment",
	"notveryenlighten",
	"notveryenlightened",
	"notveryenlightenment",
	"notveryenliven",
	"notveryennoble",
	"notveryenrapt",
	"notveryenrapture",
	"notveryenraptured",
	"notveryenrich",
	"notveryenrichment",
	"notveryensure",
	"notveryenterprising",
	"notveryentertain",
	"notveryentertaining",
	"notveryenthral",
	"notveryenthrall",
	"notveryenthralled",
	"notveryenthuse",
	"notveryenthusiasm",
	"notveryenthusiast",
	"notveryenthusiastic",
	"notveryenthusiastically",
	"notveryentice",
	"notveryenticing",
	"notveryenticingly",
	"notveryentrance",
	"notveryentranced",
	"notveryentrancing",
	"notveryentreat",
	"notveryentreatingly",
	"notveryentrust",
	"notveryenviable",
	"notveryenviably",
	"notveryenvision",
	"notveryenvisions",
	"notveryepic",
	"notveryepitome",
	"notveryequality",
	"notveryequitable",
	"notveryerudite",
	"notveryessential",
	"notveryestablished",
	"notveryesteem",
	"notveryeternity",
	"notveryethical",
	"notveryeulogize",
	"notveryeuphoria",
	"notveryeuphoric",
	"notveryeuphorically",
	"notveryevenly",
	"notveryeventful",
	"notveryeverlasting",
	"notveryevident",
	"notveryevidently",
	"notveryevocative",
	"notveryexact",
	"notveryexalt",
	"notveryexaltation",
	"notveryexalted",
	"notveryexaltedly",
	"notveryexalting",
	"notveryexaltingly",
	"notveryexceed",
	"notveryexceeding",
	"notveryexceedingly",
	"notveryexcel",
	"notveryexcellence",
	"notveryexcellency",
	"notveryexcellent",
	"notveryexcellently",
	"notveryexceptional",
	"notveryexceptionally",
	"notveryexcite",
	"notveryexcited",
	"notveryexcitedly",
	"notveryexcitedness",
	"notveryexcitement",
	"notveryexciting",
	"notveryexcitingly",
	"notveryexclusive",
	"notveryexcusable",
	"notveryexcuse",
	"notveryexemplar",
	"notveryexemplary",
	"notveryexhaustive",
	"notveryexhaustively",
	"notveryexhilarate",
	"notveryexhilarating",
	"notveryexhilaratingly",
	"notveryexhilaration",
	"notveryexonerate",
	"notveryexpansive",
	"notveryexperienced",
	"notveryexpert",
	"notveryexpertly",
	"notveryexplicit",
	"notveryexplicitly",
	"notveryexpressive",
	"notveryexquisite",
	"notveryexquisitely",
	"notveryextol",
	"notveryextoll",
	"notveryextraordinarily",
	"notveryextraordinary",
	"notveryexuberance",
	"notveryexuberant",
	"notveryexuberantly",
	"notveryexult",
	"notveryexultant",
	"notveryexultation",
	"notveryexultingly",
	"notveryfabulous",
	"notveryfabulously",
	"notveryfacilitate",
	"notveryfair",
	"notveryfairly",
	"notveryfairness",
	"notveryfaith",
	"notveryfaithful",
	"notveryfaithfully",
	"notveryfaithfulness",
	"notveryfame",
	"notveryfamed",
	"notveryfamous",
	"notveryfamously",
	"notveryfancy",
	"notveryfanfare",
	"notveryfantastic",
	"notveryfantastically",
	"notveryfantasy",
	"notveryfarsighted",
	"notveryfascinate",
	"notveryfascinating",
	"notveryfascinatingly",
	"notveryfascination",
	"notveryfashionable",
	"notveryfashionably",
	"notveryfast-growing",
	"notveryfast-paced",
	"notveryfastest-growing",
	"notveryfathom",
	"notveryfavor",
	"notveryfavorable",
	"notveryfavored",
	"notveryfavorite",
	"notveryfavour",
	"notveryfawn",
	"notveryfearless",
	"notveryfearlessly",
	"notveryfeasible",
	"notveryfeasibly",
	"notveryfeat",
	"notveryfeatly",
	"notveryfeisty",
	"notveryfelicitate",
	"notveryfelicitous",
	"notveryfelicity",
	"notveryfertile",
	"notveryfervent",
	"notveryfervently",
	"notveryfervid",
	"notveryfervidly",
	"notveryfervor",
	"notveryfestive",
	"notveryfidelity",
	"notveryfiery",
	"notveryfine",
	"notveryfinely",
	"notveryfirst-class",
	"notveryfirst-rate",
	"notveryfit",
	"notveryfitting",
	"notveryflair",
	"notveryflame",
	"notveryflatter",
	"notveryflattering",
	"notveryflatteringly",
	"notveryflawless",
	"notveryflawlessly",
	"notveryflexible",
	"notveryflourish",
	"notveryflourishing",
	"notveryfluent",
	"notveryfocused",
	"notveryfond",
	"notveryfondly",
	"notveryfondness",
	"notveryfoolproof",
	"notveryforbearing",
	"notveryforemost",
	"notveryforesight",
	"notveryforgave",
	"notveryforgive",
	"notveryforgiven",
	"notveryforgiveness",
	"notveryforgiving",
	"notveryforgivingly",
	"notveryforthright",
	"notveryfortitude",
	"notveryfortuitous",
	"notveryfortuitously",
	"notveryfortunate",
	"notveryfortunately",
	"notveryfortune",
	"notveryfragrant",
	"notveryfrank",
	"notveryfree",
	"notveryfreedom",
	"notveryfreedoms",
	"notveryfresh",
	"notveryfriend",
	"notveryfriendliness",
	"notveryfriendly",
	"notveryfriends",
	"notveryfriendship",
	"notveryfrolic",
	"notveryfruitful",
	"notveryfulfillment",
	"notveryfull-fledged",
	"notveryfun",
	"notveryfunctional",
	"notveryfunny",
	"notverygaiety",
	"notverygaily",
	"notverygain",
	"notverygainful",
	"notverygainfully",
	"notverygallant",
	"notverygallantly",
	"notverygalore",
	"notverygem",
	"notverygems",
	"notverygenerosity",
	"notverygenerous",
	"notverygenerously",
	"notverygenial",
	"notverygenius",
	"notverygenteel",
	"notverygentle",
	"notverygenuine",
	"notverygermane",
	"notverygiddy",
	"notverygifted",
	"notveryglad",
	"notverygladden",
	"notverygladly",
	"notverygladness",
	"notveryglamorous",
	"notveryglee",
	"notverygleeful",
	"notverygleefully",
	"notveryglimmer",
	"notveryglimmering",
	"notveryglisten",
	"notveryglistening",
	"notveryglitter",
	"notverygloat",
	"notveryglorify",
	"notveryglorious",
	"notverygloriously",
	"notveryglory",
	"notveryglossy",
	"notveryglow",
	"notveryglowing",
	"notveryglowingly",
	"notverygo-ahead",
	"notverygod-given",
	"notverygodlike",
	"notverygodly",
	"notverygold",
	"notverygolden",
	"notverygood",
	"notverygoodhearted",
	"notverygoodly",
	"notverygoodness",
	"notverygoodwill",
	"notverygorgeous",
	"notverygorgeously",
	"notverygrace",
	"notverygraceful",
	"notverygracefully",
	"notverygracious",
	"notverygraciously",
	"notverygraciousness",
	"notverygrail",
	"notverygrand",
	"notverygrandeur",
	"notverygrateful",
	"notverygratefully",
	"notverygratification",
	"notverygratify",
	"notverygratifying",
	"notverygratifyingly",
	"notverygratitude",
	"notverygreat",
	"notverygreatest",
	"notverygreatness",
	"notverygreet",
	"notverygregarious",
	"notverygrin",
	"notverygrit",
	"notverygroove",
	"notverygroundbreaking",
	"notverygrounded",
	"notveryguarantee",
	"notveryguardian",
	"notveryguidance",
	"notveryguiltless",
	"notverygumption",
	"notverygush",
	"notverygusto",
	"notverygutsy",
	"notveryhail",
	"notveryhalcyon",
	"notveryhale",
	"notveryhallowed",
	"notveryhandily",
	"notveryhandsome",
	"notveryhandy",
	"notveryhanker",
	"notveryhappily",
	"notveryhappiness",
	"notveryhappy",
	"notveryhard-working",
	"notveryhardier",
	"notveryhardy",
	"notveryharmless",
	"notveryharmonious",
	"notveryharmoniously",
	"notveryharmonize",
	"notveryharmony",
	"notveryhaven",
	"notveryheadway",
	"notveryheady",
	"notveryheal",
	"notveryhealthful",
	"notveryhealthy",
	"notveryheart",
	"notveryhearten",
	"notveryheartening",
	"notveryheartfelt",
	"notveryheartily",
	"notveryheartwarming",
	"notveryheaven",
	"notveryheavenly",
	"notveryheedful",
	"notveryhelpful",
	"notveryherald",
	"notveryhero",
	"notveryheroic",
	"notveryheroically",
	"notveryheroine",
	"notveryheroize",
	"notveryheros",
	"notveryhigh-quality",
	"notveryhighlight",
	"notveryhilarious",
	"notveryhilariously",
	"notveryhilariousness",
	"notveryhilarity",
	"notveryhistoric",
	"notveryholy",
	"notveryhomage",
	"notveryhonest",
	"notveryhonestly",
	"notveryhonesty",
	"notveryhoneymoon",
	"notveryhonor",
	"notveryhonorable",
	"notveryhope",
	"notveryhopeful",
	"notveryhopefulness",
	"notveryhopes",
	"notveryhospitable",
	"notveryhot",
	"notveryhug",
	"notveryhumane",
	"notveryhumanists",
	"notveryhumanity",
	"notveryhumankind",
	"notveryhumble",
	"notveryhumility",
	"notveryhumor",
	"notveryhumorous",
	"notveryhumorously",
	"notveryhumour",
	"notveryhumourous",
	"notveryideal",
	"notveryidealism",
	"notveryidealist",
	"notveryidealize",
	"notveryideally",
	"notveryidol",
	"notveryidolize",
	"notveryidolized",
	"notveryidyllic",
	"notveryilluminate",
	"notveryilluminati",
	"notveryilluminating",
	"notveryillumine",
	"notveryillustrious",
	"notveryimaginative",
	"notveryimmaculate",
	"notveryimmaculately",
	"notveryimpartial",
	"notveryimpartiality",
	"notveryimpartially",
	"notveryimpassioned",
	"notveryimpeccable",
	"notveryimpeccably",
	"notveryimpel",
	"notveryimperial",
	"notveryimperturbable",
	"notveryimpervious",
	"notveryimpetus",
	"notveryimportance",
	"notveryimportant",
	"notveryimportantly",
	"notveryimpregnable",
	"notveryimpress",
	"notveryimpression",
	"notveryimpressions",
	"notveryimpressive",
	"notveryimpressively",
	"notveryimpressiveness",
	"notveryimprove",
	"notveryimproved",
	"notveryimprovement",
	"notveryimproving",
	"notveryimprovise",
	"notveryinalienable",
	"notveryincisive",
	"notveryincisively",
	"notveryincisiveness",
	"notveryinclination",
	"notveryinclinations",
	"notveryinclined",
	"notveryinclusive",
	"notveryincontestable",
	"notveryincontrovertible",
	"notveryincorruptible",
	"notveryincredible",
	"notveryincredibly",
	"notveryindebted",
	"notveryindefatigable",
	"notveryindelible",
	"notveryindelibly",
	"notveryindependence",
	"notveryindependent",
	"notveryindescribable",
	"notveryindescribably",
	"notveryindestructible",
	"notveryindispensability",
	"notveryindispensable",
	"notveryindisputable",
	"notveryindividuality",
	"notveryindomitable",
	"notveryindomitably",
	"notveryindubitable",
	"notveryindubitably",
	"notveryindulgence",
	"notveryindulgent",
	"notveryindustrious",
	"notveryinestimable",
	"notveryinestimably",
	"notveryinexpensive",
	"notveryinfallibility",
	"notveryinfallible",
	"notveryinfallibly",
	"notveryinfluential",
	"notveryinformative",
	"notveryingenious",
	"notveryingeniously",
	"notveryingenuity",
	"notveryingenuous",
	"notveryingenuously",
	"notveryingratiate",
	"notveryingratiating",
	"notveryingratiatingly",
	"notveryinnocence",
	"notveryinnocent",
	"notveryinnocently",
	"notveryinnocuous",
	"notveryinnovation",
	"notveryinnovative",
	"notveryinoffensive",
	"notveryinquisitive",
	"notveryinsight",
	"notveryinsightful",
	"notveryinsightfully",
	"notveryinsist",
	"notveryinsistence",
	"notveryinsistent",
	"notveryinsistently",
	"notveryinspiration",
	"notveryinspirational",
	"notveryinspire",
	"notveryinspired",
	"notveryinspiring",
	"notveryinstructive",
	"notveryinstrumental",
	"notveryintact",
	"notveryintegral",
	"notveryintegrity",
	"notveryintelligence",
	"notveryintelligent",
	"notveryintelligible",
	"notveryintercede",
	"notveryinterest",
	"notveryinterested",
	"notveryinteresting",
	"notveryinterests",
	"notveryintimacy",
	"notveryintimate",
	"notveryintricate",
	"notveryintrigue",
	"notveryintriguing",
	"notveryintriguingly",
	"notveryintuitive",
	"notveryinvaluable",
	"notveryinvaluablely",
	"notveryinventive",
	"notveryinvigorate",
	"notveryinvigorating",
	"notveryinvincibility",
	"notveryinvincible",
	"notveryinviolable",
	"notveryinviolate",
	"notveryinvulnerable",
	"notveryirrefutable",
	"notveryirrefutably",
	"notveryirreproachable",
	"notveryirresistible",
	"notveryirresistibly",
	"notveryjauntily",
	"notveryjaunty",
	"notveryjest",
	"notveryjoke",
	"notveryjollify",
	"notveryjolly",
	"notveryjovial",
	"notveryjoy",
	"notveryjoyful",
	"notveryjoyfully",
	"notveryjoyous",
	"notveryjoyously",
	"notveryjubilant",
	"notveryjubilantly",
	"notveryjubilate",
	"notveryjubilation",
	"notveryjudicious",
	"notveryjust",
	"notveryjustice",
	"notveryjustifiable",
	"notveryjustifiably",
	"notveryjustification",
	"notveryjustify",
	"notveryjustly",
	"notverykeen",
	"notverykeenly",
	"notverykeenness",
	"notverykemp",
	"notverykid",
	"notverykind",
	"notverykindliness",
	"notverykindly",
	"notverykindness",
	"notverykingmaker",
	"notverykiss",
	"notverykissable",
	"notveryknowledgeable",
	"notverylarge",
	"notverylark",
	"notverylaud",
	"notverylaudable",
	"notverylaudably",
	"notverylavish",
	"notverylavishly",
	"notverylaw-abiding",
	"notverylawful",
	"notverylawfully",
	"notveryleading",
	"notverylean",
	"notverylearned",
	"notverylearning",
	"notverylegendary",
	"notverylegitimacy",
	"notverylegitimate",
	"notverylegitimately",
	"notverylenient",
	"notveryleniently",
	"notveryless-expensive",
	"notveryleverage",
	"notverylevity",
	"notveryliberal",
	"notveryliberalism",
	"notveryliberally",
	"notveryliberate",
	"notveryliberation",
	"notveryliberty",
	"notverylifeblood",
	"notverylifelong",
	"notverylight",
	"notverylight-hearted",
	"notverylighten",
	"notverylikable",
	"notverylike",
	"notverylikeable",
	"notveryliking",
	"notverylionhearted",
	"notveryliterate",
	"notverylive",
	"notverylively",
	"notverylofty",
	"notverylogical",
	"notverylooking",
	"notverylovable",
	"notverylovably",
	"notverylove",
	"notverylovee",
	"notveryloveliness",
	"notverylovely",
	"notverylover",
	"notverylow-cost",
	"notverylow-risk",
	"notverylower-priced",
	"notveryloyal",
	"notveryloyalty",
	"notverylucid",
	"notverylucidly",
	"notveryluck",
	"notveryluckier",
	"notveryluckiest",
	"notveryluckily",
	"notveryluckiness",
	"notverylucky",
	"notverylucrative",
	"notveryluminous",
	"notverylush",
	"notverylust",
	"notveryluster",
	"notverylustrous",
	"notveryluxuriant",
	"notveryluxuriate",
	"notveryluxurious",
	"notveryluxuriously",
	"notveryluxury",
	"notverylyrical",
	"notverymagic",
	"notverymagical",
	"notverymagnanimous",
	"notverymagnanimously",
	"notverymagnetic",
	"notverymagnificence",
	"notverymagnificent",
	"notverymagnificently",
	"notverymagnify",
	"notverymajestic",
	"notverymajesty",
	"notverymanageable",
	"notverymanifest",
	"notverymanly",
	"notverymannered",
	"notverymannerly",
	"notverymarvel",
	"notverymarvellous",
	"notverymarvelous",
	"notverymarvelously",
	"notverymarvelousness",
	"notverymarvels",
	"notverymaster",
	"notverymasterful",
	"notverymasterfully",
	"notverymasterly",
	"notverymasterpiece",
	"notverymasterpieces",
	"notverymasters",
	"notverymastery",
	"notverymatchless",
	"notverymature",
	"notverymaturely",
	"notverymaturity",
	"notverymaximize",
	"notverymeaningful",
	"notverymeek",
	"notverymellow",
	"notverymemorable",
	"notverymemorialize",
	"notverymend",
	"notverymentor",
	"notverymerciful",
	"notverymercifully",
	"notverymercy",
	"notverymerit",
	"notverymeritorious",
	"notverymerrily",
	"notverymerriment",
	"notverymerriness",
	"notverymerry",
	"notverymesmerize",
	"notverymesmerizing",
	"notverymesmerizingly",
	"notverymeticulous",
	"notverymeticulously",
	"notverymightily",
	"notverymighty",
	"notverymild",
	"notverymindful",
	"notveryminister",
	"notverymiracle",
	"notverymiracles",
	"notverymiraculous",
	"notverymiraculously",
	"notverymiraculousness",
	"notverymirth",
	"notverymoderate",
	"notverymoderation",
	"notverymodern",
	"notverymodest",
	"notverymodesty",
	"notverymollify",
	"notverymomentous",
	"notverymonumental",
	"notverymonumentally",
	"notverymoral",
	"notverymorality",
	"notverymoralize",
	"notverymotivate",
	"notverymotivated",
	"notverymotivation",
	"notverymoving",
	"notverymyriad",
	"notverynatural",
	"notverynaturally",
	"notverynavigable",
	"notveryneat",
	"notveryneatly",
	"notverynecessarily",
	"notveryneighborly",
	"notveryneutralize",
	"notverynice",
	"notverynicely",
	"notverynifty",
	"notverynimble",
	"notverynoble",
	"notverynobly",
	"notverynon-violence",
	"notverynon-violent",
	"notverynormal",
	"notverynotable",
	"notverynotably",
	"notverynoteworthy",
	"notverynoticeable",
	"notverynourish",
	"notverynourishing",
	"notverynourishment",
	"notverynurture",
	"notverynurturing",
	"notveryoasis",
	"notveryobedience",
	"notveryobedient",
	"notveryobediently",
	"notveryobey",
	"notveryobjective",
	"notveryobjectively",
	"notveryobliged",
	"notveryobviate",
	"notveryoffbeat",
	"notveryoffset",
	"notveryonward",
	"notveryopen",
	"notveryopenhanded",
	"notveryopenly",
	"notveryopenness",
	"notveryopportune",
	"notveryopportunity",
	"notveryoptimal",
	"notveryoptimism",
	"notveryoptimistic",
	"notveryopulent",
	"notveryorderly",
	"notveryoriginal",
	"notveryoriginality",
	"notveryoutdo",
	"notveryoutgoing",
	"notveryoutshine",
	"notveryoutsmart",
	"notveryoutstanding",
	"notveryoutstandingly",
	"notveryoutstrip",
	"notveryoutwit",
	"notveryovation",
	"notveryoverachiever",
	"notveryoverjoyed",
	"notveryoverture",
	"notverypacifist",
	"notverypacifists",
	"notverypainless",
	"notverypainlessly",
	"notverypainstaking",
	"notverypainstakingly",
	"notverypalatable",
	"notverypalatial",
	"notverypalliate",
	"notverypamper",
	"notveryparadise",
	"notveryparamount",
	"notverypardon",
	"notverypassion",
	"notverypassionate",
	"notverypassionately",
	"notverypatience",
	"notverypatient",
	"notverypatiently",
	"notverypatriot",
	"notverypatriotic",
	"notverypeace",
	"notverypeaceable",
	"notverypeaceful",
	"notverypeacefully",
	"notverypeacekeepers",
	"notverypeerless",
	"notverypenetrating",
	"notverypenitent",
	"notveryperceptive",
	"notveryperfect",
	"notveryperfection",
	"notveryperfectly",
	"notverypermissible",
	"notveryperseverance",
	"notverypersevere",
	"notverypersistent",
	"notverypersonable",
	"notverypersonages",
	"notverypersonality",
	"notveryperspicuous",
	"notveryperspicuously",
	"notverypersuade",
	"notverypersuasive",
	"notverypersuasively",
	"notverypertinent",
	"notveryphenomenal",
	"notveryphenomenally",
	"notveryphilanthropic",
	"notveryphilosophical",
	"notverypicturesque",
	"notverypiety",
	"notverypillar",
	"notverypinnacle",
	"notverypious",
	"notverypithy",
	"notveryplacate",
	"notveryplacid",
	"notveryplainly",
	"notveryplausibility",
	"notveryplausible",
	"notveryplayful",
	"notveryplayfully",
	"notverypleasant",
	"notverypleasantly",
	"notverypleased",
	"notverypleasing",
	"notverypleasingly",
	"notverypleasurable",
	"notverypleasurably",
	"notverypleasure",
	"notverypledge",
	"notverypledges",
	"notveryplentiful",
	"notveryplenty",
	"notveryplush",
	"notverypoetic",
	"notverypoeticize",
	"notverypoignant",
	"notverypoise",
	"notverypoised",
	"notverypolished",
	"notverypolite",
	"notverypoliteness",
	"notverypopular",
	"notverypopularity",
	"notveryportable",
	"notveryposh",
	"notverypositive",
	"notverypositively",
	"notverypositiveness",
	"notveryposterity",
	"notverypotent",
	"notverypotential",
	"notverypowerful",
	"notverypowerfully",
	"notverypracticable",
	"notverypractical",
	"notverypragmatic",
	"notverypraise",
	"notverypraiseworthy",
	"notverypraising",
	"notverypre-eminent",
	"notverypreach",
	"notverypreaching",
	"notveryprecaution",
	"notveryprecautions",
	"notveryprecedent",
	"notveryprecious",
	"notveryprecise",
	"notveryprecisely",
	"notveryprecision",
	"notverypreeminent",
	"notverypreemptive",
	"notveryprefer",
	"notverypreferable",
	"notverypreferably",
	"notverypreference",
	"notverypreferences",
	"notverypremier",
	"notverypremium",
	"notveryprepared",
	"notverypreponderance",
	"notverypress",
	"notveryprestige",
	"notveryprestigious",
	"notveryprettily",
	"notverypretty",
	"notverypriceless",
	"notverypride",
	"notveryprinciple",
	"notveryprincipled",
	"notveryprivilege",
	"notveryprivileged",
	"notveryprize",
	"notverypro",
	"notverypro-american",
	"notverypro-beijing",
	"notverypro-cuba",
	"notverypro-peace",
	"notveryproactive",
	"notveryprodigious",
	"notveryprodigiously",
	"notveryprodigy",
	"notveryproductive",
	"notveryprofess",
	"notveryprofessional",
	"notveryproficient",
	"notveryproficiently",
	"notveryprofit",
	"notveryprofitable",
	"notveryprofound",
	"notveryprofoundly",
	"notveryprofuse",
	"notveryprofusely",
	"notveryprofusion",
	"notveryprogress",
	"notveryprogressive",
	"notveryprolific",
	"notveryprominence",
	"notveryprominent",
	"notverypromise",
	"notverypromising",
	"notverypromoter",
	"notveryprompt",
	"notverypromptly",
	"notveryproper",
	"notveryproperly",
	"notverypropitious",
	"notverypropitiously",
	"notveryprospect",
	"notveryprospects",
	"notveryprosper",
	"notveryprosperity",
	"notveryprosperous",
	"notveryprotect",
	"notveryprotection",
	"notveryprotective",
	"notveryprotector",
	"notveryproud",
	"notveryprovidence",
	"notveryprovident",
	"notveryprowess",
	"notveryprudence",
	"notveryprudent",
	"notveryprudently",
	"notverypunctual",
	"notverypundits",
	"notverypure",
	"notverypurification",
	"notverypurify",
	"notverypurity",
	"notverypurposeful",
	"notveryquaint",
	"notveryqualified",
	"notveryqualify",
	"notveryquasi-ally",
	"notveryquench",
	"notveryquicken",
	"notveryradiance",
	"notveryradiant",
	"notveryrally",
	"notveryrapport",
	"notveryrapprochement",
	"notveryrapt",
	"notveryrapture",
	"notveryraptureous",
	"notveryraptureously",
	"notveryrapturous",
	"notveryrapturously",
	"notveryrational",
	"notveryrationality",
	"notveryrave",
	"notveryre-conquest",
	"notveryreadily",
	"notveryready",
	"notveryreaffirm",
	"notveryreaffirmation",
	"notveryreal",
	"notveryrealist",
	"notveryrealistic",
	"notveryrealistically",
	"notveryreason",
	"notveryreasonable",
	"notveryreasonably",
	"notveryreasoned",
	"notveryreassurance",
	"notveryreassure",
	"notveryreceptive",
	"notveryreclaim",
	"notveryrecognition",
	"notveryrecommend",
	"notveryrecommendation",
	"notveryrecommendations",
	"notveryrecommended",
	"notveryrecompense",
	"notveryreconcile",
	"notveryreconciliation",
	"notveryrecord-setting",
	"notveryrecover",
	"notveryrectification",
	"notveryrectify",
	"notveryrectifying",
	"notveryredeem",
	"notveryredeeming",
	"notveryredemption",
	"notveryreestablish",
	"notveryrefine",
	"notveryrefined",
	"notveryrefinement",
	"notveryreflective",
	"notveryreform",
	"notveryrefresh",
	"notveryrefreshing",
	"notveryrefuge",
	"notveryregal",
	"notveryregally",
	"notveryregard",
	"notveryrehabilitate",
	"notveryrehabilitation",
	"notveryreinforce",
	"notveryreinforcement",
	"notveryrejoice",
	"notveryrejoicing",
	"notveryrejoicingly",
	"notveryrelax",
	"notveryrelaxed",
	"notveryrelent",
	"notveryrelevance",
	"notveryrelevant",
	"notveryreliability",
	"notveryreliable",
	"notveryreliably",
	"notveryrelief",
	"notveryrelieve",
	"notveryrelish",
	"notveryremarkable",
	"notveryremarkably",
	"notveryremedy",
	"notveryreminiscent",
	"notveryremunerate",
	"notveryrenaissance",
	"notveryrenewal",
	"notveryrenovate",
	"notveryrenovation",
	"notveryrenown",
	"notveryrenowned",
	"notveryrepair",
	"notveryreparation",
	"notveryrepay",
	"notveryrepent",
	"notveryrepentance",
	"notveryreposed",
	"notveryreputable",
	"notveryrescue",
	"notveryresilient",
	"notveryresolute",
	"notveryresolve",
	"notveryresolved",
	"notveryresound",
	"notveryresounding",
	"notveryresourceful",
	"notveryresourcefulness",
	"notveryrespect",
	"notveryrespectable",
	"notveryrespectful",
	"notveryrespectfully",
	"notveryrespite",
	"notveryresplendent",
	"notveryresponsibility",
	"notveryresponsible",
	"notveryresponsibly",
	"notveryresponsive",
	"notveryrestful",
	"notveryrestoration",
	"notveryrestore",
	"notveryrestrained",
	"notveryrestraint",
	"notveryresurgent",
	"notveryreunite",
	"notveryrevel",
	"notveryrevelation",
	"notveryrevere",
	"notveryreverence",
	"notveryreverent",
	"notveryreverently",
	"notveryrevitalize",
	"notveryrevival",
	"notveryrevive",
	"notveryrevolution",
	"notveryreward",
	"notveryrewarding",
	"notveryrewardingly",
	"notveryrich",
	"notveryriches",
	"notveryrichly",
	"notveryrichness",
	"notveryright",
	"notveryrighten",
	"notveryrighteous",
	"notveryrighteously",
	"notveryrighteousness",
	"notveryrightful",
	"notveryrightfully",
	"notveryrightly",
	"notveryrightness",
	"notveryrights",
	"notveryripe",
	"notveryrisk-free",
	"notveryrobust",
	"notveryromantic",
	"notveryromantically",
	"notveryromanticize",
	"notveryrosy",
	"notveryrousing",
	"notverysacred",
	"notverysafe",
	"notverysafeguard",
	"notverysagacious",
	"notverysagacity",
	"notverysage",
	"notverysagely",
	"notverysaint",
	"notverysaintliness",
	"notverysaintly",
	"notverysalable",
	"notverysalivate",
	"notverysalutary",
	"notverysalute",
	"notverysalvation",
	"notverysanctify",
	"notverysanction",
	"notverysanctity",
	"notverysanctuary",
	"notverysane",
	"notverysanguine",
	"notverysanity",
	"notverysatisfaction",
	"notverysatisfactorily",
	"notverysatisfactory",
	"notverysatisfied",
	"notverysatisfy",
	"notverysatisfying",
	"notverysavor",
	"notverysavvy",
	"notveryscenic",
	"notveryscholarly",
	"notveryscruples",
	"notveryscrupulous",
	"notveryscrupulously",
	"notveryseamless",
	"notveryseasoned",
	"notverysecure",
	"notverysecurely",
	"notverysecurity",
	"notveryseductive",
	"notveryseemly",
	"notveryselective",
	"notveryself-determination",
	"notveryself-respect",
	"notveryself-satisfaction",
	"notveryself-sufficiency",
	"notveryself-sufficient",
	"notverysemblance",
	"notverysensation",
	"notverysensational",
	"notverysensationally",
	"notverysensations",
	"notverysense",
	"notverysensible",
	"notverysensibly",
	"notverysensitively",
	"notverysensitivity",
	"notverysensual",
	"notverysentiment",
	"notverysentimental",
	"notverysentimentality",
	"notverysentimentally",
	"notverysentiments",
	"notveryserene",
	"notveryserenity",
	"notverysettle",
	"notverysexy",
	"notverysharp",
	"notveryshelter",
	"notveryshield",
	"notveryshimmer",
	"notveryshimmering",
	"notveryshimmeringly",
	"notveryshine",
	"notveryshiny",
	"notveryshrewd",
	"notveryshrewdly",
	"notveryshrewdness",
	"notverysignificance",
	"notverysignificant",
	"notverysignify",
	"notverysimple",
	"notverysimplicity",
	"notverysimplified",
	"notverysimplify",
	"notverysincere",
	"notverysincerely",
	"notverysincerity",
	"notveryskill",
	"notveryskilled",
	"notveryskillful",
	"notveryskillfully",
	"notverysleek",
	"notveryslender",
	"notveryslim",
	"notverysmart",
	"notverysmarter",
	"notverysmartest",
	"notverysmartly",
	"notverysmile",
	"notverysmiling",
	"notverysmilingly",
	"notverysmitten",
	"notverysmooth",
	"notverysociable",
	"notverysoft-spoken",
	"notverysoften",
	"notverysolace",
	"notverysolicitous",
	"notverysolicitously",
	"notverysolicitude",
	"notverysolid",
	"notverysolidarity",
	"notverysoothe",
	"notverysoothingly",
	"notverysophisticated",
	"notverysoulful",
	"notverysound",
	"notverysoundness",
	"notveryspacious",
	"notveryspare",
	"notverysparing",
	"notverysparingly",
	"notverysparkle",
	"notverysparkling",
	"notveryspecial",
	"notveryspectacular",
	"notveryspectacularly",
	"notveryspeedy",
	"notveryspellbind",
	"notveryspellbinding",
	"notveryspellbindingly",
	"notveryspellbound",
	"notveryspirit",
	"notveryspirited",
	"notveryspiritual",
	"notverysplendid",
	"notverysplendidly",
	"notverysplendor",
	"notveryspontaneous",
	"notveryspotless",
	"notverysprightly",
	"notverysprite",
	"notveryspry",
	"notveryspur",
	"notverysquarely",
	"notverystability",
	"notverystabilize",
	"notverystable",
	"notverystainless",
	"notverystand",
	"notverystar",
	"notverystars",
	"notverystately",
	"notverystatuesque",
	"notverystaunch",
	"notverystaunchly",
	"notverystaunchness",
	"notverysteadfast",
	"notverysteadfastly",
	"notverysteadfastness",
	"notverysteadiness",
	"notverysteady",
	"notverystellar",
	"notverystellarly",
	"notverystimulate",
	"notverystimulating",
	"notverystimulative",
	"notverystirring",
	"notverystirringly",
	"notverystood",
	"notverystraight",
	"notverystraightforward",
	"notverystreamlined",
	"notverystride",
	"notverystrides",
	"notverystriking",
	"notverystrikingly",
	"notverystriving",
	"notverystrong",
	"notverystudious",
	"notverystudiously",
	"notverystunned",
	"notverystunning",
	"notverystunningly",
	"notverystupendous",
	"notverystupendously",
	"notverysturdy",
	"notverystylish",
	"notverystylishly",
	"notverysuave",
	"notverysublime",
	"notverysubscribe",
	"notverysubstantial",
	"notverysubstantially",
	"notverysubstantive",
	"notverysubtle",
	"notverysucceed",
	"notverysuccess",
	"notverysuccessful",
	"notverysuccessfully",
	"notverysuffice",
	"notverysufficient",
	"notverysufficiently",
	"notverysuggest",
	"notverysuggestions",
	"notverysuit",
	"notverysuitable",
	"notverysumptuous",
	"notverysumptuously",
	"notverysumptuousness",
	"notverysunny",
	"notverysuper",
	"notverysuperb",
	"notverysuperbly",
	"notverysuperior",
	"notverysuperlative",
	"notverysupport",
	"notverysupporter",
	"notverysupportive",
	"notverysupreme",
	"notverysupremely",
	"notverysupurb",
	"notverysupurbly",
	"notverysurely",
	"notverysurge",
	"notverysurging",
	"notverysurmise",
	"notverysurmount",
	"notverysurpass",
	"notverysurvival",
	"notverysurvive",
	"notverysurvivor",
	"notverysustainability",
	"notverysustainable",
	"notverysustained",
	"notverysweeping",
	"notverysweet",
	"notverysweeten",
	"notverysweetheart",
	"notverysweetly",
	"notverysweetness",
	"notveryswell",
	"notveryswift",
	"notveryswiftness",
	"notverysworn",
	"notverysympathetic",
	"notverysystematic",
	"notverytact",
	"notverytalent",
	"notverytalented",
	"notverytantalize",
	"notverytantalizing",
	"notverytantalizingly",
	"notverytaste",
	"notverytemperance",
	"notverytemperate",
	"notverytempt",
	"notverytempting",
	"notverytemptingly",
	"notverytenacious",
	"notverytenaciously",
	"notverytenacity",
	"notverytender",
	"notverytenderly",
	"notverytenderness",
	"notveryterrific",
	"notveryterrifically",
	"notveryterrified",
	"notveryterrify",
	"notveryterrifying",
	"notveryterrifyingly",
	"notverythankful",
	"notverythankfully",
	"notverythanks",
	"notverythinkable",
	"notverythorough",
	"notverythoughtful",
	"notverythoughtfully",
	"notverythoughtfulness",
	"notverythrift",
	"notverythrifty",
	"notverythrill",
	"notverythrilling",
	"notverythrillingly",
	"notverythrills",
	"notverythrive",
	"notverythriving",
	"notverytickle",
	"notverytidy",
	"notverytime-honored",
	"notverytimely",
	"notverytingle",
	"notverytitillate",
	"notverytitillating",
	"notverytitillatingly",
	"notverytoast",
	"notverytogetherness",
	"notverytolerable",
	"notverytolerably",
	"notverytolerance",
	"notverytolerant",
	"notverytolerantly",
	"notverytolerate",
	"notverytoleration",
	"notverytop",
	"notverytorrid",
	"notverytorridly",
	"notverytough",
	"notverytradition",
	"notverytraditional",
	"notverytranquil",
	"notverytranquility",
	"notverytreasure",
	"notverytreat",
	"notverytremendous",
	"notverytremendously",
	"notverytrendy",
	"notverytrepidation",
	"notverytribute",
	"notverytrim",
	"notverytriumph",
	"notverytriumphal",
	"notverytriumphant",
	"notverytriumphantly",
	"notverytruculent",
	"notverytruculently",
	"notverytrue",
	"notverytrump",
	"notverytrumpet",
	"notverytrust",
	"notverytrusting",
	"notverytrustingly",
	"notverytrustworthiness",
	"notverytrustworthy",
	"notverytruth",
	"notverytruthful",
	"notverytruthfully",
	"notverytruthfulness",
	"notverytwinkly",
	"notveryultimate",
	"notveryultimately",
	"notveryultra",
	"notveryunabashed",
	"notveryunabashedly",
	"notveryunanimous",
	"notveryunassailable",
	"notveryunbiased",
	"notveryunbosom",
	"notveryunbound",
	"notveryunbroken",
	"notveryuncommon",
	"notveryuncommonly",
	"notveryunconcerned",
	"notveryunconditional",
	"notveryunconventional",
	"notveryundaunted",
	"notveryunderstand",
	"notveryunderstandable",
	"notveryunderstanding",
	"notveryunderstate",
	"notveryunderstated",
	"notveryunderstatedly",
	"notveryunderstood",
	"notveryundisputable",
	"notveryundisputably",
	"notveryundisputed",
	"notveryundoubted",
	"notveryundoubtedly",
	"notveryunencumbered",
	"notveryunequivocal",
	"notveryunequivocally",
	"notveryunfazed",
	"notveryunfettered",
	"notveryunforgettable",
	"notveryuniform",
	"notveryuniformly",
	"notveryunique",
	"notveryunity",
	"notveryuniversal",
	"notveryunlimited",
	"notveryunparalleled",
	"notveryunpretentious",
	"notveryunquestionable",
	"notveryunquestionably",
	"notveryunrestricted",
	"notveryunscathed",
	"notveryunselfish",
	"notveryuntouched",
	"notveryuntrained",
	"notveryupbeat",
	"notveryupfront",
	"notveryupgrade",
	"notveryupheld",
	"notveryuphold",
	"notveryuplift",
	"notveryuplifting",
	"notveryupliftingly",
	"notveryupliftment",
	"notveryupright",
	"notveryupscale",
	"notveryupside",
	"notveryupward",
	"notveryurge",
	"notveryusable",
	"notveryuseful",
	"notveryusefulness",
	"notveryutilitarian",
	"notveryutmost",
	"notveryuttermost",
	"notveryvaliant",
	"notveryvaliantly",
	"notveryvalid",
	"notveryvalidity",
	"notveryvalor",
	"notveryvaluable",
	"notveryvalues",
	"notveryvanquish",
	"notveryvast",
	"notveryvastly",
	"notveryvastness",
	"notveryvenerable",
	"notveryvenerably",
	"notveryvenerate",
	"notveryverifiable",
	"notveryveritable",
	"notveryversatile",
	"notveryversatility",
	"notveryviability",
	"notveryviable",
	"notveryvibrant",
	"notveryvibrantly",
	"notveryvictorious",
	"notveryvictory",
	"notveryvigilance",
	"notveryvigilant",
	"notveryvigorous",
	"notveryvigorously",
	"notveryvindicate",
	"notveryvintage",
	"notveryvirtue",
	"notveryvirtuous",
	"notveryvirtuously",
	"notveryvisionary",
	"notveryvital",
	"notveryvitality",
	"notveryvivacious",
	"notveryvivid",
	"notveryvoluntarily",
	"notveryvoluntary",
	"notveryvouch",
	"notveryvouchsafe",
	"notveryvow",
	"notveryvulnerable",
	"notverywarm",
	"notverywarmhearted",
	"notverywarmly",
	"notverywarmth",
	"notverywealthy",
	"notverywelfare",
	"notverywell-being",
	"notverywell-connected",
	"notverywell-educated",
	"notverywell-established",
	"notverywell-informed",
	"notverywell-intentioned",
	"notverywell-managed",
	"notverywell-positioned",
	"notverywell-publicized",
	"notverywell-received",
	"notverywell-regarded",
	"notverywell-run",
	"notverywell-wishers",
	"notverywellbeing",
	"notverywhimsical",
	"notverywhite",
	"notverywholeheartedly",
	"notverywholesome",
	"notverywide",
	"notverywide-open",
	"notverywide-ranging",
	"notverywillful",
	"notverywillfully",
	"notverywilling",
	"notverywillingness",
	"notverywink",
	"notverywinnable",
	"notverywinners",
	"notverywinsome",
	"notverywisdom",
	"notverywise",
	"notverywisely",
	"notverywishes",
	"notverywishing",
	"notverywitty",
	"notverywonderful",
	"notverywonderfully",
	"notverywonderous",
	"notverywonderously",
	"notverywondrous",
	"notverywoo",
	"notveryworkable",
	"notveryworld-famous",
	"notveryworldly",
	"notveryworship",
	"notveryworth",
	"notveryworth-while",
	"notveryworthiness",
	"notveryworthwhile",
	"notveryworthy",
	"notverywow",
	"notverywry",
	"notveryyearn",
	"notveryyearning",
	"notveryyearningly",
	"notveryyep",
	"notveryyouthful",
	"notveryzeal",
	"notveryzenith",
	"notveryzest",
	"notviability",
	"notviable",
	"notvibrant",
	"notvibrantly",
	"notvictorious",
	"notvictory",
	"notvigilance",
	"notvigilant",
	"notvigorous",
	"notvigorously",
	"notvindicate",
	"notvintage",
	"notvirtue",
	"notvirtuous",
	"notvirtuously",
	"notvisionary",
	"notvital",
	"notvitality",
	"notvivacious",
	"notvivid",
	"notvoluntarily",
	"notvoluntary",
	"notvouch",
	"notvouchsafe",
	"notvow",
	"notvulnerable",
	"notwarm",
	"notwarmhearted",
	"notwarmly",
	"notwarmth",
	"notwealthy",
	"notwelfare",
	"notwell-being",
	"notwell-connected",
	"notwell-educated",
	"notwell-established",
	"notwell-informed",
	"notwell-intentioned",
	"notwell-managed",
	"notwell-positioned",
	"notwell-publicized",
	"notwell-received",
	"notwell-regarded",
	"notwell-run",
	"notwell-wishers",
	"notwellbeing",
	"notwhimsical",
	"notwhite",
	"notwholeheartedly",
	"notwholesome",
	"notwide",
	"notwide-open",
	"notwide-ranging",
	"notwillful",
	"notwillfully",
	"notwilling",
	"notwillingness",
	"notwink",
	"notwinnable",
	"notwinners",
	"notwinsome",
	"notwisdom",
	"notwise",
	"notwisely",
	"notwishes",
	"notwishing",
	"notwitty",
	"notwonderful",
	"notwonderfully",
	"notwonderous",
	"notwonderously",
	"notwondrous",
	"notwoo",
	"notworkable",
	"notworld-famous",
	"notworldly",
	"notworship",
	"notworth",
	"notworth-while",
	"notworthiness",
	"notworthwhile",
	"notworthy",
	"notwow",
	"notwry",
	"notyearn",
	"notyearning",
	"notyearningly",
	"notyep",
	"notyouthful",
	"notzeal",
	"notzenith",
	"notzest",
	"nuisance",
	"numb",
	"nuts",
	"nutty",
	"obese",
	"object",
	"objectified",
	"objection",
	"objectionable",
	"objections",
	"obligated",
	"oblique",
	"obliterate",
	"obliterated",
	"oblivious",
	"obnoxious",
	"obnoxiously",
	"obscene",
	"obscenely",
	"obscenity",
	"obscure",
	"obscurity",
	"obsess",
	"obsessed",
	"obsession",
	"obsessions",
	"obsessive",
	"obsessively",
	"obsessiveness",
	"obsolete",
	"obstacle",
	"obstinate",
	"obstinately",
	"obstruct",
	"obstructed",
	"obstruction",
	"obtrusive",
	"obtuse",
	"odd",
	"odder",
	"oddest",
	"oddities",
	"oddity",
	"oddly",
	"offence",
	"offend",
	"offended",
	"offending",
	"offenses",
	"offensive",
	"offensively",
	"offensiveness",
	"officious",
	"ominous",
	"ominously",
	"omission",
	"omit",
	"one-side",
	"one-sided",
	"onerous",
	"onerously",
	"onslaught",
	"opinionated",
	"opponent",
	"opportunistic",
	"oppose",
	"opposed",
	"opposition",
	"oppositions",
	"oppress",
	"oppressed",
	"oppression",
	"oppressive",
	"oppressively",
	"oppressiveness",
	"oppressors",
	"ordeal",
	"orphan",
	"ostracize",
	"outbreak",
	"outburst",
	"outbursts",
	"outcast",
	"outcry",
	"outdated",
	"outlaw",
	"outmoded",
	"outrage",
	"outraged",
	"outrageous",
	"outrageously",
	"outrageousness",
	"outrages",
	"outsider",
	"over-acted",
	"over-valuation",
	"overact",
	"overacted",
	"overawe",
	"overbalance",
	"overbalanced",
	"overbearing",
	"overbearingly",
	"overblown",
	"overcome",
	"overdo",
	"overdone",
	"overdue",
	"overemphasize",
	"overkill",
	"overlook",
	"overplay",
	"overpower",
	"overreach",
	"overrun",
	"overshadow",
	"oversight",
	"oversimplification",
	"oversimplified",
	"oversimplify",
	"oversized",
	"overstate",
	"overstatement",
	"overstatements",
	"overtaxed",
	"overthrow",
	"overturn",
	"overwhelm",
	"overwhelmed",
	"overwhelming",
	"overwhelmingly",
	"overworked",
	"overzealous",
	"overzealously",
	"pain",
	"painful",
	"painfully",
	"pains",
	"pale",
	"paltry",
	"pan",
	"pandemonium",
	"panic",
	"panicky",
	"paradoxical",
	"paradoxically",
	"paralize",
	"paralyzed",
	"paranoia",
	"paranoid",
	"parasite",
	"pariah",
	"parody",
	"partiality",
	"partisan",
	"partisans",
	"passe",
	"passive",
	"passiveness",
	"pathetic",
	"pathetically",
	"patronize",
	"paucity",
	"pauper",
	"paupers",
	"payback",
	"peculiar",
	"peculiarly",
	"pedantic",
	"pedestrian",
	"peeve",
	"peeved",
	"peevish",
	"peevishly",
	"penalize",
	"penalty",
	"perfidious",
	"perfidity",
	"perfunctory",
	"peril",
	"perilous",
	"perilously",
	"peripheral",
	"perish",
	"pernicious",
	"perplex",
	"perplexed",
	"perplexing",
	"perplexity",
	"persecute",
	"persecution",
	"pertinacious",
	"pertinaciously",
	"pertinacity",
	"perturb",
	"perturbed",
	"perverse",
	"perversely",
	"perversion",
	"perversity",
	"pervert",
	"perverted",
	"pessimism",
	"pessimistic",
	"pessimistically",
	"pest",
	"pestilent",
	"petrified",
	"petrify",
	"pettifog",
	"petty",
	"phobia",
	"phobic",
	"phony",
	"picky",
	"pillage",
	"pillory",
	"pinch",
	"pine",
	"pique",
	"pissed",
	"pitiable",
	"pitiful",
	"pitifully",
	"pitiless",
	"pitilessly",
	"pittance",
	"pity",
	"plagiarize",
	"plague",
	"plain",
	"plaything",
	"plea",
	"pleas",
	"plebeian",
	"plight",
	"plot",
	"plotters",
	"ploy",
	"plunder",
	"plunderer",
	"pointless",
	"pointlessly",
	"poison",
	"poisonous",
	"poisonously",
	"polarisation",
	"polemize",
	"pollute",
	"polluter",
	"polluters",
	"polution",
	"pompous",
	"pooped",
	"poor",
	"poorly",
	"posturing",
	"pout",
	"poverty",
	"powerless",
	"prate",
	"pratfall",
	"prattle",
	"precarious",
	"precariously",
	"precipitate",
	"precipitous",
	"predatory",
	"predicament",
	"predjudiced",
	"prejudge",
	"prejudice",
	"prejudicial",
	"premeditated",
	"preoccupied",
	"preoccupy",
	"preposterous",
	"preposterously",
	"pressing",
	"pressured",
	"presume",
	"presumptuous",
	"presumptuously",
	"pretence",
	"pretend",
	"pretense",
	"pretentious",
	"pretentiously",
	"prevaricate",
	"pricey",
	"prickle",
	"prickles",
	"prideful",
	"primitive",
	"prison",
	"prisoner",
	"problem",
	"problematic",
	"problems",
	"procrastinate",
	"procrastination",
	"profane",
	"profanity",
	"prohibit",
	"prohibitive",
	"prohibitively",
	"propaganda",
	"propagandize",
	"proscription",
	"proscriptions",
	"prosecute",
	"prosecuted",
	"protest",
	"protests",
	"protracted",
	"provocation",
	"provocative",
	"provoke",
	"provoked",
	"pry",
	"psychopathic",
	"psychotic",
	"pugnacious",
	"pugnaciously",
	"pugnacity",
	"punch",
	"punish",
	"punishable",
	"punished",
	"punitive",
	"puny",
	"puppet",
	"puppets",
	"pushed",
	"puzzle",
	"puzzled",
	"puzzlement",
	"puzzling",
	"quack",
	"qualms",
	"quandary",
	"quarrel",
	"quarrellous",
	"quarrellously",
	"quarrels",
	"quarrelsome",
	"quash",
	"queer",
	"questionable",
	"questioned",
	"quibble",
	"quiet",
	"quit",
	"quitter",
	"racism",
	"racist",
	"racists",
	"rack",
	"radical",
	"radicalization",
	"radically",
	"radicals",
	"rage",
	"ragged",
	"raging",
	"rail",
	"rampage",
	"rampant",
	"ramshackle",
	"rancor",
	"rank",
	"rankle",
	"rant",
	"ranting",
	"rantingly",
	"raped",
	"rascal",
	"rash",
	"rat",
	"rationalize",
	"rattle",
	"rattled",
	"ravage",
	"raving",
	"reactionary",
	"rebellious",
	"rebuff",
	"rebuke",
	"recalcitrant",
	"recant",
	"recession",
	"recessionary",
	"reckless",
	"recklessly",
	"recklessness",
	"recoil",
	"recourses",
	"redundancy",
	"redundant",
	"refusal",
	"refuse",
	"refutation",
	"refute",
	"regress",
	"regression",
	"regressive",
	"regret",
	"regretful",
	"regretfully",
	"regrettable",
	"regrettably",
	"reject",
	"rejected",
	"rejection",
	"relapse",
	"relentless",
	"relentlessly",
	"relentlessness",
	"reluctance",
	"reluctant",
	"reluctantly",
	"remorse",
	"remorseful",
	"remorsefully",
	"remorseless",
	"remorselessly",
	"remorselessness",
	"renounce",
	"renunciation",
	"repel",
	"repetitive",
	"reprehensible",
	"reprehensibly",
	"reprehension",
	"reprehensive",
	"repress",
	"repression",
	"repressive",
	"reprimand",
	"reproach",
	"reproachful",
	"reprove",
	"reprovingly",
	"repudiate",
	"repudiation",
	"repugn",
	"repugnance",
	"repugnant",
	"repugnantly",
	"repulse",
	"repulsed",
	"repulsing",
	"repulsive",
	"repulsively",
	"repulsiveness",
	"resent",
	"resented",
	"resentful",
	"resentment",
	"reservations",
	"resignation",
	"resigned",
	"resistance",
	"resistant",
	"responsible",
	"restless",
	"restlessness",
	"restrict",
	"restricted",
	"restriction",
	"restrictive",
	"retaliate",
	"retaliatory",
	"retard",
	"retarded",
	"reticent",
	"retire",
	"retract",
	"retreat",
	"revenge",
	"revengeful",
	"revengefully",
	"revert",
	"revile",
	"reviled",
	"revoke",
	"revolt",
	"revolting",
	"revoltingly",
	"revulsion",
	"revulsive",
	"rhapsodize",
	"rhetoric",
	"rhetorical",
	"rid",
	"ridicule",
	"ridiculed",
	"ridiculous",
	"ridiculously",
	"rife",
	"rift",
	"rifts",
	"rigid",
	"rigor",
	"rigorous",
	"rile",
	"riled",
	"risk",
	"risky",
	"rival",
	"rivalry",
	"roadblocks",
	"robbed",
	"rocky",
	"rogue",
	"rollercoaster",
	"rot",
	"rotten",
	"rough",
	"rubbish",
	"rude",
	"rue",
	"ruffian",
	"ruffle",
	"ruin",
	"ruinous",
	"rumbling",
	"rumor",
	"rumors",
	"rumours",
	"rumple",
	"run-down",
	"runaway",
	"rupture",
	"rusty",
	"ruthless",
	"ruthlessly",
	"ruthlessness",
	"sabotage",
	"sacrifice",
	"sad",
	"sadden",
	"sadistic",
	"sadly",
	"sadness",
	"sag",
	"salacious",
	"sanctimonious",
	"sap",
	"sarcasm",
	"sarcastic",
	"sarcastically",
	"sardonic",
	"sardonically",
	"sass",
	"satirical",
	"satirize",
	"savage",
	"savaged",
	"savagely",
	"savagery",
	"savages",
	"scandal",
	"scandalize",
	"scandalized",
	"scandalous",
	"scandalously",
	"scandals",
	"scant",
	"scapegoat",
	"scar",
	"scarce",
	"scarcely",
	"scarcity",
	"scare",
	"scared",
	"scarier",
	"scariest",
	"scarily",
	"scarred",
	"scars",
	"scary",
	"scathing",
	"scathingly",
	"scheme",
	"scheming",
	"scoff",
	"scoffingly",
	"scold",
	"scolding",
	"scoldingly",
	"scorching",
	"scorchingly",
	"scorn",
	"scornful",
	"scornfully",
	"scoundrel",
	"scourge",
	"scowl",
	"scream",
	"screech",
	"screw",
	"screwed",
	"scum",
	"scummy",
	"second-class",
	"second-tier",
	"secretive",
	"sedentary",
	"seedy",
	"seethe",
	"seething",
	"self-coup",
	"self-criticism",
	"self-defeating",
	"self-destructive",
	"self-humiliation",
	"self-interest",
	"self-interested",
	"self-serving",
	"selfinterested",
	"selfish",
	"selfishly",
	"selfishness",
	"senile",
	"sensationalize",
	"senseless",
	"senselessly",
	"sensitive",
	"seriousness",
	"sermonize",
	"servitude",
	"set-up",
	"sever",
	"severe",
	"severely",
	"severity",
	"shabby",
	"shadow",
	"shadowy",
	"shady",
	"shake",
	"shaky",
	"shallow",
	"sham",
	"shambles",
	"shame",
	"shameful",
	"shamefully",
	"shamefulness",
	"shameless",
	"shamelessly",
	"shamelessness",
	"shark",
	"sharply",
	"shatter",
	"sheer",
	"shipwreck",
	"shirk",
	"shirker",
	"shiver",
	"shock",
	"shocking",
	"shockingly",
	"shoddy",
	"short-lived",
	"shortage",
	"shortchange",
	"shortcoming",
	"shortcomings",
	"shortsighted",
	"shortsightedness",
	"showdown",
	"shred",
	"shrew",
	"shriek",
	"shrill",
	"shrilly",
	"shrivel",
	"shroud",
	"shrouded",
	"shrug",
	"shun",
	"shunned",
	"shy",
	"shyly",
	"shyness",
	"sick",
	"sicken",
	"sickening",
	"sickeningly",
	"sickly",
	"sickness",
	"sidetrack",
	"sidetracked",
	"siege",
	"sillily",
	"silly",
	"simmer",
	"simplistic",
	"simplistically",
	"sin",
	"sinful",
	"sinfully",
	"sinister",
	"sinisterly",
	"sinking",
	"skeletons",
	"skeptical",
	"skeptically",
	"skepticism",
	"sketchy",
	"skimpy",
	"skittish",
	"skittishly",
	"skulk",
	"slack",
	"slander",
	"slanderer",
	"slanderous",
	"slanderously",
	"slanders",
	"slap",
	"slashing",
	"slaughter",
	"slaughtered",
	"slaves",
	"sleazy",
	"slight",
	"slightly",
	"slime",
	"sloppily",
	"sloppy",
	"sloth",
	"slothful",
	"slow",
	"slow-moving",
	"slowly",
	"slug",
	"sluggish",
	"slump",
	"slur",
	"sly",
	"smack",
	"small",
	"smash",
	"smear",
	"smelling",
	"smokescreen",
	"smolder",
	"smoldering",
	"smother",
	"smothered",
	"smoulder",
	"smouldering",
	"smug",
	"smugly",
	"smut",
	"smuttier",
	"smuttiest",
	"smutty",
	"snare",
	"snarl",
	"snatch",
	"sneak",
	"sneakily",
	"sneaky",
	"sneer",
	"sneering",
	"sneeringly",
	"snub",
	"so-cal",
	"so-called",
	"sob",
	"sober",
	"sobering",
	"solemn",
	"somber",
	"sore",
	"sorely",
	"soreness",
	"sorrow",
	"sorrowful",
	"sorrowfully",
	"sounding",
	"sour",
	"sourly",
	"spade",
	"spank",
	"spilling",
	"spinster",
	"spiritless",
	"spite",
	"spiteful",
	"spitefully",
	"spitefulness",
	"split",
	"splitting",
	"spoil",
	"spook",
	"spookier",
	"spookiest",
	"spookily",
	"spooky",
	"spoon-fed",
	"spoon-feed",
	"spoonfed",
	"sporadic",
	"spot",
	"spotty",
	"spurious",
	"spurn",
	"sputter",
	"squabble",
	"squabbling",
	"squander",
	"squash",
	"squirm",
	"stab",
	"stagger",
	"staggering",
	"staggeringly",
	"stagnant",
	"stagnate",
	"stagnation",
	"staid",
	"stain",
	"stake",
	"stale",
	"stalemate",
	"stammer",
	"stampede",
	"standstill",
	"stark",
	"starkly",
	"startle",
	"startling",
	"startlingly",
	"starvation",
	"starve",
	"static",
	"steal",
	"stealing",
	"steep",
	"steeply",
	"stench",
	"stereotype",
	"stereotyped",
	"stereotypical",
	"stereotypically",
	"stern",
	"stew",
	"sticky",
	"stiff",
	"stifle",
	"stifling",
	"stiflingly",
	"stigma",
	"stigmatize",
	"sting",
	"stinging",
	"stingingly",
	"stink",
	"stinking",
	"stodgy",
	"stole",
	"stolen",
	"stooge",
	"stooges",
	"storm",
	"stormy",
	"straggle",
	"straggler",
	"strain",
	"strained",
	"strange",
	"strangely",
	"stranger",
	"strangest",
	"strangle",
	"strenuous",
	"stress",
	"stressed",
	"stressful",
	"stressfully",
	"stretched",
	"stricken",
	"strict",
	"strictly",
	"strident",
	"stridently",
	"strife",
	"strike",
	"stringent",
	"stringently",
	"struck",
	"struggle",
	"strut",
	"stubborn",
	"stubbornly",
	"stubbornness",
	"stuck",
	"stuffy",
	"stumble",
	"stump",
	"stun",
	"stunt",
	"stunted",
	"stupid",
	"stupidity",
	"stupidly",
	"stupified",
	"stupify",
	"stupor",
	"sty",
	"subdued",
	"subjected",
	"subjection",
	"subjugate",
	"subjugation",
	"submissive",
	"subordinate",
	"subservience",
	"subservient",
	"subside",
	"substandard",
	"subtract",
	"subversion",
	"subversive",
	"subversively",
	"subvert",
	"succumb",
	"sucker",
	"suffer",
	"sufferer",
	"sufferers",
	"suffering",
	"suffocate",
	"suffocated",
	"sugar-coat",
	"sugar-coated",
	"sugarcoated",
	"suicidal",
	"suicide",
	"sulk",
	"sullen",
	"sully",
	"sunder",
	"superficial",
	"superficiality",
	"superficially",
	"superfluous",
	"superiority",
	"superstition",
	"superstitious",
	"supposed",
	"suppress",
	"suppressed",
	"suppression",
	"supremacy",
	"surrender",
	"susceptible",
	"suspect",
	"suspicion",
	"suspicions",
	"suspicious",
	"suspiciously",
	"swagger",
	"swamped",
	"swear",
	"swindle",
	"swipe",
	"swoon",
	"swore",
	"sympathetically",
	"sympathies",
	"sympathize",
	"sympathy",
	"symptom",
	"syndrome",
	"taboo",
	"taint",
	"tainted",
	"tamper",
	"tangled",
	"tantrum",
	"tardy",
	"tarnish",
	"tattered",
	"taunt",
	"taunting",
	"tauntingly",
	"taunts",
	"tawdry",
	"taxing",
	"tease",
	"teasingly",
	"tedious",
	"tediously",
	"temerity",
	"temper",
	"tempest",
	"temptation",
	"tense",
	"tension",
	"tentative",
	"tentatively",
	"tenuous",
	"tenuously",
	"tepid",
	"terrible",
	"terribleness",
	"terribly",
	"terror",
	"terror-genic",
	"terrorism",
	"terrorize",
	"thankless",
	"thirst",
	"thorny",
	"thoughtless",
	"thoughtlessly",
	"thoughtlessness",
	"thrash",
	"threat",
	"threaten",
	"threatening",
	"threats",
	"throttle",
	"throw",
	"thumb",
	"thumbs",
	"thwart",
	"timid",
	"timidity",
	"timidly",
	"timidness",
	"tiny",
	"tire",
	"tired",
	"tiresome",
	"tiring",
	"tiringly",
	"toil",
	"toll",
	"topple",
	"torment",
	"tormented",
	"torrent",
	"tortuous",
	"torture",
	"tortured",
	"torturous",
	"torturously",
	"totalitarian",
	"touchy",
	"toughness",
	"toxic",
	"traduce",
	"tragedy",
	"tragic",
	"tragically",
	"traitor",
	"traitorous",
	"traitorously",
	"tramp",
	"trample",
	"transgress",
	"transgression",
	"trauma",
	"traumatic",
	"traumatically",
	"traumatize",
	"traumatized",
	"travesties",
	"travesty",
	"treacherous",
	"treacherously",
	"treachery",
	"treason",
	"treasonous",
	"trial",
	"trick",
	"trickery",
	"tricky",
	"trivial",
	"trivialize",
	"trivially",
	"trouble",
	"troublemaker",
	"troublesome",
	"troublesomely",
	"troubling",
	"troublingly",
	"truant",
	"tumultuous",
	"turbulent",
	"turmoil",
	"twist",
	"twisted",
	"twists",
	"tyrannical",
	"tyrannically",
	"tyranny",
	"tyrant",
	"ugh",
	"ugliness",
	"ugly",
	"ulterior",
	"ultimatum",
	"ultimatums",
	"ultra-hardline",
	"unable",
	"unacceptable",
	"unacceptablely",
	"unaccustomed",
	"unattractive",
	"unauthentic",
	"unavailable",
	"unavoidable",
	"unavoidably",
	"unbearable",
	"unbearablely",
	"unbelievable",
	"unbelievably",
	"uncertain",
	"uncivil",
	"uncivilized",
	"unclean",
	"unclear",
	"uncollectible",
	"uncomfortable",
	"uncompetitive",
	"uncompromising",
	"uncompromisingly",
	"unconfirmed",
	"unconstitutional",
	"uncontrolled",
	"unconvincing",
	"unconvincingly",
	"uncouth",
	"undecided",
	"undefined",
	"undependability",
	"undependable",
	"underdog",
	"underestimate",
	"underlings",
	"undermine",
	"underpaid",
	"undesirable",
	"undetermined",
	"undid",
	"undignified",
	"undo",
	"undocumented",
	"undone",
	"undue",
	"unease",
	"uneasily",
	"uneasiness",
	"uneasy",
	"uneconomical",
	"unequal",
	"unethical",
	"uneven",
	"uneventful",
	"unexpected",
	"unexpectedly",
	"unexplained",
	"unfair",
	"unfairly",
	"unfaithful",
	"unfaithfully",
	"unfamiliar",
	"unfavorable",
	"unfeeling",
	"unfinished",
	"unfit",
	"unforeseen",
	"unfortunate",
	"unfounded",
	"unfriendly",
	"unfulfilled",
	"unfunded",
	"ungovernable",
	"ungrateful",
	"unhappily",
	"unhappiness",
	"unhappy",
	"unhealthy",
	"unilateralism",
	"unimaginable",
	"unimaginably",
	"unimportant",
	"uninformed",
	"uninsured",
	"unipolar",
	"unjust",
	"unjustifiable",
	"unjustifiably",
	"unjustified",
	"unjustly",
	"unkind",
	"unkindly",
	"unlamentable",
	"unlamentably",
	"unlawful",
	"unlawfully",
	"unlawfulness",
	"unleash",
	"unlicensed",
	"unlucky",
	"unmoved",
	"unnatural",
	"unnaturally",
	"unnecessary",
	"unneeded",
	"unnerve",
	"unnerved",
	"unnerving",
	"unnervingly",
	"unnoticed",
	"unobserved",
	"unorthodox",
	"unorthodoxy",
	"unpleasant",
	"unpleasantries",
	"unpopular",
	"unprecedent",
	"unprecedented",
	"unpredictable",
	"unprepared",
	"unproductive",
	"unprofitable",
	"unqualified",
	"unravel",
	"unraveled",
	"unrealistic",
	"unreasonable",
	"unreasonably",
	"unrelenting",
	"unrelentingly",
	"unreliability",
	"unreliable",
	"unresolved",
	"unrest",
	"unruly",
	"unsafe",
	"unsatisfactory",
	"unsavory",
	"unscrupulous",
	"unscrupulously",
	"unseemly",
	"unsettle",
	"unsettled",
	"unsettling",
	"unsettlingly",
	"unskilled",
	"unsophisticated",
	"unsound",
	"unspeakable",
	"unspeakablely",
	"unspecified",
	"unstable",
	"unsteadily",
	"unsteadiness",
	"unsteady",
	"unsuccessful",
	"unsuccessfully",
	"unsupported",
	"unsure",
	"unsuspecting",
	"unsustainable",
	"untenable",
	"untested",
	"unthinkable",
	"unthinkably",
	"untimely",
	"untrue",
	"untrustworthy",
	"untruthful",
	"unusual",
	"unusually",
	"unwanted",
	"unwarranted",
	"unwelcome",
	"unwieldy",
	"unwilling",
	"unwillingly",
	"unwillingness",
	"unwise",
	"unwisely",
	"unworkable",
	"unworthy",
	"unyielding",
	"upbraid",
	"upheaval",
	"uprising",
	"uproar",
	"uproarious",
	"uproariously",
	"uproarous",
	"uproarously",
	"uproot",
	"upset",
	"upsetting",
	"upsettingly",
	"urgency",
	"urgent",
	"urgently",
	"useless",
	"usurp",
	"usurper",
	"utter",
	"utterly",
	"vagrant",
	"vague",
	"vagueness",
	"vain",
	"vainly",
	"vanish",
	"vanity",
	"vehement",
	"vehemently",
	"vengeance",
	"vengeful",
	"vengefully",
	"vengefulness",
	"venom",
	"venomous",
	"venomously",
	"vent",
	"vestiges",
	"veto",
	"vex",
	"vexation",
	"vexing",
	"vexingly",
	"vice",
	"vicious",
	"viciously",
	"viciousness",
	"victimize",
	"vie",
	"vile",
	"vileness",
	"vilify",
	"villainous",
	"villainously",
	"villains",
	"villian",
	"villianous",
	"villianously",
	"villify",
	"vindictive",
	"vindictively",
	"vindictiveness",
	"violate",
	"violation",
	"violator",
	"violent",
	"violently",
	"viper",
	"virulence",
	"virulent",
	"virulently",
	"virus",
	"vocally",
	"vociferous",
	"vociferously",
	"void",
	"volatile",
	"volatility",
	"vomit",
	"vulgar",
	"wail",
	"wallow",
	"wane",
	"waning",
	"wanton",
	"war",
	"war-like",
	"warfare",
	"warily",
	"wariness",
	"warlike",
	"warning",
	"warp",
	"warped",
	"wary",
	"waste",
	"wasteful",
	"wastefulness",
	"watchdog",
	"wayward",
	"weak",
	"weaken",
	"weakening",
	"weakness",
	"weaknesses",
	"weariness",
	"wearisome",
	"weary",
	"wedge",
	"wee",
	"weed",
	"weep",
	"weird",
	"weirdly",
	"wheedle",
	"whimper",
	"whine",
	"whips",
	"wicked",
	"wickedly",
	"wickedness",
	"widespread",
	"wild",
	"wildly",
	"wiles",
	"wilt",
	"wily",
	"wince",
	"withheld",
	"withhold",
	"woe",
	"woebegone",
	"woeful",
	"woefully",
	"worn",
	"worried",
	"worriedly",
	"worrier",
	"worries",
	"worrisome",
	"worry",
	"worrying",
	"worryingly",
	"worse",
	"worsen",
	"worsening",
	"worst",
	"worthless",
	"worthlessly",
	"worthlessness",
	"wound",
	"wounds",
	"wrangle",
	"wrath",
	"wreck",
	"wrest",
	"wrestle",
	"wretch",
	"wretched",
	"wretchedly",
	"wretchedness",
	"writhe",
	"wrong",
	"wrongful",
	"wrongly",
	"wrought",
	"x(",
	"x-(",
	"xo",
	"xp",
	"yawn",
	"yelp",
	"zealot",
	"zealous",
	"zealously",
	"|8c",
	' " "=(',
);
dictionaries/source.neu.php000064400000011354151556062100012025 0ustar00<?php
$neu = array(
	'(o;',
	'*)',
	'8-)',
	':-',
	':-\\',
	':-o',
	':0->-<|:',
	':l',
	':|',
	';)',
	';o)',
	'<:}',
	'absolute',
	'absolutely',
	'absorbed',
	'accentuate',
	'activist',
	'actual',
	'actuality',
	'adolescents',
	'affect',
	'affected',
	'aha',
	'air',
	'alert',
	'all-time',
	'allegorize',
	'alliance',
	'alliances',
	'allusion',
	'allusions',
	'alright',
	'altogether',
	'amplify',
	'analytical',
	'apparent',
	'apparently',
	'appearance',
	'apprehend',
	'assess',
	'assessment',
	'assessments',
	'assumption',
	'astronomic',
	'astronomical',
	'astronomically',
	'attitude',
	'attitudes',
	'average',
	'aware',
	'awareness',
	'baby',
	'basically',
	'batons',
	'belief',
	'beliefs',
	'big',
	'blood',
	'broad-based',
	'ceaseless',
	'central',
	'certified',
	'chant',
	'claim',
	'clandestine',
	'cogitate',
	'cognizance',
	'comment',
	'commentator',
	'complete',
	'completely',
	'comprehend',
	'concerted',
	'confide',
	'conjecture',
	'conscience',
	'consciousness',
	'considerable',
	'considerably',
	'consideration',
	'constitutions',
	'contemplate',
	'continuous',
	'corrective',
	'covert',
	'decide',
	'deduce',
	'deeply',
	'destiny',
	'difference',
	'diplomacy',
	'discern',
	'disposition',
	'distinctly',
	'dominant',
	'downright',
	'dramatically',
	'duty',
	'effectively',
	'elaborate',
	'embodiment',
	'emotion',
	'emotions',
	'emphasise',
	'engage',
	'engross',
	'entire',
	'entrenchment',
	'evaluate',
	'evaluation',
	'exclusively',
	'expectation',
	'expound',
	'expression',
	'expressions',
	'extemporize',
	'extensive',
	'extensively',
	'eyebrows',
	'fact',
	'facts',
	'factual',
	'familiar',
	'far-reaching',
	'fast',
	'feel',
	'feeling',
	'feelings',
	'feels',
	'felt',
	'finally',
	'firm',
	'firmly',
	'fixer',
	'floor',
	'foretell',
	'forsee',
	'fortress',
	'frankly',
	'frequent',
	'full',
	'full-scale',
	'fully',
	'fundamental',
	'fundamentally',
	'funded',
	'galvanize',
	'gestures',
	'giant',
	'giants',
	'gigantic',
	'glean',
	'greatly',
	'growing',
	'halfway',
	'halt',
	'heavy-duty',
	'hefty',
	'high',
	'high-powered',
	'hm',
	'hmm',
	'huge',
	'hypnotize',
	'idea',
	'ignite',
	'imagination',
	'imagine',
	'immediately',
	'immense',
	'immensely',
	'immensity',
	'immensurable',
	'immune',
	'imperative',
	'imperatively',
	'implicit',
	'imply',
	'inarguable',
	'inarguably',
	'increasing',
	'increasingly',
	'indication',
	'indicative',
	'indirect',
	'infectious',
	'infer',
	'inference',
	'influence',
	'informational',
	'inherent',
	'inkling',
	'inklings',
	'innumerable',
	'innumerably',
	'innumerous',
	'insights',
	'intend',
	'intensive',
	'intensively',
	'intent',
	'intention',
	'intentions',
	'intents',
	'intimate',
	'intrigue',
	'irregardless',
	'judgement',
	'judgements',
	'judgment',
	'judgments',
	'key',
	'knew',
	'knowing',
	'knowingly',
	'knowledge',
	'large',
	'large-scale',
	'largely',
	'lastly',
	'learn',
	'legacies',
	'legacy',
	'legalistic',
	'likelihood',
	'likewise',
	'limitless',
	'major',
	'mantra',
	'massive',
	'matter',
	'mediocre',
	'memories',
	'mentality',
	'metaphorize',
	'minor',
	'mm',
	'motive',
	'move',
	'mum',
	'nap',
	'nascent',
	'nature',
	'needful',
	'needfully',
	'nonviolent',
	'notion',
	'nuance',
	'nuances',
	'obligation',
	'obvious',
	'ok',
	'olympic',
	'open-ended',
	'opinion',
	'opinions',
	'orthodoxy',
	'outlook',
	'outright',
	'outspoken',
	'overt',
	'overtures',
	'pacify',
	'perceptions',
	'persistence',
	'perspective',
	'philosophize',
	'pivotal',
	'player',
	'plenary',
	'point',
	'ponder',
	'position',
	'possibility',
	'possibly',
	'posture',
	'power',
	'practically',
	'pray',
	'predictable',
	'predictablely',
	'predominant',
	'pressure',
	'pressures',
	'prevalent',
	'primarily',
	'primary',
	'prime',
	'proclaim',
	'prognosticate',
	'prophesy',
	'proportionate',
	'proportionately',
	'prove',
	'quick',
	'rapid',
	'rare',
	'rarely',
	'react',
	'reaction',
	'reactions',
	'readiness',
	'realization',
	'recognizable',
	'reflecting',
	'regard',
	'regardlessly',
	'reiterate',
	'reiterated',
	'reiterates',
	'relations',
	'remark',
	'renewable',
	'replete',
	'reputed',
	'reveal',
	'revealing',
	'revelatory',
	'screaming',
	'screamingly',
	'scrutinize',
	'scrutiny',
	'seemingly',
	'self-examination',
	'show',
	'signals',
	'simply',
	'sleepy',
	'soliloquize',
	'sovereignty',
	'specific',
	'specifically',
	'speculate',
	'speculation',
	'splayed-finger',
	'stance',
	'stances',
	'stands',
	'statements',
	'stir',
	'strength',
	'stronger-than-expected',
	'stuffed',
	'stupefy',
	'suppose',
	'supposing',
	'surprise',
	'surprising',
	'surprisingly',
	'swing',
	'tale',
	'tall',
	'tantamount',
	'taste',
	'tendency',
	'theoretize',
	'thinking',
	'thought',
	'thusly',
	'tint',
	'touch',
	'touches',
	'transparency',
	'transparent',
	'transport',
	'unaudited',
	'utterances',
	'view',
	'viewpoints',
	'views',
	'vocal',
	'whiff',
	'yeah',
);
dictionaries/source.pos.php000064400000570470151556062100012050 0ustar00<?php
$pos = array(
	'%-)',
	'(-:',
	'(:',
	'(^',
	'(^-^)',
	'(^.^)',
	'(^_^)',
	'(o:',
	'*\\o/*',
	'--^--@',
	'0:)',
	'8)',
	':)',
	':-)',
	':-))',
	':-)))',
	':-*',
	':-d',
	':-p',
	':-}',
	':3',
	':9',
	':\'de',
	':]',
	':b)',
	':d',
	':o)',
	':p',
	':x',
	';^)',
	'<3',
	'<33',
	'<333',
	'<3333',
	'<33333',
	'=)',
	'=))',
	'=]',
	'>:)',
	'>:d',
	'>=d',
	'@}->--',
	'^)',
	'^_^',
	'abidance',
	'abide',
	'abilities',
	'ability',
	'abound',
	'above-average',
	'absolve',
	'absolved',
	'absolving',
	'abundance',
	'abundant',
	'accede',
	'accept',
	'accepted',
	'accepting',
	'acceptable',
	'acceptance',
	'accessible',
	'acclaim',
	'acclaimed',
	'acclamation',
	'accolade',
	'accolades',
	'accommodating',
	'accommodative',
	'accomplish',
	'accomplished',
	'accomplishes',
	'accomplishment',
	'accomplishments',
	'accord',
	'accordance',
	'accordantly',
	'accountable',
	'accurate',
	'accurately',
	'achievable',
	'achieve',
	'achieved',
	'achieves',
	'achievement',
	'achievements',
	'acknowledge',
	'acknowledged',
	'acknowledgement',
	'acquit',
	'active',
	'acumen',
	'adaptability',
	'adaptable',
	'adaptive',
	'adept',
	'adeptly',
	'adequate',
	'adherence',
	'adherent',
	'adhesion',
	'admirable',
	'admirably',
	'admiration',
	'admire',
	'admirer',
	'admiring',
	'admiringly',
	'admission',
	'admit',
	'admittedly',
	'adopt',
	'adopts',
	'adorable',
	'adoration',
	'adore',
	'adored',
	'adores',
	'adorer',
	'adoring',
	'adoringly',
	'adroit',
	'adroitly',
	'adulate',
	'adulation',
	'adulatory',
	'advanced',
	'advantage',
	'advantageous',
	'advantages',
	'adventure',
	'adventures',
	'adventurous',
	'adventuresome',
	'adventurism',
	'adventurous',
	'advice',
	'advisable',
	'advocacy',
	'advocate',
	'affability',
	'affable',
	'affably',
	'affection',
	'affectionate',
	'affectionateness',
	'affinity',
	'affirm',
	'affirmation',
	'affirmative',
	'affluence',
	'affluent',
	'afford',
	'affordable',
	'aficionados',
	'afloat',
	'agile',
	'agilely',
	'agility',
	'agree',
	'agreed',
	'agrees',
	'agreeability',
	'agreeable',
	'agreeableness',
	'agreeably',
	'agreement',
	'airy',
	'alive',
	'allay',
	'alleviate',
	'allow',
	'allowable',
	'allure',
	'alluring',
	'alluringly',
	'ally',
	'almighty',
	'altruist',
	'altruistic',
	'altruistically',
	'amaze',
	'amazed',
	'amazes',
	'amazement',
	'amazing',
	'amazingly',
	'ambitious',
	'ambitiously',
	'ameliorate',
	'amenable',
	'amenity',
	'amiability',
	'amiabily',
	'amiable',
	'amicability',
	'amicable',
	'amicably',
	'amity',
	'amnesty',
	'amorous',
	'amour',
	'ample',
	'amply',
	'amuse',
	'amused',
	'amuses',
	'amusement',
	'amusements',
	'amusing',
	'amusingly',
	'angel',
	'angelic',
	'animated',
	'apostle',
	'apotheosis',
	'appeal',
	'appealing',
	'appease',
	'applaud',
	'applauded',
	'applauding',
	'applauds',
	'applause',
	'appreciable',
	'appreciabled',
	'appreciation',
	'appreciative',
	'appreciatively',
	'appreciativeness',
	'approachable',
	'appropriate',
	'approval',
	'approve',
	'apt',
	'aptitude',
	'aptly',
	'ardent',
	'ardently',
	'ardor',
	'aristocratic',
	'arousal',
	'arouse',
	'arousing',
	'arresting',
	'articulate',
	'artistic',
	'ascendant',
	'ascertainable',
	'aspiration',
	'aspirations',
	'aspire',
	'assent',
	'assertions',
	'assertive',
	'asset',
	'assiduous',
	'assiduously',
	'assuage',
	'assurance',
	'assurances',
	'assure',
	'assured',
	'assuredly',
	'astonish',
	'astonished',
	'astonishing',
	'astonishingly',
	'astonishment',
	'astound',
	'astounded',
	'astounding',
	'astoundingly',
	'astute',
	'astutely',
	'asylum',
	'athletic',
	'attain',
	'attainable',
	'attentive',
	'attest',
	'attraction',
	'attractive',
	'attractively',
	'attune',
	'auspicious',
	'authentic',
	'authoritative',
	'autonomous',
	'aver',
	'avid',
	'avidly',
	'award',
	'awe',
	'awed',
	'awesome',
	'awesomely',
	'awesomeness',
	'awestruck',
	'back',
	'backbone',
	'balanced',
	'bargain',
	'basic',
	'bask',
	'beacon',
	'beatify',
	'beauteous',
	'beautiful',
	'beautifully',
	'beautify',
	'beauty',
	'befit',
	'befitting',
	'befriend',
	'believable',
	'beloved',
	'benefactor',
	'beneficent',
	'beneficial',
	'beneficially',
	'beneficiary',
	'benefit',
	'benefits',
	'benevolence',
	'benevolent',
	'benign',
	'best-known',
	'best-performing',
	'best-selling',
	'better-known',
	'better-than-expected',
	'blameless',
	'bless',
	'blessed',
	'blessing',
	'bliss',
	'blissful',
	'blissfully',
	'blithe',
	'bloom',
	'blossom',
	'boast',
	'bold',
	'boldly',
	'boldness',
	'bolster',
	'bonny',
	'bonus',
	'boom',
	'booming',
	'boost',
	'boundless',
	'bountiful',
	'brains',
	'brainy',
	'brave',
	'bravery',
	'breakthrough',
	'breakthroughs',
	'breathlessness',
	'breathtaking',
	'breathtakingly',
	'bright',
	'brighten',
	'brightness',
	'brilliance',
	'brilliant',
	'brilliantly',
	'brisk',
	'broad',
	'brook',
	'brotherly',
	'bull',
	'bullish',
	'buoyant',
	'calm',
	'calming',
	'calmness',
	'candid',
	'candor',
	'capability',
	'capable',
	'capably',
	'capitalize',
	'captivate',
	'captivating',
	'captivation',
	'care',
	'carefree',
	'careful',
	'caring',
	'casual',
	'catalyst',
	'catchy',
	'celebrate',
	'celebrated',
	'celebration',
	'celebratory',
	'celebrity',
	'cerebral',
	'champ',
	'champion',
	'charismatic',
	'charitable',
	'charity',
	'charm',
	'charming',
	'charmingly',
	'chaste',
	'chatty',
	'cheer',
	'cheerful',
	'cheery',
	'cherish',
	'cherished',
	'cherub',
	'chic',
	'chivalrous',
	'chivalry',
	'chum',
	'civil',
	'civility',
	'civilization',
	'civilize',
	'clarity',
	'classic',
	'clean',
	'cleanliness',
	'cleanse',
	'clear',
	'clear-cut',
	'clearer',
	'clearheaded',
	'clever',
	'closeness',
	'clout',
	'co-operation',
	'coax',
	'coddle',
	'cogent',
	'cognizant',
	'cohere',
	'coherence',
	'coherent',
	'cohesion',
	'cohesive',
	'colorful',
	'colossal',
	'comeback',
	'comedic',
	'comely',
	'comfort',
	'comfortable',
	'comfortably',
	'comforting',
	'commend',
	'commendable',
	'commendably',
	'commensurate',
	'commitment',
	'commodious',
	'commonsense',
	'commonsensible',
	'commonsensibly',
	'commonsensical',
	'compact',
	'companionable',
	'compassion',
	'compassionate',
	'compatible',
	'compelling',
	'compensate',
	'competence',
	'competency',
	'competent',
	'competitiveness',
	'complement',
	'complex',
	'compliant',
	'compliment',
	'complimentary',
	'comprehensive',
	'compromise',
	'compromises',
	'comrades',
	'conceivable',
	'conciliate',
	'conciliatory',
	'concise',
	'conclusive',
	'concrete',
	'concur',
	'condone',
	'conducive',
	'confer',
	'confidence',
	'confident',
	'confute',
	'congenial',
	'congratulate',
	'congratulations',
	'congratulatory',
	'conquer',
	'conscience',
	'conscientious',
	'consensus',
	'consent',
	'considerate',
	'consistent',
	'console',
	'constancy',
	'constant',
	'constructive',
	'consummate',
	'content',
	'contentment',
	'continuity',
	'contribution',
	'convenient',
	'conveniently',
	'conviction',
	'convince',
	'convincing',
	'convincingly',
	'convivial',
	'convulsive',
	'cooperate',
	'cooperation',
	'cooperative',
	'cooperatively',
	'cordial',
	'cornerstone',
	'correct',
	'correctly',
	'cost-effective',
	'cost-saving',
	'courage',
	'courageous',
	'courageously',
	'courageousness',
	'court',
	'courteous',
	'courtesy',
	'courtly',
	'covenant',
	'cozy',
	'crave',
	'craving',
	'creative',
	'credence',
	'credible',
	'crisp',
	'crusade',
	'crusader',
	'cure-all',
	'curious',
	'curiously',
	'cute',
	'dance',
	'dare',
	'daring',
	'daringly',
	'darling',
	'dashing',
	'dauntless',
	'dawn',
	'daydream',
	'daydreamer',
	'dazzle',
	'dazzled',
	'dazzling',
	'deal',
	'dear',
	'decency',
	'decent',
	'decisive',
	'decisiveness',
	'dedicated',
	'deep',
	'defend',
	'defender',
	'defense',
	'deference',
	'defined',
	'definite',
	'definitive',
	'definitively',
	'deflationary',
	'deft',
	'delectable',
	'deliberate',
	'delicacy',
	'delicious',
	'delight',
	'delighted',
	'delightful',
	'delightfully',
	'delightfulness',
	'democratic',
	'demystify',
	'dependable',
	'deserve',
	'deserved',
	'deservedly',
	'deserving',
	'desirable',
	'desire',
	'desirous',
	'destine',
	'destined',
	'destinies',
	'destiny',
	'determination',
	'determined',
	'devote',
	'devoted',
	'devotee',
	'devotion',
	'devout',
	'dexterity',
	'dexterous',
	'dexterously',
	'dextrous',
	'dig',
	'dignified',
	'dignify',
	'dignity',
	'diligence',
	'diligent',
	'diligently',
	'diplomatic',
	'direct',
	'disarming',
	'discerning',
	'discreet',
	'discrete',
	'discretion',
	'discriminating',
	'discriminatingly',
	'distinct',
	'distinction',
	'distinctive',
	'distinguish',
	'distinguished',
	'diversified',
	'divine',
	'divinely',
	'dodge',
	'dote',
	'dotingly',
	'doubtless',
	'dream',
	'dreamland',
	'dreams',
	'dreamy',
	'drive',
	'driven',
	'durability',
	'durable',
	'dutiful',
	'dynamic',
	'eager',
	'eagerly',
	'eagerness',
	'earnest',
	'earnestly',
	'earnestness',
	'ease',
	'easier',
	'easiest',
	'easily',
	'easiness',
	'easy',
	'easygoing',
	'ebullience',
	'ebullient',
	'ebulliently',
	'eclectic',
	'economical',
	'ecstasies',
	'ecstasy',
	'ecstatic',
	'ecstatically',
	'edify',
	'educable',
	'educated',
	'educational',
	'effective',
	'effectiveness',
	'effectual',
	'efficacious',
	'efficiency',
	'efficient',
	'effortless',
	'effortlessly',
	'effusion',
	'effusive',
	'effusively',
	'effusiveness',
	'egalitarian',
	'elan',
	'elate',
	'elated',
	'elatedly',
	'elation',
	'electrification',
	'electrify',
	'elegance',
	'elegant',
	'elegantly',
	'elevate',
	'elevated',
	'eligible',
	'elite',
	'eloquence',
	'eloquent',
	'eloquently',
	'emancipate',
	'embellish',
	'embolden',
	'embrace',
	'eminence',
	'eminent',
	'empower',
	'empowerment',
	'enable',
	'enchant',
	'enchanted',
	'enchanting',
	'enchantingly',
	'encourage',
	'encouragement',
	'encouraging',
	'encouragingly',
	'endear',
	'endearing',
	'endorse',
	'endorsement',
	'endorser',
	'endurable',
	'endure',
	'enduring',
	'energetic',
	'energize',
	'engaging',
	'engrossing',
	'enhance',
	'enhanced',
	'enhancement',
	'enjoy',
	'enjoyable',
	'enjoyably',
	'enjoyment',
	'enlighten',
	'enlightened',
	'enlightenment',
	'enliven',
	'ennoble',
	'enrapt',
	'enrapture',
	'enraptured',
	'enrich',
	'enrichment',
	'ensure',
	'enterprising',
	'entertain',
	'entertaining',
	'enthral',
	'enthrall',
	'enthralled',
	'enthuse',
	'enthusiasm',
	'enthusiast',
	'enthusiastic',
	'enthusiastically',
	'entice',
	'enticing',
	'enticingly',
	'entrance',
	'entranced',
	'entrancing',
	'entreat',
	'entreatingly',
	'entrust',
	'enviable',
	'enviably',
	'envision',
	'envisions',
	'epic',
	'epitome',
	'equality',
	'equitable',
	'erudite',
	'essential',
	'established',
	'esteem',
	'eternity',
	'ethical',
	'eulogize',
	'euphoria',
	'euphoric',
	'euphorically',
	'evenly',
	'eventful',
	'everlasting',
	'evident',
	'evidently',
	'evocative',
	'exact',
	'exalt',
	'exaltation',
	'exalted',
	'exaltedly',
	'exalting',
	'exaltingly',
	'exceed',
	'exceeding',
	'exceedingly',
	'excel',
	'excellence',
	'excellency',
	'excellent',
	'excellently',
	'exceptional',
	'exceptionally',
	'excite',
	'excited',
	'excitedly',
	'excitedness',
	'excitement',
	'exciting',
	'excitingly',
	'exclusive',
	'excusable',
	'excuse',
	'exemplar',
	'exemplary',
	'exhaustive',
	'exhaustively',
	'exhilarate',
	'exhilarating',
	'exhilaratingly',
	'exhilaration',
	'exonerate',
	'expansive',
	'experienced',
	'expert',
	'expertly',
	'explicit',
	'explicitly',
	'expressive',
	'exquisite',
	'exquisitely',
	'extol',
	'extoll',
	'extraordinarily',
	'extraordinary',
	'exuberance',
	'exuberant',
	'exuberantly',
	'exult',
	'exultant',
	'exultation',
	'exultingly',
	'fabulous',
	'fabulously',
	'facilitate',
	'fair',
	'fairly',
	'fairness',
	'faith',
	'faithful',
	'faithfully',
	'faithfulness',
	'fame',
	'famed',
	'famous',
	'famously',
	'fancy',
	'fanfare',
	'fantastic',
	'fantastically',
	'fantasy',
	'farsighted',
	'fascinate',
	'fascinating',
	'fascinatingly',
	'fascination',
	'fashionable',
	'fashionably',
	'fast-growing',
	'fast-paced',
	'fastest-growing',
	'fathom',
	'favor',
	'favorable',
	'favored',
	'favorite',
	'favour',
	'fearless',
	'fearlessly',
	'feasible',
	'feasibly',
	'feat',
	'featly',
	'feisty',
	'felicitate',
	'felicitous',
	'felicity',
	'fertile',
	'fervent',
	'fervently',
	'fervid',
	'fervidly',
	'fervor',
	'festive',
	'fidelity',
	'fiery',
	'fine',
	'finely',
	'first-class',
	'first-rate',
	'fit',
	'fitting',
	'flair',
	'flame',
	'flatter',
	'flattering',
	'flatteringly',
	'flawless',
	'flawlessly',
	'flexible',
	'flourish',
	'flourishing',
	'fluent',
	'focused',
	'fond',
	'fondly',
	'fondness',
	'foolproof',
	'forbearing',
	'foremost',
	'foresight',
	'forgave',
	'forgive',
	'forgiven',
	'forgiveness',
	'forgiving',
	'forgivingly',
	'forthright',
	'fortitude',
	'fortuitous',
	'fortuitously',
	'fortunate',
	'fortunately',
	'fortune',
	'fragrant',
	'frank',
	'free',
	'freedom',
	'freedoms',
	'fresh',
	'friend',
	'friendliness',
	'friendly',
	'friends',
	'friendship',
	'frolic',
	'fruitful',
	'fulfillment',
	'full-fledged',
	'fun',
	'functional',
	'funny',
	'gaiety',
	'gaily',
	'gain',
	'gainful',
	'gainfully',
	'gallant',
	'gallantly',
	'galore',
	'gem',
	'gems',
	'generosity',
	'generous',
	'generously',
	'genial',
	'genius',
	'genteel',
	'gentle',
	'genuine',
	'germane',
	'giddy',
	'gifted',
	'glad',
	'gladden',
	'gladly',
	'gladness',
	'glamorous',
	'glee',
	'gleeful',
	'gleefully',
	'glimmer',
	'glimmering',
	'glisten',
	'glistening',
	'glitter',
	'glorify',
	'glorious',
	'gloriously',
	'glory',
	'glossy',
	'glow',
	'glowing',
	'glowingly',
	'go-ahead',
	'god-given',
	'godlike',
	'godly',
	'gold',
	'golden',
	'good',
	'good',
	'goodhearted',
	'goodly',
	'goodness',
	'goodwill',
	'gorgeous',
	'gorgeously',
	'grace',
	'graceful',
	'gracefully',
	'gracious',
	'graciously',
	'graciousness',
	'grail',
	'grand',
	'grandeur',
	'grateful',
	'gratefully',
	'gratification',
	'gratify',
	'gratifying',
	'gratifyingly',
	'gratitude',
	'great',
	'greatest',
	'greatness',
	'greet',
	'gregarious',
	'grin',
	'grit',
	'groove',
	'groundbreaking',
	'grounded',
	'guarantee',
	'guardian',
	'guidance',
	'guiltless',
	'gumption',
	'gush',
	'gusto',
	'gutsy',
	'hail',
	'halcyon',
	'hale',
	'hallowed',
	'handily',
	'handsome',
	'handy',
	'hanker',
	'happily',
	'happiness',
	'happy',
	'hard-working',
	'hardier',
	'hardy',
	'harmless',
	'harmonious',
	'harmoniously',
	'harmonize',
	'harmony',
	'haven',
	'headway',
	'heady',
	'heal',
	'healthful',
	'healthy',
	'heart',
	'hearten',
	'heartening',
	'heartfelt',
	'heartily',
	'heartwarming',
	'heaven',
	'heavenly',
	'heedful',
	'helpful',
	'herald',
	'hero',
	'heroic',
	'heroically',
	'heroine',
	'heroize',
	'heros',
	'high-quality',
	'highlight',
	'hilarious',
	'hilariously',
	'hilariousness',
	'hilarity',
	'historic',
	'holy',
	'homage',
	'honest',
	'honestly',
	'honesty',
	'honeymoon',
	'honor',
	'honorable',
	'hope',
	'hopeful',
	'hopefulness',
	'hopes',
	'hospitable',
	'hot',
	'hug',
	'humane',
	'humanists',
	'humanity',
	'humankind',
	'humble',
	'humility',
	'humor',
	'humorous',
	'humorously',
	'humour',
	'humourous',
	'ideal',
	'idealism',
	'idealist',
	'idealize',
	'ideally',
	'idol',
	'idolize',
	'idolized',
	'idyllic',
	'illuminate',
	'illuminati',
	'illuminating',
	'illumine',
	'illustrious',
	'imaginative',
	'immaculate',
	'immaculately',
	'impartial',
	'impartiality',
	'impartially',
	'impassioned',
	'impeccable',
	'impeccably',
	'impel',
	'imperial',
	'imperturbable',
	'impervious',
	'impetus',
	'importance',
	'important',
	'importantly',
	'impregnable',
	'impress',
	'impression',
	'impressions',
	'impressive',
	'impressively',
	'impressiveness',
	'improve',
	'improved',
	'improvement',
	'improving',
	'improvise',
	'inalienable',
	'incisive',
	'incisively',
	'incisiveness',
	'inclination',
	'inclinations',
	'inclined',
	'inclusive',
	'incontestable',
	'incontrovertible',
	'incorruptible',
	'incredible',
	'incredibly',
	'indebted',
	'indefatigable',
	'indelible',
	'indelibly',
	'independence',
	'independent',
	'indescribable',
	'indescribably',
	'indestructible',
	'indispensability',
	'indispensable',
	'indisputable',
	'individuality',
	'indomitable',
	'indomitably',
	'indubitable',
	'indubitably',
	'indulgence',
	'indulgent',
	'industrious',
	'inestimable',
	'inestimably',
	'inexpensive',
	'infallibility',
	'infallible',
	'infallibly',
	'influential',
	'informative',
	'ingenious',
	'ingeniously',
	'ingenuity',
	'ingenuous',
	'ingenuously',
	'ingratiate',
	'ingratiating',
	'ingratiatingly',
	'innocence',
	'innocent',
	'innocently',
	'innocuous',
	'innovation',
	'innovative',
	'inoffensive',
	'inquisitive',
	'insight',
	'insightful',
	'insightfully',
	'insist',
	'insistence',
	'insistent',
	'insistently',
	'inspiration',
	'inspirational',
	'inspire',
	'inspired',
	'inspiring',
	'instructive',
	'instrumental',
	'intact',
	'integral',
	'integrity',
	'intelligence',
	'intelligent',
	'intelligible',
	'intercede',
	'interest',
	'interested',
	'interesting',
	'interests',
	'intimacy',
	'intimate',
	'intricate',
	'intrigue',
	'intriguing',
	'intriguingly',
	'intuitive',
	'invaluable',
	'invaluablely',
	'inventive',
	'invigorate',
	'invigorating',
	'invincibility',
	'invincible',
	'inviolable',
	'inviolate',
	'invulnerable',
	'irrefutable',
	'irrefutably',
	'irreproachable',
	'irresistible',
	'irresistibly',
	'jauntily',
	'jaunty',
	'jest',
	'joke',
	'jollify',
	'jolly',
	'jovial',
	'joy',
	'joyful',
	'joyfully',
	'joyous',
	'joyously',
	'jubilant',
	'jubilantly',
	'jubilate',
	'jubilation',
	'judicious',
	'just',
	'justice',
	'justifiable',
	'justifiably',
	'justification',
	'justify',
	'justly',
	'keen',
	'keenly',
	'keenness',
	'kemp',
	'kid',
	'kind',
	'kindliness',
	'kindly',
	'kindness',
	'kingmaker',
	'kiss',
	'kissable',
	'knowledgeable',
	'large',
	'lark',
	'laud',
	'laudable',
	'laudably',
	'lavish',
	'lavishly',
	'law-abiding',
	'lawful',
	'lawfully',
	'leading',
	'lean',
	'learned',
	'learning',
	'legendary',
	'legitimacy',
	'legitimate',
	'legitimately',
	'lenient',
	'leniently',
	'less-expensive',
	'leverage',
	'levity',
	'liberal',
	'liberalism',
	'liberally',
	'liberate',
	'liberation',
	'liberty',
	'lifeblood',
	'lifelong',
	'light',
	'light-hearted',
	'lighten',
	'likable',
	'like',
	'likeable',
	'liking',
	'lionhearted',
	'literate',
	'live',
	'lively',
	'lofty',
	'logical',
	'looking',
	'lovable',
	'lovably',
	'love',
	'lovee',
	'loveliness',
	'lovely',
	'lover',
	'low-cost',
	'low-risk',
	'lower-priced',
	'loyal',
	'loyalty',
	'lucid',
	'lucidly',
	'luck',
	'luckier',
	'luckiest',
	'luckily',
	'luckiness',
	'lucky',
	'lucrative',
	'luminous',
	'lush',
	'luster',
	'lustrous',
	'luxuriant',
	'luxuriate',
	'luxurious',
	'luxuriously',
	'luxury',
	'lyrical',
	'magic',
	'magical',
	'magnanimous',
	'magnanimously',
	'magnetic',
	'magnificence',
	'magnificent',
	'magnificently',
	'magnify',
	'majestic',
	'majesty',
	'manageable',
	'manifest',
	'manly',
	'mannered',
	'mannerly',
	'marvel',
	'marvellous',
	'marvelous',
	'marvelously',
	'marvelousness',
	'marvels',
	'master',
	'masterful',
	'masterfully',
	'masterly',
	'masterpiece',
	'masterpieces',
	'masters',
	'mastery',
	'matchless',
	'mature',
	'maturely',
	'maturity',
	'maximize',
	'meaningful',
	'meek',
	'mellow',
	'memorable',
	'memorialize',
	'mend',
	'mentor',
	'merciful',
	'mercifully',
	'mercy',
	'merit',
	'meritorious',
	'merrily',
	'merriment',
	'merriness',
	'merry',
	'mesmerize',
	'mesmerizing',
	'mesmerizingly',
	'meticulous',
	'meticulously',
	'mightily',
	'mighty',
	'mild',
	'mindful',
	'minister',
	'miracle',
	'miracles',
	'miraculous',
	'miraculously',
	'miraculousness',
	'mirth',
	'moderate',
	'moderation',
	'modern',
	'modest',
	'modesty',
	'mollify',
	'momentous',
	'monumental',
	'monumentally',
	'moral',
	'morality',
	'moralize',
	'motivate',
	'motivated',
	'motivation',
	'moving',
	'myriad',
	'natural',
	'naturally',
	'navigable',
	'neat',
	'neatly',
	'necessarily',
	'neighborly',
	'neutralize',
	'nice',
	'nice',
	'nicely',
	'nifty',
	'nimble',
	'nobly',
	'non-violence',
	'non-violent',
	'normal',
	'notabandon',
	'notabandoned',
	'notabandonment',
	'notabase',
	'notabasement',
	'notabash',
	'notabate',
	'notabdicate',
	'notaberration',
	'notabhor',
	'notabhorred',
	'notabhorrence',
	'notabhorrent',
	'notabhorrently',
	'notabhors',
	'notabject',
	'notabjectly',
	'notabjure',
	'notable',
	'notably',
	'notabnormal',
	'notabolish',
	'notabominable',
	'notabominably',
	'notabominate',
	'notabomination',
	'notabrade',
	'notabrasive',
	'notabrupt',
	'notabscond',
	'notabsence',
	'notabsent-minded',
	'notabsentee',
	'notabsurd',
	'notabsurdity',
	'notabsurdly',
	'notabsurdness',
	'notabuse',
	'notabused',
	'notabuses',
	'notabusive',
	'notabysmal',
	'notabysmally',
	'notabyss',
	'notaccidental',
	'notaccost',
	'notaccursed',
	'notaccusation',
	'notaccusations',
	'notaccuse',
	'notaccused',
	'notaccuses',
	'notaccusing',
	'notaccusingly',
	'notacerbate',
	'notacerbic',
	'notacerbically',
	'notache',
	'notacrid',
	'notacridly',
	'notacridness',
	'notacrimonious',
	'notacrimoniously',
	'notacrimony',
	'notadamant',
	'notadamantly',
	'notaddict',
	'notaddicted',
	'notaddiction',
	'notadmonish',
	'notadmonisher',
	'notadmonishingly',
	'notadmonishment',
	'notadmonition',
	'notadrift',
	'notadulterate',
	'notadulterated',
	'notadulteration',
	'notadversarial',
	'notadversary',
	'notadverse',
	'notadversity',
	'notaffectation',
	'notafflict',
	'notaffliction',
	'notafflictive',
	'notaffront',
	'notafraid',
	'notaggravate',
	'notaggravated',
	'notaggravating',
	'notaggravation',
	'notaggression',
	'notaggressive',
	'notaggressiveness',
	'notaggressor',
	'notaggrieve',
	'notaggrieved',
	'notaghast',
	'notagitate',
	'notagitated',
	'notagitation',
	'notagitator',
	'notagonies',
	'notagonize',
	'notagonizing',
	'notagonizingly',
	'notagony',
	'notail',
	'notailment',
	'notaimless',
	'notairs',
	'notalarm',
	'notalarmed',
	'notalarming',
	'notalarmingly',
	'notalas',
	'notalienate',
	'notalienated',
	'notalienation',
	'notallegation',
	'notallegations',
	'notallege',
	'notallergic',
	'notalone',
	'notaloof',
	'notaltercation',
	'notambiguity',
	'notambiguous',
	'notambivalence',
	'notambivalent',
	'notambush',
	'notamiss',
	'notamputate',
	'notanarchism',
	'notanarchist',
	'notanarchistic',
	'notanarchy',
	'notanemic',
	'notanger',
	'notangrily',
	'notangriness',
	'notangry',
	'notanguish',
	'notanimosity',
	'notannihilate',
	'notannihilation',
	'notannoy',
	'notannoyance',
	'notannoyed',
	'notannoying',
	'notannoyingly',
	'notanomalous',
	'notanomaly',
	'notantagonism',
	'notantagonist',
	'notantagonistic',
	'notantagonize',
	'notanti-',
	'notanti-american',
	'notanti-israeli',
	'notanti-occupation',
	'notanti-proliferation',
	'notanti-semites',
	'notanti-social',
	'notanti-us',
	'notanti-white',
	'notantipathy',
	'notantiquated',
	'notantithetical',
	'notanxieties',
	'notanxiety',
	'notanxious',
	'notanxiously',
	'notanxiousness',
	'notapathetic',
	'notapathetically',
	'notapathy',
	'notape',
	'notapocalypse',
	'notapocalyptic',
	'notapologist',
	'notapologists',
	'notappal',
	'notappall',
	'notappalled',
	'notappalling',
	'notappallingly',
	'notapprehension',
	'notapprehensions',
	'notapprehensive',
	'notapprehensively',
	'notarbitrary',
	'notarcane',
	'notarchaic',
	'notarduous',
	'notarduously',
	'notargue',
	'notargument',
	'notargumentative',
	'notarguments',
	'notarrogance',
	'notarrogant',
	'notarrogantly',
	'notartificial',
	'notashamed',
	'notasinine',
	'notasininely',
	'notasinininity',
	'notaskance',
	'notasperse',
	'notaspersion',
	'notaspersions',
	'notassail',
	'notassassin',
	'notassassinate',
	'notassault',
	'notassaulted',
	'notastray',
	'notasunder',
	'notatrocious',
	'notatrocities',
	'notatrocity',
	'notatrophy',
	'notattack',
	'notattacked',
	'notaudacious',
	'notaudaciously',
	'notaudaciousness',
	'notaudacity',
	'notaustere',
	'notauthoritarian',
	'notautocrat',
	'notautocratic',
	'notavalanche',
	'notavarice',
	'notavaricious',
	'notavariciously',
	'notavenge',
	'notaverse',
	'notaversion',
	'notavoid',
	'notavoidance',
	'notavoided',
	'notawful',
	'notawfulness',
	'notawkward',
	'notawkwardness',
	'notax',
	'notbabble',
	'notbackbite',
	'notbackbiting',
	'notbackward',
	'notbackwardness',
	'notbad',
	'notbadgered',
	'notbadly',
	'notbaffle',
	'notbaffled',
	'notbafflement',
	'notbaffling',
	'notbait',
	'notbalk',
	'notbanal',
	'notbanalize',
	'notbane',
	'notbanish',
	'notbanishment',
	'notbankrupt',
	'notbanned',
	'notbar',
	'notbarbarian',
	'notbarbaric',
	'notbarbarically',
	'notbarbarity',
	'notbarbarous',
	'notbarbarously',
	'notbarely',
	'notbarren',
	'notbaseless',
	'notbashful',
	'notbastard',
	'notbattered',
	'notbattering',
	'notbattle',
	'notbattle-lines',
	'notbattlefield',
	'notbattleground',
	'notbatty',
	'notbearish',
	'notbeast',
	'notbeastly',
	'notbeat',
	'notbeaten',
	'notbedlam',
	'notbedlamite',
	'notbefoul',
	'notbeg',
	'notbeggar',
	'notbeggarly',
	'notbegging',
	'notbeguile',
	'notbelabor',
	'notbelated',
	'notbeleaguer',
	'notbelie',
	'notbelittle',
	'notbelittled',
	'notbelittling',
	'notbellicose',
	'notbelligerence',
	'notbelligerent',
	'notbelligerently',
	'notbemoan',
	'notbemoaning',
	'notbemused',
	'notbent',
	'notberate',
	'notberated',
	'notbereave',
	'notbereavement',
	'notbereft',
	'notberserk',
	'notbeseech',
	'notbeset',
	'notbesiege',
	'notbesmirch',
	'notbestial',
	'notbetray',
	'notbetrayal',
	'notbetrayals',
	'notbetrayed',
	'notbetrayer',
	'notbewail',
	'notbeware',
	'notbewilder',
	'notbewildered',
	'notbewildering',
	'notbewilderingly',
	'notbewilderment',
	'notbewitch',
	'notbias',
	'notbiased',
	'notbiases',
	'notbicker',
	'notbickering',
	'notbid-rigging',
	'notbitch',
	'notbitchy',
	'notbiting',
	'notbitingly',
	'notbitter',
	'notbitterly',
	'notbitterness',
	'notbizarre',
	'notbizzare',
	'notblab',
	'notblabber',
	'notblack',
	'notblacklisted',
	'notblackmail',
	'notblackmailed',
	'notblah',
	'notblame',
	'notblamed',
	'notblameworthy',
	'notbland',
	'notblandish',
	'notblaspheme',
	'notblasphemous',
	'notblasphemy',
	'notblast',
	'notblasted',
	'notblatant',
	'notblatantly',
	'notblather',
	'notbleak',
	'notbleakly',
	'notbleakness',
	'notbleed',
	'notblemish',
	'notblind',
	'notblinding',
	'notblindingly',
	'notblindness',
	'notblindside',
	'notblister',
	'notblistering',
	'notbloated',
	'notblock',
	'notblockhead',
	'notblood',
	'notbloodshed',
	'notbloodthirsty',
	'notbloody',
	'notblow',
	'notblunder',
	'notblundering',
	'notblunders',
	'notblunt',
	'notblur',
	'notblurt',
	'notboast',
	'notboastful',
	'notboggle',
	'notbogus',
	'notboil',
	'notboiling',
	'notboisterous',
	'notbomb',
	'notbombard',
	'notbombardment',
	'notbombastic',
	'notbondage',
	'notbonkers',
	'notbore',
	'notbored',
	'notboredom',
	'notboring',
	'notbotch',
	'notbother',
	'notbothered',
	'notbothersome',
	'notbounded',
	'notbowdlerize',
	'notboycott',
	'notbrag',
	'notbraggart',
	'notbragger',
	'notbrainwash',
	'notbrash',
	'notbrashly',
	'notbrashness',
	'notbrat',
	'notbravado',
	'notbrazen',
	'notbrazenly',
	'notbrazenness',
	'notbreach',
	'notbreak',
	'notbreak-point',
	'notbreakdown',
	'notbrimstone',
	'notbristle',
	'notbrittle',
	'notbroke',
	'notbroken',
	'notbroken-hearted',
	'notbrood',
	'notbrowbeat',
	'notbruise',
	'notbruised',
	'notbrusque',
	'notbrutal',
	'notbrutalising',
	'notbrutalities',
	'notbrutality',
	'notbrutalize',
	'notbrutalizing',
	'notbrutally',
	'notbrute',
	'notbrutish',
	'notbuckle',
	'notbug',
	'notbugged',
	'notbulky',
	'notbullied',
	'notbullies',
	'notbully',
	'notbullyingly',
	'notbum',
	'notbummed',
	'notbumpy',
	'notbungle',
	'notbungler',
	'notbunk',
	'notburden',
	'notburdened',
	'notburdensome',
	'notburdensomely',
	'notburn',
	'notburned',
	'notbusy',
	'notbusybody',
	'notbutcher',
	'notbutchery',
	'notbyzantine',
	'notcackle',
	'notcaged',
	'notcajole',
	'notcalamities',
	'notcalamitous',
	'notcalamitously',
	'notcalamity',
	'notcallous',
	'notcalumniate',
	'notcalumniation',
	'notcalumnies',
	'notcalumnious',
	'notcalumniously',
	'notcalumny',
	'notcancer',
	'notcancerous',
	'notcannibal',
	'notcannibalize',
	'notcapitulate',
	'notcapricious',
	'notcapriciously',
	'notcapriciousness',
	'notcapsize',
	'notcaptive',
	'notcareless',
	'notcarelessness',
	'notcaricature',
	'notcarnage',
	'notcarp',
	'notcartoon',
	'notcartoonish',
	'notcash-strapped',
	'notcastigate',
	'notcasualty',
	'notcataclysm',
	'notcataclysmal',
	'notcataclysmic',
	'notcataclysmically',
	'notcatastrophe',
	'notcatastrophes',
	'notcatastrophic',
	'notcatastrophically',
	'notcaustic',
	'notcaustically',
	'notcautionary',
	'notcautious',
	'notcave',
	'notcensure',
	'notchafe',
	'notchaff',
	'notchagrin',
	'notchallenge',
	'notchallenging',
	'notchaos',
	'notchaotic',
	'notcharisma',
	'notchased',
	'notchasten',
	'notchastise',
	'notchastisement',
	'notchatter',
	'notchatterbox',
	'notcheap',
	'notcheapen',
	'notcheat',
	'notcheated',
	'notcheater',
	'notcheerless',
	'notchicken',
	'notchide',
	'notchildish',
	'notchill',
	'notchilly',
	'notchit',
	'notchoke',
	'notchoppy',
	'notchore',
	'notchronic',
	'notclamor',
	'notclamorous',
	'notclash',
	'notclaustrophobic',
	'notcliche',
	'notcliched',
	'notclingy',
	'notclique',
	'notclog',
	'notclose',
	'notclosed',
	'notcloud',
	'notclueless',
	'notclumsy',
	'notcoarse',
	'notcoaxed',
	'notcocky',
	'notcodependent',
	'notcoerce',
	'notcoerced',
	'notcoercion',
	'notcoercive',
	'notcold',
	'notcoldly',
	'notcollapse',
	'notcollide',
	'notcollude',
	'notcollusion',
	'notcombative',
	'notcomedy',
	'notcomical',
	'notcommanded',
	'notcommiserate',
	'notcommonplace',
	'notcommotion',
	'notcompared',
	'notcompel',
	'notcompetitive',
	'notcomplacent',
	'notcomplain',
	'notcomplaining',
	'notcomplaint',
	'notcomplaints',
	'notcomplicate',
	'notcomplicated',
	'notcomplication',
	'notcomplicit',
	'notcompulsion',
	'notcompulsive',
	'notcompulsory',
	'notconcede',
	'notconceit',
	'notconceited',
	'notconcern',
	'notconcerned',
	'notconcerns',
	'notconcession',
	'notconcessions',
	'notcondemn',
	'notcondemnable',
	'notcondemnation',
	'notcondescend',
	'notcondescending',
	'notcondescendingly',
	'notcondescension',
	'notcondolence',
	'notcondolences',
	'notconfess',
	'notconfession',
	'notconfessions',
	'notconfined',
	'notconflict',
	'notconflicted',
	'notconfound',
	'notconfounded',
	'notconfounding',
	'notconfront',
	'notconfrontation',
	'notconfrontational',
	'notconfronted',
	'notconfuse',
	'notconfused',
	'notconfusing',
	'notconfusion',
	'notcongested',
	'notcongestion',
	'notconned',
	'notconspicuous',
	'notconspicuously',
	'notconspiracies',
	'notconspiracy',
	'notconspirator',
	'notconspiratorial',
	'notconspire',
	'notconsternation',
	'notconstrain',
	'notconstraint',
	'notconsume',
	'notconsumed',
	'notcontagious',
	'notcontaminate',
	'notcontamination',
	'notcontemplative',
	'notcontempt',
	'notcontemptible',
	'notcontemptuous',
	'notcontemptuously',
	'notcontend',
	'notcontention',
	'notcontentious',
	'notcontort',
	'notcontortions',
	'notcontradict',
	'notcontradiction',
	'notcontradictory',
	'notcontrariness',
	'notcontrary',
	'notcontravene',
	'notcontrive',
	'notcontrived',
	'notcontrolled',
	'notcontroversial',
	'notcontroversy',
	'notconvicted',
	'notconvoluted',
	'notcoping',
	'notcornered',
	'notcorralled',
	'notcorrode',
	'notcorrosion',
	'notcorrosive',
	'notcorrupt',
	'notcorruption',
	'notcostly',
	'notcounterproductive',
	'notcoupists',
	'notcovetous',
	'notcovetously',
	'notcow',
	'notcoward',
	'notcowardly',
	'notcrabby',
	'notcrackdown',
	'notcrafty',
	'notcramped',
	'notcranky',
	'notcrap',
	'notcrappy',
	'notcrass',
	'notcraven',
	'notcravenly',
	'notcraze',
	'notcrazily',
	'notcraziness',
	'notcrazy',
	'notcredulous',
	'notcreepy',
	'notcrime',
	'notcriminal',
	'notcringe',
	'notcripple',
	'notcrippling',
	'notcrisis',
	'notcritic',
	'notcritical',
	'notcriticism',
	'notcriticisms',
	'notcriticize',
	'notcriticized',
	'notcritics',
	'notcrook',
	'notcrooked',
	'notcross',
	'notcrowded',
	'notcruddy',
	'notcrude',
	'notcruel',
	'notcruelties',
	'notcruelty',
	'notcrumble',
	'notcrummy',
	'notcrumple',
	'notcrush',
	'notcrushed',
	'notcrushing',
	'notcry',
	'notculpable',
	'notcumbersome',
	'notcuplrit',
	'notcurse',
	'notcursed',
	'notcurses',
	'notcursory',
	'notcurt',
	'notcuss',
	'notcut',
	'notcutthroat',
	'notcynical',
	'notcynicism',
	'notdamage',
	'notdamaged',
	'notdamaging',
	'notdamn',
	'notdamnable',
	'notdamnably',
	'notdamnation',
	'notdamned',
	'notdamning',
	'notdanger',
	'notdangerous',
	'notdangerousness',
	'notdangle',
	'notdark',
	'notdarken',
	'notdarkness',
	'notdarn',
	'notdash',
	'notdastard',
	'notdastardly',
	'notdaunt',
	'notdaunting',
	'notdauntingly',
	'notdawdle',
	'notdaze',
	'notdazed',
	'notdead',
	'notdeadbeat',
	'notdeadlock',
	'notdeadly',
	'notdeadweight',
	'notdeaf',
	'notdearth',
	'notdeath',
	'notdebacle',
	'notdebase',
	'notdebasement',
	'notdebaser',
	'notdebatable',
	'notdebate',
	'notdebauch',
	'notdebaucher',
	'notdebauchery',
	'notdebilitate',
	'notdebilitating',
	'notdebility',
	'notdecadence',
	'notdecadent',
	'notdecay',
	'notdecayed',
	'notdeceit',
	'notdeceitful',
	'notdeceitfully',
	'notdeceitfulness',
	'notdeceive',
	'notdeceived',
	'notdeceiver',
	'notdeceivers',
	'notdeceiving',
	'notdeception',
	'notdeceptive',
	'notdeceptively',
	'notdeclaim',
	'notdecline',
	'notdeclining',
	'notdecrease',
	'notdecreasing',
	'notdecrement',
	'notdecrepit',
	'notdecrepitude',
	'notdecry',
	'notdeep',
	'notdeepening',
	'notdefamation',
	'notdefamations',
	'notdefamatory',
	'notdefame',
	'notdefamed',
	'notdefeat',
	'notdefeated',
	'notdefect',
	'notdefective',
	'notdefenseless',
	'notdefensive',
	'notdefiance',
	'notdefiant',
	'notdefiantly',
	'notdeficiency',
	'notdeficient',
	'notdefile',
	'notdefiler',
	'notdeflated',
	'notdeform',
	'notdeformed',
	'notdefrauding',
	'notdefunct',
	'notdefy',
	'notdegenerate',
	'notdegenerately',
	'notdegeneration',
	'notdegradation',
	'notdegrade',
	'notdegraded',
	'notdegrading',
	'notdegradingly',
	'notdehumanization',
	'notdehumanize',
	'notdehumanized',
	'notdeign',
	'notdeject',
	'notdejected',
	'notdejectedly',
	'notdejection',
	'notdelicate',
	'notdelinquency',
	'notdelinquent',
	'notdelirious',
	'notdelirium',
	'notdelude',
	'notdeluded',
	'notdeluge',
	'notdelusion',
	'notdelusional',
	'notdelusions',
	'notdemand',
	'notdemanding',
	'notdemands',
	'notdemean',
	'notdemeaned',
	'notdemeaning',
	'notdemented',
	'notdemise',
	'notdemolish',
	'notdemolisher',
	'notdemon',
	'notdemonic',
	'notdemonize',
	'notdemoralize',
	'notdemoralized',
	'notdemoralizing',
	'notdemoralizingly',
	'notdemotivated',
	'notdenial',
	'notdenigrate',
	'notdenounce',
	'notdenunciate',
	'notdenunciation',
	'notdenunciations',
	'notdeny',
	'notdependent',
	'notdeplete',
	'notdepleted',
	'notdeplorable',
	'notdeplorably',
	'notdeplore',
	'notdeploring',
	'notdeploringly',
	'notdeprave',
	'notdepraved',
	'notdepravedly',
	'notdeprecate',
	'notdepress',
	'notdepressed',
	'notdepressing',
	'notdepressingly',
	'notdepression',
	'notdeprive',
	'notdeprived',
	'notderide',
	'notderision',
	'notderisive',
	'notderisively',
	'notderisiveness',
	'notderogatory',
	'notdesecrate',
	'notdesert',
	'notdeserted',
	'notdesertion',
	'notdesiccate',
	'notdesiccated',
	'notdesolate',
	'notdesolately',
	'notdesolation',
	'notdespair',
	'notdespairing',
	'notdespairingly',
	'notdesperate',
	'notdesperately',
	'notdesperation',
	'notdespicable',
	'notdespicably',
	'notdespise',
	'notdespised',
	'notdespoil',
	'notdespoiler',
	'notdespondence',
	'notdespondency',
	'notdespondent',
	'notdespondently',
	'notdespot',
	'notdespotic',
	'notdespotism',
	'notdestabilisation',
	'notdestitute',
	'notdestitution',
	'notdestroy',
	'notdestroyed',
	'notdestroyer',
	'notdestruction',
	'notdestructive',
	'notdesultory',
	'notdetached',
	'notdeter',
	'notdeteriorate',
	'notdeteriorating',
	'notdeterioration',
	'notdeterrent',
	'notdetest',
	'notdetestable',
	'notdetestably',
	'notdetested',
	'notdetract',
	'notdetraction',
	'notdetriment',
	'notdetrimental',
	'notdevalued',
	'notdevastate',
	'notdevastated',
	'notdevastating',
	'notdevastatingly',
	'notdevastation',
	'notdeviant',
	'notdeviate',
	'notdeviation',
	'notdevil',
	'notdevilish',
	'notdevilishly',
	'notdevilment',
	'notdevilry',
	'notdevious',
	'notdeviously',
	'notdeviousness',
	'notdevoid',
	'notdiabolic',
	'notdiabolical',
	'notdiabolically',
	'notdiagnosed',
	'notdiametrically',
	'notdiatribe',
	'notdiatribes',
	'notdictator',
	'notdictatorial',
	'notdiffer',
	'notdifferent',
	'notdifficult',
	'notdifficulties',
	'notdifficulty',
	'notdiffidence',
	'notdig',
	'notdigress',
	'notdilapidated',
	'notdilemma',
	'notdilly-dally',
	'notdim',
	'notdiminish',
	'notdiminishing',
	'notdin',
	'notdinky',
	'notdire',
	'notdirectionless',
	'notdirely',
	'notdireness',
	'notdirt',
	'notdirty',
	'notdisable',
	'notdisabled',
	'notdisaccord',
	'notdisadvantage',
	'notdisadvantaged',
	'notdisadvantageous',
	'notdisaffect',
	'notdisaffected',
	'notdisaffirm',
	'notdisagree',
	'notdisagreeable',
	'notdisagreeably',
	'notdisagreement',
	'notdisallow',
	'notdisappoint',
	'notdisappointed',
	'notdisappointing',
	'notdisappointingly',
	'notdisappointment',
	'notdisapprobation',
	'notdisapproval',
	'notdisapprove',
	'notdisapproving',
	'notdisarm',
	'notdisarray',
	'notdisaster',
	'notdisastrous',
	'notdisastrously',
	'notdisavow',
	'notdisavowal',
	'notdisbelief',
	'notdisbelieve',
	'notdisbelieved',
	'notdisbeliever',
	'notdiscardable',
	'notdiscarded',
	'notdisclaim',
	'notdiscombobulate',
	'notdiscomfit',
	'notdiscomfititure',
	'notdiscomfort',
	'notdiscompose',
	'notdisconcert',
	'notdisconcerted',
	'notdisconcerting',
	'notdisconcertingly',
	'notdisconnected',
	'notdisconsolate',
	'notdisconsolately',
	'notdisconsolation',
	'notdiscontent',
	'notdiscontented',
	'notdiscontentedly',
	'notdiscontinuity',
	'notdiscord',
	'notdiscordance',
	'notdiscordant',
	'notdiscountenance',
	'notdiscourage',
	'notdiscouraged',
	'notdiscouragement',
	'notdiscouraging',
	'notdiscouragingly',
	'notdiscourteous',
	'notdiscourteously',
	'notdiscredit',
	'notdiscrepant',
	'notdiscriminate',
	'notdiscriminated',
	'notdiscrimination',
	'notdiscriminatory',
	'notdisdain',
	'notdisdainful',
	'notdisdainfully',
	'notdisease',
	'notdiseased',
	'notdisempowered',
	'notdisenchanted',
	'notdisfavor',
	'notdisgrace',
	'notdisgraced',
	'notdisgraceful',
	'notdisgracefully',
	'notdisgruntle',
	'notdisgruntled',
	'notdisgust',
	'notdisgusted',
	'notdisgustedly',
	'notdisgustful',
	'notdisgustfully',
	'notdisgusting',
	'notdisgustingly',
	'notdishearten',
	'notdisheartened',
	'notdisheartening',
	'notdishearteningly',
	'notdishonest',
	'notdishonestly',
	'notdishonesty',
	'notdishonor',
	'notdishonorable',
	'notdishonorablely',
	'notdisillusion',
	'notdisillusioned',
	'notdisinclination',
	'notdisinclined',
	'notdisingenuous',
	'notdisingenuously',
	'notdisintegrate',
	'notdisintegration',
	'notdisinterest',
	'notdisinterested',
	'notdislike',
	'notdisliked',
	'notdislocated',
	'notdisloyal',
	'notdisloyalty',
	'notdismal',
	'notdismally',
	'notdismalness',
	'notdismay',
	'notdismayed',
	'notdismaying',
	'notdismayingly',
	'notdismissive',
	'notdismissively',
	'notdisobedience',
	'notdisobedient',
	'notdisobey',
	'notdisorder',
	'notdisordered',
	'notdisorderly',
	'notdisorganized',
	'notdisorient',
	'notdisoriented',
	'notdisown',
	'notdisowned',
	'notdisparage',
	'notdisparaging',
	'notdisparagingly',
	'notdispensable',
	'notdispirit',
	'notdispirited',
	'notdispiritedly',
	'notdispiriting',
	'notdisplace',
	'notdisplaced',
	'notdisplease',
	'notdispleased',
	'notdispleasing',
	'notdispleasure',
	'notdisposable',
	'notdisproportionate',
	'notdisprove',
	'notdisputable',
	'notdispute',
	'notdisputed',
	'notdisquiet',
	'notdisquieting',
	'notdisquietingly',
	'notdisquietude',
	'notdisregard',
	'notdisregarded',
	'notdisregardful',
	'notdisreputable',
	'notdisrepute',
	'notdisrespect',
	'notdisrespectable',
	'notdisrespectablity',
	'notdisrespected',
	'notdisrespectful',
	'notdisrespectfully',
	'notdisrespectfulness',
	'notdisrespecting',
	'notdisrupt',
	'notdisruption',
	'notdisruptive',
	'notdissatisfaction',
	'notdissatisfactory',
	'notdissatisfied',
	'notdissatisfy',
	'notdissatisfying',
	'notdissemble',
	'notdissembler',
	'notdissension',
	'notdissent',
	'notdissenter',
	'notdissention',
	'notdisservice',
	'notdissidence',
	'notdissident',
	'notdissidents',
	'notdissocial',
	'notdissolute',
	'notdissolution',
	'notdissonance',
	'notdissonant',
	'notdissonantly',
	'notdissuade',
	'notdissuasive',
	'notdistant',
	'notdistaste',
	'notdistasteful',
	'notdistastefully',
	'notdistort',
	'notdistortion',
	'notdistract',
	'notdistracted',
	'notdistracting',
	'notdistraction',
	'notdistraught',
	'notdistraughtly',
	'notdistraughtness',
	'notdistress',
	'notdistressed',
	'notdistressing',
	'notdistressingly',
	'notdistrust',
	'notdistrustful',
	'notdistrusting',
	'notdisturb',
	'notdisturbed',
	'notdisturbed-let',
	'notdisturbing',
	'notdisturbingly',
	'notdisunity',
	'notdisvalue',
	'notdivergent',
	'notdivide',
	'notdivided',
	'notdivision',
	'notdivisive',
	'notdivisively',
	'notdivisiveness',
	'notdivorce',
	'notdivorced',
	'notdizzing',
	'notdizzingly',
	'notdizzy',
	'notdoddering',
	'notdodgey',
	'notdogged',
	'notdoggedly',
	'notdogmatic',
	'notdoldrums',
	'notdominance',
	'notdominate',
	'notdominated',
	'notdomination',
	'notdomineer',
	'notdomineering',
	'notdoom',
	'notdoomed',
	'notdoomsday',
	'notdope',
	'notdoubt',
	'notdoubted',
	'notdoubtful',
	'notdoubtfully',
	'notdoubts',
	'notdown',
	'notdownbeat',
	'notdowncast',
	'notdowner',
	'notdownfall',
	'notdownfallen',
	'notdowngrade',
	'notdownhearted',
	'notdownheartedly',
	'notdownside',
	'notdowntrodden',
	'notdrab',
	'notdraconian',
	'notdraconic',
	'notdragon',
	'notdragons',
	'notdragoon',
	'notdrain',
	'notdrained',
	'notdrama',
	'notdramatic',
	'notdrastic',
	'notdrastically',
	'notdread',
	'notdreadful',
	'notdreadfully',
	'notdreadfulness',
	'notdreary',
	'notdrones',
	'notdroop',
	'notdropped',
	'notdrought',
	'notdrowning',
	'notdrunk',
	'notdrunkard',
	'notdrunken',
	'notdry',
	'notdubious',
	'notdubiously',
	'notdubitable',
	'notdud',
	'notdull',
	'notdullard',
	'notdumb',
	'notdumbfound',
	'notdumbfounded',
	'notdummy',
	'notdump',
	'notdumped',
	'notdunce',
	'notdungeon',
	'notdungeons',
	'notdupe',
	'notduped',
	'notdusty',
	'notdwindle',
	'notdwindling',
	'notdying',
	'notearsplitting',
	'noteccentric',
	'noteccentricity',
	'notedgy',
	'noteffigy',
	'noteffrontery',
	'notego',
	'notegocentric',
	'notegomania',
	'notegotism',
	'notegotistic',
	'notegotistical',
	'notegotistically',
	'notegregious',
	'notegregiously',
	'notejaculate',
	'notelection-rigger',
	'noteliminate',
	'notelimination',
	'notelusive',
	'notemaciated',
	'notemancipated',
	'notemasculate',
	'notemasculated',
	'notembarrass',
	'notembarrassed',
	'notembarrassing',
	'notembarrassingly',
	'notembarrassment',
	'notembattled',
	'notembroil',
	'notembroiled',
	'notembroilment',
	'notemotional',
	'notemotionless',
	'notempathize',
	'notempathy',
	'notemphatic',
	'notemphatically',
	'notemptiness',
	'notempty',
	'notencroach',
	'notencroachment',
	'notencumbered',
	'notendanger',
	'notendangered',
	'notendless',
	'notenemies',
	'notenemy',
	'notenervate',
	'notenfeeble',
	'notenflame',
	'notengulf',
	'notenjoin',
	'notenmity',
	'notenormities',
	'notenormity',
	'notenormous',
	'notenormously',
	'notenrage',
	'notenraged',
	'notenslave',
	'notenslaved',
	'notentangle',
	'notentangled',
	'notentanglement',
	'notentrap',
	'notentrapment',
	'notenvious',
	'notenviously',
	'notenviousness',
	'notenvy',
	'notepidemic',
	'notequivocal',
	'noteradicate',
	'noterase',
	'noterode',
	'noterosion',
	'noterr',
	'noterrant',
	'noterratic',
	'noterratically',
	'noterroneous',
	'noterroneously',
	'noterror',
	'notescapade',
	'noteschew',
	'notesoteric',
	'notestranged',
	'noteternal',
	'notevade',
	'notevaded',
	'notevasion',
	'notevasive',
	'notevicted',
	'notevil',
	'notevildoer',
	'notevils',
	'noteviscerate',
	'noteworthy',
	'notexacerbate',
	'notexacting',
	'notexaggerate',
	'notexaggeration',
	'notexasperate',
	'notexasperating',
	'notexasperatingly',
	'notexasperation',
	'notexcessive',
	'notexcessively',
	'notexclaim',
	'notexclude',
	'notexcluded',
	'notexclusion',
	'notexcoriate',
	'notexcruciating',
	'notexcruciatingly',
	'notexcuse',
	'notexcuses',
	'notexecrate',
	'notexhaust',
	'notexhausted',
	'notexhaustion',
	'notexhort',
	'notexile',
	'notexorbitant',
	'notexorbitantance',
	'notexorbitantly',
	'notexpediencies',
	'notexpedient',
	'notexpel',
	'notexpensive',
	'notexpire',
	'notexplode',
	'notexploit',
	'notexploitation',
	'notexplosive',
	'notexpose',
	'notexposed',
	'notexpropriate',
	'notexpropriation',
	'notexpulse',
	'notexpunge',
	'notexterminate',
	'notextermination',
	'notextinguish',
	'notextort',
	'notextortion',
	'notextraneous',
	'notextravagance',
	'notextravagant',
	'notextravagantly',
	'notextreme',
	'notextremely',
	'notextremism',
	'notextremist',
	'notextremists',
	'notfabricate',
	'notfabrication',
	'notfacetious',
	'notfacetiously',
	'notfading',
	'notfail',
	'notfailful',
	'notfailing',
	'notfailure',
	'notfailures',
	'notfaint',
	'notfainthearted',
	'notfaithless',
	'notfake',
	'notfall',
	'notfallacies',
	'notfallacious',
	'notfallaciously',
	'notfallaciousness',
	'notfallacy',
	'notfallout',
	'notfalse',
	'notfalsehood',
	'notfalsely',
	'notfalsify',
	'notfalter',
	'notfamine',
	'notfamished',
	'notfanatic',
	'notfanatical',
	'notfanatically',
	'notfanaticism',
	'notfanatics',
	'notfanciful',
	'notfar-fetched',
	'notfarce',
	'notfarcical',
	'notfarcical-yet-provocative',
	'notfarcically',
	'notfarfetched',
	'notfascism',
	'notfascist',
	'notfastidious',
	'notfastidiously',
	'notfastuous',
	'notfat',
	'notfatal',
	'notfatalistic',
	'notfatalistically',
	'notfatally',
	'notfateful',
	'notfatefully',
	'notfathomless',
	'notfatigue',
	'notfatty',
	'notfatuity',
	'notfatuous',
	'notfatuously',
	'notfault',
	'notfaulty',
	'notfawningly',
	'notfaze',
	'notfear',
	'notfearful',
	'notfearfully',
	'notfears',
	'notfearsome',
	'notfeckless',
	'notfeeble',
	'notfeeblely',
	'notfeebleminded',
	'notfeign',
	'notfeint',
	'notfell',
	'notfelon',
	'notfelonious',
	'notferocious',
	'notferociously',
	'notferocity',
	'notfetid',
	'notfever',
	'notfeverish',
	'notfiasco',
	'notfiat',
	'notfib',
	'notfibber',
	'notfickle',
	'notfiction',
	'notfictional',
	'notfictitious',
	'notfidget',
	'notfidgety',
	'notfiend',
	'notfiendish',
	'notfierce',
	'notfight',
	'notfigurehead',
	'notfilth',
	'notfilthy',
	'notfinagle',
	'notfissures',
	'notfist',
	'notflabbergast',
	'notflabbergasted',
	'notflagging',
	'notflagrant',
	'notflagrantly',
	'notflak',
	'notflake',
	'notflakey',
	'notflaky',
	'notflash',
	'notflashy',
	'notflat-out',
	'notflaunt',
	'notflaw',
	'notflawed',
	'notflaws',
	'notfleer',
	'notfleeting',
	'notflighty',
	'notflimflam',
	'notflimsy',
	'notflirt',
	'notflirty',
	'notfloored',
	'notflounder',
	'notfloundering',
	'notflout',
	'notfluster',
	'notfoe',
	'notfool',
	'notfoolhardy',
	'notfoolish',
	'notfoolishly',
	'notfoolishness',
	'notforbid',
	'notforbidden',
	'notforbidding',
	'notforce',
	'notforced',
	'notforceful',
	'notforeboding',
	'notforebodingly',
	'notforfeit',
	'notforged',
	'notforget',
	'notforgetful',
	'notforgetfully',
	'notforgetfulness',
	'notforgettable',
	'notforgotten',
	'notforlorn',
	'notforlornly',
	'notformidable',
	'notforsake',
	'notforsaken',
	'notforswear',
	'notfoul',
	'notfoully',
	'notfoulness',
	'notfractious',
	'notfractiously',
	'notfracture',
	'notfragile',
	'notfragmented',
	'notfrail',
	'notfrantic',
	'notfrantically',
	'notfranticly',
	'notfraternize',
	'notfraud',
	'notfraudulent',
	'notfraught',
	'notfrazzle',
	'notfrazzled',
	'notfreak',
	'notfreakish',
	'notfreakishly',
	'notfrenetic',
	'notfrenetically',
	'notfrenzied',
	'notfrenzy',
	'notfret',
	'notfretful',
	'notfriction',
	'notfrictions',
	'notfriggin',
	'notfright',
	'notfrighten',
	'notfrightened',
	'notfrightening',
	'notfrighteningly',
	'notfrightful',
	'notfrightfully',
	'notfrigid',
	'notfrivolous',
	'notfrown',
	'notfrozen',
	'notfruitless',
	'notfruitlessly',
	'notfrustrate',
	'notfrustrated',
	'notfrustrating',
	'notfrustratingly',
	'notfrustration',
	'notfudge',
	'notfugitive',
	'notfull-blown',
	'notfulminate',
	'notfumble',
	'notfume',
	'notfundamentalism',
	'notfurious',
	'notfuriously',
	'notfuror',
	'notfury',
	'notfuss',
	'notfussy',
	'notfustigate',
	'notfusty',
	'notfutile',
	'notfutilely',
	'notfutility',
	'notfuzzy',
	'notgabble',
	'notgaff',
	'notgaffe',
	'notgaga',
	'notgaggle',
	'notgainsay',
	'notgainsayer',
	'notgall',
	'notgalling',
	'notgallingly',
	'notgamble',
	'notgame',
	'notgape',
	'notgarbage',
	'notgarish',
	'notgasp',
	'notgauche',
	'notgaudy',
	'notgawk',
	'notgawky',
	'notgeezer',
	'notgenocide',
	'notget-rich',
	'notghastly',
	'notghetto',
	'notgibber',
	'notgibberish',
	'notgibe',
	'notglare',
	'notglaring',
	'notglaringly',
	'notglib',
	'notglibly',
	'notglitch',
	'notgloatingly',
	'notgloom',
	'notgloomy',
	'notgloss',
	'notglower',
	'notglum',
	'notglut',
	'notgnawing',
	'notgoad',
	'notgoading',
	'notgod-awful',
	'notgoddam',
	'notgoddamn',
	'notgoof',
	'notgossip',
	'notgothic',
	'notgraceless',
	'notgracelessly',
	'notgraft',
	'notgrandiose',
	'notgrapple',
	'notgrate',
	'notgrating',
	'notgratuitous',
	'notgratuitously',
	'notgrave',
	'notgravely',
	'notgreed',
	'notgreedy',
	'notgrey',
	'notgrief',
	'notgrievance',
	'notgrievances',
	'notgrieve',
	'notgrieving',
	'notgrievous',
	'notgrievously',
	'notgrill',
	'notgrim',
	'notgrimace',
	'notgrind',
	'notgripe',
	'notgrisly',
	'notgritty',
	'notgross',
	'notgrossly',
	'notgrotesque',
	'notgrouch',
	'notgrouchy',
	'notgrounded',
	'notgroundless',
	'notgrouse',
	'notgrowl',
	'notgrudge',
	'notgrudges',
	'notgrudging',
	'notgrudgingly',
	'notgruesome',
	'notgruesomely',
	'notgruff',
	'notgrumble',
	'notgrumpy',
	'notguile',
	'notguilt',
	'notguiltily',
	'notguilty',
	'notgullible',
	'nothaggard',
	'nothaggle',
	'nothalfhearted',
	'nothalfheartedly',
	'nothallucinate',
	'nothallucination',
	'nothamper',
	'nothamstring',
	'nothamstrung',
	'nothandicapped',
	'nothaphazard',
	'nothapless',
	'notharangue',
	'notharass',
	'notharassment',
	'notharboring',
	'notharbors',
	'nothard',
	'nothard-hit',
	'nothard-line',
	'nothard-liner',
	'nothardball',
	'notharden',
	'nothardened',
	'nothardheaded',
	'nothardhearted',
	'nothardliner',
	'nothardliners',
	'nothardship',
	'nothardships',
	'notharm',
	'notharmful',
	'notharms',
	'notharpy',
	'notharridan',
	'notharried',
	'notharrow',
	'notharsh',
	'notharshly',
	'nothassle',
	'nothaste',
	'nothasty',
	'nothate',
	'nothateful',
	'nothatefully',
	'nothatefulness',
	'nothater',
	'nothatred',
	'nothaughtily',
	'nothaughty',
	'nothaunt',
	'nothaunting',
	'nothavoc',
	'nothawkish',
	'nothazard',
	'nothazardous',
	'nothazy',
	'notheadache',
	'notheadaches',
	'notheartbreak',
	'notheartbreaker',
	'notheartbreaking',
	'notheartbreakingly',
	'notheartless',
	'notheartrending',
	'notheathen',
	'notheavily',
	'notheavy-handed',
	'notheavyhearted',
	'notheck',
	'notheckle',
	'nothectic',
	'nothedge',
	'nothedonistic',
	'notheedless',
	'nothegemonism',
	'nothegemonistic',
	'nothegemony',
	'notheinous',
	'nothell',
	'nothell-bent',
	'nothellion',
	'nothelpless',
	'nothelplessly',
	'nothelplessness',
	'notheresy',
	'notheretic',
	'notheretical',
	'nothesitant',
	'nothideous',
	'nothideously',
	'nothideousness',
	'nothinder',
	'nothindrance',
	'nothoard',
	'nothoax',
	'nothobble',
	'nothole',
	'nothollow',
	'nothoodwink',
	'nothopeless',
	'nothopelessly',
	'nothopelessness',
	'nothorde',
	'nothorrendous',
	'nothorrendously',
	'nothorrible',
	'nothorribly',
	'nothorrid',
	'nothorrific',
	'nothorrifically',
	'nothorrify',
	'nothorrifying',
	'nothorrifyingly',
	'nothorror',
	'nothorrors',
	'nothostage',
	'nothostile',
	'nothostilities',
	'nothostility',
	'nothotbeds',
	'nothothead',
	'nothotheaded',
	'nothothouse',
	'nothubris',
	'nothuckster',
	'nothumbling',
	'nothumiliate',
	'nothumiliating',
	'nothumiliation',
	'nothunger',
	'nothungry',
	'nothurt',
	'nothurtful',
	'nothustler',
	'nothypocrisy',
	'nothypocrite',
	'nothypocrites',
	'nothypocritical',
	'nothypocritically',
	'nothysteria',
	'nothysteric',
	'nothysterical',
	'nothysterically',
	'nothysterics',
	'noticeable',
	'noticy',
	'notidiocies',
	'notidiocy',
	'notidiot',
	'notidiotic',
	'notidiotically',
	'notidiots',
	'notidle',
	'notignoble',
	'notignominious',
	'notignominiously',
	'notignominy',
	'notignorance',
	'notignorant',
	'notignore',
	'notignored',
	'notill',
	'notill-advised',
	'notill-conceived',
	'notill-fated',
	'notill-favored',
	'notill-mannered',
	'notill-natured',
	'notill-sorted',
	'notill-tempered',
	'notill-treated',
	'notill-treatment',
	'notill-usage',
	'notill-used',
	'notillegal',
	'notillegally',
	'notillegitimate',
	'notillicit',
	'notilliquid',
	'notilliterate',
	'notillness',
	'notillogic',
	'notillogical',
	'notillogically',
	'notillusion',
	'notillusions',
	'notillusory',
	'notimaginary',
	'notimbalance',
	'notimbalanced',
	'notimbecile',
	'notimbroglio',
	'notimmaterial',
	'notimmature',
	'notimminence',
	'notimminent',
	'notimminently',
	'notimmobilized',
	'notimmoderate',
	'notimmoderately',
	'notimmodest',
	'notimmoral',
	'notimmorality',
	'notimmorally',
	'notimmovable',
	'notimpair',
	'notimpaired',
	'notimpasse',
	'notimpassive',
	'notimpatience',
	'notimpatient',
	'notimpatiently',
	'notimpeach',
	'notimpedance',
	'notimpede',
	'notimpediment',
	'notimpending',
	'notimpenitent',
	'notimperfect',
	'notimperfectly',
	'notimperialist',
	'notimperil',
	'notimperious',
	'notimperiously',
	'notimpermissible',
	'notimpersonal',
	'notimpertinent',
	'notimpetuous',
	'notimpetuously',
	'notimpiety',
	'notimpinge',
	'notimpious',
	'notimplacable',
	'notimplausible',
	'notimplausibly',
	'notimplicate',
	'notimplication',
	'notimplode',
	'notimplore',
	'notimploring',
	'notimploringly',
	'notimpolite',
	'notimpolitely',
	'notimpolitic',
	'notimportunate',
	'notimportune',
	'notimpose',
	'notimposers',
	'notimposing',
	'notimposition',
	'notimpossible',
	'notimpossiblity',
	'notimpossibly',
	'notimpotent',
	'notimpoverish',
	'notimpoverished',
	'notimpractical',
	'notimprecate',
	'notimprecise',
	'notimprecisely',
	'notimprecision',
	'notimprison',
	'notimprisoned',
	'notimprisonment',
	'notimprobability',
	'notimprobable',
	'notimprobably',
	'notimproper',
	'notimproperly',
	'notimpropriety',
	'notimprudence',
	'notimprudent',
	'notimpudence',
	'notimpudent',
	'notimpudently',
	'notimpugn',
	'notimpulsive',
	'notimpulsively',
	'notimpunity',
	'notimpure',
	'notimpurity',
	'notin',
	'notinability',
	'notinaccessible',
	'notinaccuracies',
	'notinaccuracy',
	'notinaccurate',
	'notinaccurately',
	'notinaction',
	'notinactive',
	'notinadequacy',
	'notinadequate',
	'notinadequately',
	'notinadverent',
	'notinadverently',
	'notinadvisable',
	'notinadvisably',
	'notinane',
	'notinanely',
	'notinappropriate',
	'notinappropriately',
	'notinapt',
	'notinaptitude',
	'notinarticulate',
	'notinattentive',
	'notincapable',
	'notincapably',
	'notincautious',
	'notincendiary',
	'notincense',
	'notincessant',
	'notincessantly',
	'notincite',
	'notincitement',
	'notincivility',
	'notinclement',
	'notincognizant',
	'notincoherence',
	'notincoherent',
	'notincoherently',
	'notincommensurate',
	'notincommunicative',
	'notincomparable',
	'notincomparably',
	'notincompatibility',
	'notincompatible',
	'notincompetence',
	'notincompetent',
	'notincompetently',
	'notincomplete',
	'notincompliant',
	'notincomprehensible',
	'notincomprehension',
	'notinconceivable',
	'notinconceivably',
	'notinconclusive',
	'notincongruous',
	'notincongruously',
	'notinconsequent',
	'notinconsequential',
	'notinconsequentially',
	'notinconsequently',
	'notinconsiderate',
	'notinconsiderately',
	'notinconsistence',
	'notinconsistencies',
	'notinconsistency',
	'notinconsistent',
	'notinconsolable',
	'notinconsolably',
	'notinconstant',
	'notinconvenience',
	'notinconvenient',
	'notinconveniently',
	'notincorrect',
	'notincorrectly',
	'notincorrigible',
	'notincorrigibly',
	'notincredulous',
	'notincredulously',
	'notinculcate',
	'notindecency',
	'notindecent',
	'notindecently',
	'notindecision',
	'notindecisive',
	'notindecisively',
	'notindecorum',
	'notindefensible',
	'notindefinite',
	'notindefinitely',
	'notindelicate',
	'notindeterminable',
	'notindeterminably',
	'notindeterminate',
	'notindifference',
	'notindifferent',
	'notindigent',
	'notindignant',
	'notindignantly',
	'notindignation',
	'notindignity',
	'notindiscernible',
	'notindiscreet',
	'notindiscreetly',
	'notindiscretion',
	'notindiscriminate',
	'notindiscriminately',
	'notindiscriminating',
	'notindisposed',
	'notindistinct',
	'notindistinctive',
	'notindoctrinate',
	'notindoctrinated',
	'notindoctrination',
	'notindolent',
	'notindulge',
	'notinebriated',
	'notineffective',
	'notineffectively',
	'notineffectiveness',
	'notineffectual',
	'notineffectually',
	'notineffectualness',
	'notinefficacious',
	'notinefficacy',
	'notinefficiency',
	'notinefficient',
	'notinefficiently',
	'notinelegance',
	'notinelegant',
	'notineligible',
	'notineloquent',
	'notineloquently',
	'notinept',
	'notineptitude',
	'notineptly',
	'notinequalities',
	'notinequality',
	'notinequitable',
	'notinequitably',
	'notinequities',
	'notinertia',
	'notinescapable',
	'notinescapably',
	'notinessential',
	'notinevitable',
	'notinevitably',
	'notinexact',
	'notinexcusable',
	'notinexcusably',
	'notinexorable',
	'notinexorably',
	'notinexperience',
	'notinexperienced',
	'notinexpert',
	'notinexpertly',
	'notinexpiable',
	'notinexplainable',
	'notinexplicable',
	'notinextricable',
	'notinextricably',
	'notinfamous',
	'notinfamously',
	'notinfamy',
	'notinfatuated',
	'notinfected',
	'notinferior',
	'notinferiority',
	'notinfernal',
	'notinfest',
	'notinfested',
	'notinfidel',
	'notinfidels',
	'notinfiltrator',
	'notinfiltrators',
	'notinfirm',
	'notinflame',
	'notinflammatory',
	'notinflated',
	'notinflationary',
	'notinflexible',
	'notinflict',
	'notinfraction',
	'notinfringe',
	'notinfringement',
	'notinfringements',
	'notinfuriate',
	'notinfuriated',
	'notinfuriating',
	'notinfuriatingly',
	'notinglorious',
	'notingrate',
	'notingratitude',
	'notinhibit',
	'notinhibited',
	'notinhibition',
	'notinhospitable',
	'notinhospitality',
	'notinhuman',
	'notinhumane',
	'notinhumanity',
	'notinimical',
	'notinimically',
	'notiniquitous',
	'notiniquity',
	'notinjudicious',
	'notinjure',
	'notinjured',
	'notinjurious',
	'notinjury',
	'notinjustice',
	'notinjusticed',
	'notinjustices',
	'notinnuendo',
	'notinopportune',
	'notinordinate',
	'notinordinately',
	'notinsane',
	'notinsanely',
	'notinsanity',
	'notinsatiable',
	'notinsecure',
	'notinsecurity',
	'notinsensible',
	'notinsensitive',
	'notinsensitively',
	'notinsensitivity',
	'notinsidious',
	'notinsidiously',
	'notinsignificance',
	'notinsignificant',
	'notinsignificantly',
	'notinsincere',
	'notinsincerely',
	'notinsincerity',
	'notinsinuate',
	'notinsinuating',
	'notinsinuation',
	'notinsociable',
	'notinsolence',
	'notinsolent',
	'notinsolently',
	'notinsolvent',
	'notinsouciance',
	'notinstability',
	'notinstable',
	'notinstigate',
	'notinstigator',
	'notinstigators',
	'notinsubordinate',
	'notinsubstantial',
	'notinsubstantially',
	'notinsufferable',
	'notinsufferably',
	'notinsufficiency',
	'notinsufficient',
	'notinsufficiently',
	'notinsular',
	'notinsult',
	'notinsulted',
	'notinsulting',
	'notinsultingly',
	'notinsupportable',
	'notinsupportably',
	'notinsurmountable',
	'notinsurmountably',
	'notinsurrection',
	'notintense',
	'notinterfere',
	'notinterference',
	'notintermittent',
	'notinterrogated',
	'notinterrupt',
	'notinterrupted',
	'notinterruption',
	'notintimidate',
	'notintimidated',
	'notintimidating',
	'notintimidatingly',
	'notintimidation',
	'notintolerable',
	'notintolerablely',
	'notintolerance',
	'notintolerant',
	'notintoxicate',
	'notintoxicated',
	'notintractable',
	'notintransigence',
	'notintransigent',
	'notintrude',
	'notintrusion',
	'notintrusive',
	'notinundate',
	'notinundated',
	'notinvader',
	'notinvalid',
	'notinvalidate',
	'notinvalidated',
	'notinvalidity',
	'notinvasive',
	'notinvective',
	'notinveigle',
	'notinvidious',
	'notinvidiously',
	'notinvidiousness',
	'notinvisible',
	'notinvoluntarily',
	'notinvoluntary',
	'notirate',
	'notirately',
	'notire',
	'notirk',
	'notirksome',
	'notironic',
	'notironies',
	'notirony',
	'notirrational',
	'notirrationality',
	'notirrationally',
	'notirreconcilable',
	'notirredeemable',
	'notirredeemably',
	'notirreformable',
	'notirregular',
	'notirregularity',
	'notirrelevance',
	'notirrelevant',
	'notirreparable',
	'notirreplacible',
	'notirrepressible',
	'notirresolute',
	'notirresolvable',
	'notirresponsible',
	'notirresponsibly',
	'notirretrievable',
	'notirreverence',
	'notirreverent',
	'notirreverently',
	'notirreversible',
	'notirritable',
	'notirritably',
	'notirritant',
	'notirritate',
	'notirritated',
	'notirritating',
	'notirritation',
	'notisolate',
	'notisolated',
	'notisolation',
	'notitch',
	'notjabber',
	'notjaded',
	'notjam',
	'notjar',
	'notjaundiced',
	'notjealous',
	'notjealously',
	'notjealousness',
	'notjealousy',
	'notjeer',
	'notjeering',
	'notjeeringly',
	'notjeers',
	'notjeopardize',
	'notjeopardy',
	'notjerk',
	'notjittery',
	'notjobless',
	'notjoker',
	'notjolt',
	'notjoyless',
	'notjudged',
	'notjumpy',
	'notjunk',
	'notjunky',
	'notjuvenile',
	'notkaput',
	'notkick',
	'notkill',
	'notkiller',
	'notkilljoy',
	'notknave',
	'notknife',
	'notknock',
	'notkook',
	'notkooky',
	'notlabeled',
	'notlack',
	'notlackadaisical',
	'notlackey',
	'notlackeys',
	'notlacking',
	'notlackluster',
	'notlaconic',
	'notlag',
	'notlambast',
	'notlambaste',
	'notlame',
	'notlame-duck',
	'notlament',
	'notlamentable',
	'notlamentably',
	'notlanguid',
	'notlanguish',
	'notlanguor',
	'notlanguorous',
	'notlanguorously',
	'notlanky',
	'notlapse',
	'notlascivious',
	'notlast-ditch',
	'notlaugh',
	'notlaughable',
	'notlaughably',
	'notlaughingstock',
	'notlaughter',
	'notlawbreaker',
	'notlawbreaking',
	'notlawless',
	'notlawlessness',
	'notlax',
	'notlazy',
	'notleak',
	'notleakage',
	'notleaky',
	'notlech',
	'notlecher',
	'notlecherous',
	'notlechery',
	'notlecture',
	'notleech',
	'notleer',
	'notleery',
	'notleft-leaning',
	'notless-developed',
	'notlessen',
	'notlesser',
	'notlesser-known',
	'notletch',
	'notlethal',
	'notlethargic',
	'notlethargy',
	'notlewd',
	'notlewdly',
	'notlewdness',
	'notliability',
	'notliable',
	'notliar',
	'notliars',
	'notlicentious',
	'notlicentiously',
	'notlicentiousness',
	'notlie',
	'notlier',
	'notlies',
	'notlife-threatening',
	'notlifeless',
	'notlimit',
	'notlimitation',
	'notlimited',
	'notlimp',
	'notlistless',
	'notlitigious',
	'notlittle',
	'notlittle-known',
	'notlivid',
	'notlividly',
	'notloath',
	'notloathe',
	'notloathing',
	'notloathly',
	'notloathsome',
	'notloathsomely',
	'notlone',
	'notloneliness',
	'notlonely',
	'notlonesome',
	'notlong',
	'notlonging',
	'notlongingly',
	'notloophole',
	'notloopholes',
	'notloot',
	'notlorn',
	'notlose',
	'notloser',
	'notlosing',
	'notloss',
	'notlost',
	'notlousy',
	'notloveless',
	'notlovelorn',
	'notlow',
	'notlow-rated',
	'notlowly',
	'notludicrous',
	'notludicrously',
	'notlugubrious',
	'notlukewarm',
	'notlull',
	'notlunatic',
	'notlunaticism',
	'notlurch',
	'notlure',
	'notlurid',
	'notlurk',
	'notlurking',
	'notlying',
	'notmacabre',
	'notmad',
	'notmadden',
	'notmaddening',
	'notmaddeningly',
	'notmadder',
	'notmadly',
	'notmadman',
	'notmadness',
	'notmaladjusted',
	'notmaladjustment',
	'notmalady',
	'notmalaise',
	'notmalcontent',
	'notmalcontented',
	'notmaledict',
	'notmalevolence',
	'notmalevolent',
	'notmalevolently',
	'notmalice',
	'notmalicious',
	'notmaliciously',
	'notmaliciousness',
	'notmalign',
	'notmalignant',
	'notmalodorous',
	'notmaltreatment',
	'notmaneuver',
	'notmangle',
	'notmania',
	'notmaniac',
	'notmaniacal',
	'notmanic',
	'notmanipulate',
	'notmanipulated',
	'notmanipulation',
	'notmanipulative',
	'notmanipulators',
	'notmar',
	'notmarginal',
	'notmarginally',
	'notmartyrdom',
	'notmartyrdom-seeking',
	'notmasochistic',
	'notmassacre',
	'notmassacres',
	'notmaverick',
	'notmawkish',
	'notmawkishly',
	'notmawkishness',
	'notmaxi-devaluation',
	'notmeager',
	'notmeaningless',
	'notmeanness',
	'notmeddle',
	'notmeddlesome',
	'notmediocrity',
	'notmelancholy',
	'notmelodramatic',
	'notmelodramatically',
	'notmenace',
	'notmenacing',
	'notmenacingly',
	'notmendacious',
	'notmendacity',
	'notmenial',
	'notmerciless',
	'notmercilessly',
	'notmere',
	'notmess',
	'notmessy',
	'notmidget',
	'notmiff',
	'notmiffed',
	'notmilitancy',
	'notmind',
	'notmindless',
	'notmindlessly',
	'notmirage',
	'notmire',
	'notmisapprehend',
	'notmisbecome',
	'notmisbecoming',
	'notmisbegotten',
	'notmisbehave',
	'notmisbehavior',
	'notmiscalculate',
	'notmiscalculation',
	'notmischief',
	'notmischievous',
	'notmischievously',
	'notmisconception',
	'notmisconceptions',
	'notmiscreant',
	'notmiscreants',
	'notmisdirection',
	'notmiser',
	'notmiserable',
	'notmiserableness',
	'notmiserably',
	'notmiseries',
	'notmiserly',
	'notmisery',
	'notmisfit',
	'notmisfortune',
	'notmisgiving',
	'notmisgivings',
	'notmisguidance',
	'notmisguide',
	'notmisguided',
	'notmishandle',
	'notmishap',
	'notmisinform',
	'notmisinformed',
	'notmisinterpret',
	'notmisjudge',
	'notmisjudgment',
	'notmislead',
	'notmisleading',
	'notmisleadingly',
	'notmisled',
	'notmislike',
	'notmismanage',
	'notmisread',
	'notmisreading',
	'notmisrepresent',
	'notmisrepresentation',
	'notmiss',
	'notmisstatement',
	'notmistake',
	'notmistaken',
	'notmistakenly',
	'notmistakes',
	'notmistified',
	'notmistreated',
	'notmistrust',
	'notmistrusted',
	'notmistrustful',
	'notmistrustfully',
	'notmisunderstand',
	'notmisunderstanding',
	'notmisunderstandings',
	'notmisunderstood',
	'notmisuse',
	'notmoan',
	'notmock',
	'notmocked',
	'notmockeries',
	'notmockery',
	'notmocking',
	'notmockingly',
	'notmolest',
	'notmolestation',
	'notmolested',
	'notmonotonous',
	'notmonotony',
	'notmonster',
	'notmonstrosities',
	'notmonstrosity',
	'notmonstrous',
	'notmonstrously',
	'notmoody',
	'notmoon',
	'notmoot',
	'notmope',
	'notmorbid',
	'notmorbidly',
	'notmordant',
	'notmordantly',
	'notmoribund',
	'notmortification',
	'notmortified',
	'notmortify',
	'notmortifying',
	'notmotionless',
	'notmotley',
	'notmourn',
	'notmourner',
	'notmournful',
	'notmournfully',
	'notmuddle',
	'notmuddy',
	'notmudslinger',
	'notmudslinging',
	'notmulish',
	'notmulti-polarization',
	'notmundane',
	'notmurder',
	'notmurderous',
	'notmurderously',
	'notmurky',
	'notmuscle-flexing',
	'notmysterious',
	'notmysteriously',
	'notmystery',
	'notmystify',
	'notmyth',
	'notnag',
	'notnagged',
	'notnagging',
	'notnaive',
	'notnaively',
	'notnarrow',
	'notnarrower',
	'notnastily',
	'notnastiness',
	'notnasty',
	'notnationalism',
	'notnaughty',
	'notnauseate',
	'notnauseating',
	'notnauseatingly',
	'notnebulous',
	'notnebulously',
	'notneedless',
	'notneedlessly',
	'notneedy',
	'notnefarious',
	'notnefariously',
	'notnegate',
	'notnegation',
	'notnegative',
	'notneglect',
	'notneglected',
	'notnegligence',
	'notnegligent',
	'notnegligible',
	'notnemesis',
	'notnervous',
	'notnervously',
	'notnervousness',
	'notnettle',
	'notnettlesome',
	'notneurotic',
	'notneurotically',
	'notniggle',
	'notnightmare',
	'notnightmarish',
	'notnightmarishly',
	'notnix',
	'notnoisy',
	'notnon-confidence',
	'notnonconforming',
	'notnonexistent',
	'notnonsense',
	'notnosey',
	'notnotorious',
	'notnotoriously',
	'notnuisance',
	'notnumb',
	'notnuts',
	'notnutty',
	'notobese',
	'notobject',
	'notobjectified',
	'notobjection',
	'notobjectionable',
	'notobjections',
	'notobligated',
	'notoblique',
	'notobliterate',
	'notobliterated',
	'notoblivious',
	'notobnoxious',
	'notobnoxiously',
	'notobscene',
	'notobscenely',
	'notobscenity',
	'notobscure',
	'notobscurity',
	'notobsess',
	'notobsessed',
	'notobsession',
	'notobsessions',
	'notobsessive',
	'notobsessively',
	'notobsessiveness',
	'notobsolete',
	'notobstacle',
	'notobstinate',
	'notobstinately',
	'notobstruct',
	'notobstructed',
	'notobstruction',
	'notobtrusive',
	'notobtuse',
	'notodd',
	'notodder',
	'notoddest',
	'notoddities',
	'notoddity',
	'notoddly',
	'notoffence',
	'notoffend',
	'notoffended',
	'notoffending',
	'notoffenses',
	'notoffensive',
	'notoffensively',
	'notoffensiveness',
	'notofficious',
	'notominous',
	'notominously',
	'notomission',
	'notomit',
	'notone-side',
	'notone-sided',
	'notonerous',
	'notonerously',
	'notonslaught',
	'notopinionated',
	'notopponent',
	'notopportunistic',
	'notoppose',
	'notopposed',
	'notopposition',
	'notoppositions',
	'notoppress',
	'notoppressed',
	'notoppression',
	'notoppressive',
	'notoppressively',
	'notoppressiveness',
	'notoppressors',
	'notordeal',
	'notorphan',
	'notostracize',
	'notoutbreak',
	'notoutburst',
	'notoutbursts',
	'notoutcast',
	'notoutcry',
	'notoutdated',
	'notoutlaw',
	'notoutmoded',
	'notoutrage',
	'notoutraged',
	'notoutrageous',
	'notoutrageously',
	'notoutrageousness',
	'notoutrages',
	'notoutsider',
	'notover-acted',
	'notover-valuation',
	'notoveract',
	'notoveracted',
	'notoverawe',
	'notoverbalance',
	'notoverbalanced',
	'notoverbearing',
	'notoverbearingly',
	'notoverblown',
	'notovercome',
	'notoverdo',
	'notoverdone',
	'notoverdue',
	'notoveremphasize',
	'notoverkill',
	'notoverlook',
	'notoverplay',
	'notoverpower',
	'notoverreach',
	'notoverrun',
	'notovershadow',
	'notoversight',
	'notoversimplification',
	'notoversimplified',
	'notoversimplify',
	'notoversized',
	'notoverstate',
	'notoverstatement',
	'notoverstatements',
	'notovertaxed',
	'notoverthrow',
	'notoverturn',
	'notoverwhelm',
	'notoverwhelmed',
	'notoverwhelming',
	'notoverwhelmingly',
	'notoverworked',
	'notoverzealous',
	'notoverzealously',
	'notpain',
	'notpainful',
	'notpainfully',
	'notpains',
	'notpale',
	'notpaltry',
	'notpan',
	'notpandemonium',
	'notpanic',
	'notpanicky',
	'notparadoxical',
	'notparadoxically',
	'notparalize',
	'notparalyzed',
	'notparanoia',
	'notparanoid',
	'notparasite',
	'notpariah',
	'notparody',
	'notpartiality',
	'notpartisan',
	'notpartisans',
	'notpasse',
	'notpassive',
	'notpassiveness',
	'notpathetic',
	'notpathetically',
	'notpatronize',
	'notpaucity',
	'notpauper',
	'notpaupers',
	'notpayback',
	'notpeculiar',
	'notpeculiarly',
	'notpedantic',
	'notpedestrian',
	'notpeeve',
	'notpeeved',
	'notpeevish',
	'notpeevishly',
	'notpenalize',
	'notpenalty',
	'notperfidious',
	'notperfidity',
	'notperfunctory',
	'notperil',
	'notperilous',
	'notperilously',
	'notperipheral',
	'notperish',
	'notpernicious',
	'notperplex',
	'notperplexed',
	'notperplexing',
	'notperplexity',
	'notpersecute',
	'notpersecution',
	'notpertinacious',
	'notpertinaciously',
	'notpertinacity',
	'notperturb',
	'notperturbed',
	'notperverse',
	'notperversely',
	'notperversion',
	'notperversity',
	'notpervert',
	'notperverted',
	'notpessimism',
	'notpessimistic',
	'notpessimistically',
	'notpest',
	'notpestilent',
	'notpetrified',
	'notpetrify',
	'notpettifog',
	'notpetty',
	'notphobia',
	'notphobic',
	'notphony',
	'notpicky',
	'notpillage',
	'notpillory',
	'notpinch',
	'notpine',
	'notpique',
	'notpissed',
	'notpitiable',
	'notpitiful',
	'notpitifully',
	'notpitiless',
	'notpitilessly',
	'notpittance',
	'notpity',
	'notplagiarize',
	'notplague',
	'notplain',
	'notplaything',
	'notplea',
	'notplead',
	'notpleading',
	'notpleadingly',
	'notpleas',
	'notplebeian',
	'notplight',
	'notplot',
	'notplotters',
	'notploy',
	'notplunder',
	'notplunderer',
	'notpointless',
	'notpointlessly',
	'notpoison',
	'notpoisonous',
	'notpoisonously',
	'notpolarisation',
	'notpolemize',
	'notpollute',
	'notpolluter',
	'notpolluters',
	'notpolution',
	'notpompous',
	'notpooped',
	'notpoor',
	'notpoorly',
	'notposturing',
	'notpout',
	'notpoverty',
	'notpowerless',
	'notprate',
	'notpratfall',
	'notprattle',
	'notprecarious',
	'notprecariously',
	'notprecipitate',
	'notprecipitous',
	'notpredatory',
	'notpredicament',
	'notpredjudiced',
	'notprejudge',
	'notprejudice',
	'notprejudicial',
	'notpremeditated',
	'notpreoccupied',
	'notpreoccupy',
	'notpreposterous',
	'notpreposterously',
	'notpressing',
	'notpressured',
	'notpresume',
	'notpresumptuous',
	'notpresumptuously',
	'notpretence',
	'notpretend',
	'notpretense',
	'notpretentious',
	'notpretentiously',
	'notprevaricate',
	'notpricey',
	'notprickle',
	'notprickles',
	'notprideful',
	'notprimitive',
	'notprison',
	'notprisoner',
	'notproblem',
	'notproblematic',
	'notproblems',
	'notprocrastinate',
	'notprocrastination',
	'notprofane',
	'notprofanity',
	'notprohibit',
	'notprohibitive',
	'notprohibitively',
	'notpropaganda',
	'notpropagandize',
	'notproscription',
	'notproscriptions',
	'notprosecute',
	'notprosecuted',
	'notprotest',
	'notprotests',
	'notprotracted',
	'notprovocation',
	'notprovocative',
	'notprovoke',
	'notprovoked',
	'notpry',
	'notpsychopathic',
	'notpsychotic',
	'notpugnacious',
	'notpugnaciously',
	'notpugnacity',
	'notpunch',
	'notpunish',
	'notpunishable',
	'notpunished',
	'notpunitive',
	'notpuny',
	'notpuppet',
	'notpuppets',
	'notpushed',
	'notpuzzle',
	'notpuzzled',
	'notpuzzlement',
	'notpuzzling',
	'notquack',
	'notqualms',
	'notquandary',
	'notquarrel',
	'notquarrellous',
	'notquarrellously',
	'notquarrels',
	'notquarrelsome',
	'notquash',
	'notqueer',
	'notquestionable',
	'notquestioned',
	'notquibble',
	'notquiet',
	'notquit',
	'notquitter',
	'notracism',
	'notracist',
	'notracists',
	'notrack',
	'notradical',
	'notradicalization',
	'notradically',
	'notradicals',
	'notrage',
	'notragged',
	'notraging',
	'notrail',
	'notrampage',
	'notrampant',
	'notramshackle',
	'notrancor',
	'notrank',
	'notrankle',
	'notrant',
	'notranting',
	'notrantingly',
	'notraped',
	'notrascal',
	'notrash',
	'notrat',
	'notrationalize',
	'notrattle',
	'notrattled',
	'notravage',
	'notraving',
	'notreactionary',
	'notrebellious',
	'notrebuff',
	'notrebuke',
	'notrecalcitrant',
	'notrecant',
	'notrecession',
	'notrecessionary',
	'notreckless',
	'notrecklessly',
	'notrecklessness',
	'notrecoil',
	'notrecourses',
	'notredundancy',
	'notredundant',
	'notrefusal',
	'notrefuse',
	'notrefutation',
	'notrefute',
	'notregress',
	'notregression',
	'notregressive',
	'notregret',
	'notregretful',
	'notregretfully',
	'notregrettable',
	'notregrettably',
	'notreject',
	'notrejected',
	'notrejection',
	'notrelapse',
	'notrelentless',
	'notrelentlessly',
	'notrelentlessness',
	'notreluctance',
	'notreluctant',
	'notreluctantly',
	'notremorse',
	'notremorseful',
	'notremorsefully',
	'notremorseless',
	'notremorselessly',
	'notremorselessness',
	'notrenounce',
	'notrenunciation',
	'notrepel',
	'notrepetitive',
	'notreprehensible',
	'notreprehensibly',
	'notreprehension',
	'notreprehensive',
	'notrepress',
	'notrepression',
	'notrepressive',
	'notreprimand',
	'notreproach',
	'notreproachful',
	'notreprove',
	'notreprovingly',
	'notrepudiate',
	'notrepudiation',
	'notrepugn',
	'notrepugnance',
	'notrepugnant',
	'notrepugnantly',
	'notrepulse',
	'notrepulsed',
	'notrepulsing',
	'notrepulsive',
	'notrepulsively',
	'notrepulsiveness',
	'notresent',
	'notresented',
	'notresentful',
	'notresentment',
	'notreservations',
	'notresignation',
	'notresigned',
	'notresistance',
	'notresistant',
	'notrestless',
	'notrestlessness',
	'notrestrict',
	'notrestricted',
	'notrestriction',
	'notrestrictive',
	'notretaliate',
	'notretaliatory',
	'notretard',
	'notretarded',
	'notreticent',
	'notretire',
	'notretract',
	'notretreat',
	'notrevenge',
	'notrevengeful',
	'notrevengefully',
	'notrevert',
	'notrevile',
	'notreviled',
	'notrevoke',
	'notrevolt',
	'notrevolting',
	'notrevoltingly',
	'notrevulsion',
	'notrevulsive',
	'notrhapsodize',
	'notrhetoric',
	'notrhetorical',
	'notrid',
	'notridicule',
	'notridiculed',
	'notridiculous',
	'notridiculously',
	'notrife',
	'notrift',
	'notrifts',
	'notrigid',
	'notrigor',
	'notrigorous',
	'notrile',
	'notriled',
	'notrisk',
	'notrisky',
	'notrival',
	'notrivalry',
	'notroadblocks',
	'notrobbed',
	'notrocky',
	'notrogue',
	'notrollercoaster',
	'notrot',
	'notrotten',
	'notrough',
	'notrubbish',
	'notrude',
	'notrue',
	'notruffian',
	'notruffle',
	'notruin',
	'notruinous',
	'notrumbling',
	'notrumor',
	'notrumors',
	'notrumours',
	'notrumple',
	'notrun-down',
	'notrunaway',
	'notrupture',
	'notrusty',
	'notruthless',
	'notruthlessly',
	'notruthlessness',
	'notsabotage',
	'notsacrifice',
	'notsad',
	'notsadden',
	'notsadistic',
	'notsadly',
	'notsadness',
	'notsag',
	'notsalacious',
	'notsanctimonious',
	'notsap',
	'notsarcasm',
	'notsarcastic',
	'notsarcastically',
	'notsardonic',
	'notsardonically',
	'notsass',
	'notsatirical',
	'notsatirize',
	'notsavage',
	'notsavaged',
	'notsavagely',
	'notsavagery',
	'notsavages',
	'notscandal',
	'notscandalize',
	'notscandalized',
	'notscandalous',
	'notscandalously',
	'notscandals',
	'notscant',
	'notscapegoat',
	'notscar',
	'notscarce',
	'notscarcely',
	'notscarcity',
	'notscare',
	'notscared',
	'notscarier',
	'notscariest',
	'notscarily',
	'notscarred',
	'notscars',
	'notscary',
	'notscathing',
	'notscathingly',
	'notscheme',
	'notscheming',
	'notscoff',
	'notscoffingly',
	'notscold',
	'notscolding',
	'notscoldingly',
	'notscorching',
	'notscorchingly',
	'notscorn',
	'notscornful',
	'notscornfully',
	'notscoundrel',
	'notscourge',
	'notscowl',
	'notscream',
	'notscreech',
	'notscrew',
	'notscrewed',
	'notscum',
	'notscummy',
	'notsecond-class',
	'notsecond-tier',
	'notsecretive',
	'notsedentary',
	'notseedy',
	'notseethe',
	'notseething',
	'notself-coup',
	'notself-criticism',
	'notself-defeating',
	'notself-destructive',
	'notself-humiliation',
	'notself-interest',
	'notself-interested',
	'notself-serving',
	'notselfinterested',
	'notselfish',
	'notselfishly',
	'notselfishness',
	'notsenile',
	'notsensationalize',
	'notsenseless',
	'notsenselessly',
	'notsensitive',
	'notseriousness',
	'notsermonize',
	'notservitude',
	'notset-up',
	'notsever',
	'notsevere',
	'notseverely',
	'notseverity',
	'notshabby',
	'notshadow',
	'notshadowy',
	'notshady',
	'notshake',
	'notshaky',
	'notshallow',
	'notsham',
	'notshambles',
	'notshame',
	'notshameful',
	'notshamefully',
	'notshamefulness',
	'notshameless',
	'notshamelessly',
	'notshamelessness',
	'notshark',
	'notsharply',
	'notshatter',
	'notsheer',
	'notshipwreck',
	'notshirk',
	'notshirker',
	'notshiver',
	'notshock',
	'notshocking',
	'notshockingly',
	'notshoddy',
	'notshort-lived',
	'notshortage',
	'notshortchange',
	'notshortcoming',
	'notshortcomings',
	'notshortsighted',
	'notshortsightedness',
	'notshowdown',
	'notshred',
	'notshrew',
	'notshriek',
	'notshrill',
	'notshrilly',
	'notshrivel',
	'notshroud',
	'notshrouded',
	'notshrug',
	'notshun',
	'notshunned',
	'notshy',
	'notshyly',
	'notshyness',
	'notsick',
	'notsicken',
	'notsickening',
	'notsickeningly',
	'notsickly',
	'notsickness',
	'notsidetrack',
	'notsidetracked',
	'notsiege',
	'notsillily',
	'notsilly',
	'notsimmer',
	'notsimplistic',
	'notsimplistically',
	'notsin',
	'notsinful',
	'notsinfully',
	'notsinister',
	'notsinisterly',
	'notsinking',
	'notskeletons',
	'notskeptical',
	'notskeptically',
	'notskepticism',
	'notsketchy',
	'notskimpy',
	'notskittish',
	'notskittishly',
	'notskulk',
	'notslack',
	'notslander',
	'notslanderer',
	'notslanderous',
	'notslanderously',
	'notslanders',
	'notslap',
	'notslashing',
	'notslaughter',
	'notslaughtered',
	'notslaves',
	'notsleazy',
	'notslight',
	'notslightly',
	'notslime',
	'notsloppily',
	'notsloppy',
	'notsloth',
	'notslothful',
	'notslow',
	'notslow-moving',
	'notslowly',
	'notslug',
	'notsluggish',
	'notslump',
	'notslur',
	'notsly',
	'notsmack',
	'notsmall',
	'notsmash',
	'notsmear',
	'notsmelling',
	'notsmokescreen',
	'notsmolder',
	'notsmoldering',
	'notsmother',
	'notsmothered',
	'notsmoulder',
	'notsmouldering',
	'notsmug',
	'notsmugly',
	'notsmut',
	'notsmuttier',
	'notsmuttiest',
	'notsmutty',
	'notsnare',
	'notsnarl',
	'notsnatch',
	'notsneak',
	'notsneakily',
	'notsneaky',
	'notsneer',
	'notsneering',
	'notsneeringly',
	'notsnub',
	'notso-cal',
	'notso-called',
	'notsob',
	'notsober',
	'notsobering',
	'notsolemn',
	'notsomber',
	'notsore',
	'notsorely',
	'notsoreness',
	'notsorrow',
	'notsorrowful',
	'notsorrowfully',
	'notsounding',
	'notsour',
	'notsourly',
	'notspade',
	'notspank',
	'notspilling',
	'notspinster',
	'notspiritless',
	'notspite',
	'notspiteful',
	'notspitefully',
	'notspitefulness',
	'notsplit',
	'notsplitting',
	'notspoil',
	'notspook',
	'notspookier',
	'notspookiest',
	'notspookily',
	'notspooky',
	'notspoon-fed',
	'notspoon-feed',
	'notspoonfed',
	'notsporadic',
	'notspot',
	'notspotty',
	'notspurious',
	'notspurn',
	'notsputter',
	'notsquabble',
	'notsquabbling',
	'notsquander',
	'notsquash',
	'notsquirm',
	'notstab',
	'notstagger',
	'notstaggering',
	'notstaggeringly',
	'notstagnant',
	'notstagnate',
	'notstagnation',
	'notstaid',
	'notstain',
	'notstake',
	'notstale',
	'notstalemate',
	'notstammer',
	'notstampede',
	'notstandstill',
	'notstark',
	'notstarkly',
	'notstartle',
	'notstartling',
	'notstartlingly',
	'notstarvation',
	'notstarve',
	'notstatic',
	'notsteal',
	'notstealing',
	'notsteep',
	'notsteeply',
	'notstench',
	'notstereotype',
	'notstereotyped',
	'notstereotypical',
	'notstereotypically',
	'notstern',
	'notstew',
	'notsticky',
	'notstiff',
	'notstifle',
	'notstifling',
	'notstiflingly',
	'notstigma',
	'notstigmatize',
	'notsting',
	'notstinging',
	'notstingingly',
	'notstink',
	'notstinking',
	'notstodgy',
	'notstole',
	'notstolen',
	'notstooge',
	'notstooges',
	'notstorm',
	'notstormy',
	'notstraggle',
	'notstraggler',
	'notstrain',
	'notstrained',
	'notstrange',
	'notstrangely',
	'notstranger',
	'notstrangest',
	'notstrangle',
	'notstrenuous',
	'notstress',
	'notstressed',
	'notstressful',
	'notstressfully',
	'notstretched',
	'notstricken',
	'notstrict',
	'notstrictly',
	'notstrident',
	'notstridently',
	'notstrife',
	'notstrike',
	'notstringent',
	'notstringently',
	'notstruck',
	'notstruggle',
	'notstrut',
	'notstubborn',
	'notstubbornly',
	'notstubbornness',
	'notstuck',
	'notstuffy',
	'notstumble',
	'notstump',
	'notstun',
	'notstunt',
	'notstunted',
	'notstupid',
	'notstupidity',
	'notstupidly',
	'notstupified',
	'notstupify',
	'notstupor',
	'notsty',
	'notsubdued',
	'notsubjected',
	'notsubjection',
	'notsubjugate',
	'notsubjugation',
	'notsubmissive',
	'notsubordinate',
	'notsubservience',
	'notsubservient',
	'notsubside',
	'notsubstandard',
	'notsubtract',
	'notsubversion',
	'notsubversive',
	'notsubversively',
	'notsubvert',
	'notsuccumb',
	'notsucker',
	'notsuffer',
	'notsufferer',
	'notsufferers',
	'notsuffering',
	'notsuffocate',
	'notsuffocated',
	'notsugar-coat',
	'notsugar-coated',
	'notsugarcoated',
	'notsuicidal',
	'notsuicide',
	'notsulk',
	'notsullen',
	'notsully',
	'notsunder',
	'notsuperficial',
	'notsuperficiality',
	'notsuperficially',
	'notsuperfluous',
	'notsuperiority',
	'notsuperstition',
	'notsuperstitious',
	'notsupposed',
	'notsuppress',
	'notsuppressed',
	'notsuppression',
	'notsupremacy',
	'notsurrender',
	'notsusceptible',
	'notsuspect',
	'notsuspicion',
	'notsuspicions',
	'notsuspicious',
	'notsuspiciously',
	'notswagger',
	'notswamped',
	'notswear',
	'notswindle',
	'notswipe',
	'notswoon',
	'notswore',
	'notsympathetically',
	'notsympathies',
	'notsympathize',
	'notsympathy',
	'notsymptom',
	'notsyndrome',
	'nottaboo',
	'nottaint',
	'nottainted',
	'nottamper',
	'nottangled',
	'nottantrum',
	'nottardy',
	'nottarnish',
	'nottattered',
	'nottaunt',
	'nottaunting',
	'nottauntingly',
	'nottaunts',
	'nottawdry',
	'nottaxing',
	'nottease',
	'notteasingly',
	'nottedious',
	'nottediously',
	'nottemerity',
	'nottemper',
	'nottempest',
	'nottemptation',
	'nottense',
	'nottension',
	'nottentative',
	'nottentatively',
	'nottenuous',
	'nottenuously',
	'nottepid',
	'notterrible',
	'notterribleness',
	'notterribly',
	'notterror',
	'notterror-genic',
	'notterrorism',
	'notterrorize',
	'notthankless',
	'notthirst',
	'notthorny',
	'notthoughtless',
	'notthoughtlessly',
	'notthoughtlessness',
	'notthrash',
	'notthreat',
	'notthreaten',
	'notthreatening',
	'notthreats',
	'notthrottle',
	'notthrow',
	'notthumb',
	'notthumbs',
	'notthwart',
	'nottimid',
	'nottimidity',
	'nottimidly',
	'nottimidness',
	'nottiny',
	'nottire',
	'nottired',
	'nottiresome',
	'nottiring',
	'nottiringly',
	'nottoil',
	'nottoll',
	'nottopple',
	'nottorment',
	'nottormented',
	'nottorrent',
	'nottortuous',
	'nottorture',
	'nottortured',
	'nottorturous',
	'nottorturously',
	'nottotalitarian',
	'nottouchy',
	'nottoughness',
	'nottoxic',
	'nottraduce',
	'nottragedy',
	'nottragic',
	'nottragically',
	'nottraitor',
	'nottraitorous',
	'nottraitorously',
	'nottramp',
	'nottrample',
	'nottransgress',
	'nottransgression',
	'nottrauma',
	'nottraumatic',
	'nottraumatically',
	'nottraumatize',
	'nottraumatized',
	'nottravesties',
	'nottravesty',
	'nottreacherous',
	'nottreacherously',
	'nottreachery',
	'nottreason',
	'nottreasonous',
	'nottrial',
	'nottrick',
	'nottrickery',
	'nottricky',
	'nottrivial',
	'nottrivialize',
	'nottrivially',
	'nottrouble',
	'nottroublemaker',
	'nottroublesome',
	'nottroublesomely',
	'nottroubling',
	'nottroublingly',
	'nottruant',
	'nottumultuous',
	'notturbulent',
	'notturmoil',
	'nottwist',
	'nottwisted',
	'nottwists',
	'nottyrannical',
	'nottyrannically',
	'nottyranny',
	'nottyrant',
	'notugh',
	'notugliness',
	'notugly',
	'notulterior',
	'notultimatum',
	'notultimatums',
	'notultra-hardline',
	'notunable',
	'notunacceptable',
	'notunacceptablely',
	'notunaccustomed',
	'notunattractive',
	'notunauthentic',
	'notunavailable',
	'notunavoidable',
	'notunavoidably',
	'notunbearable',
	'notunbearablely',
	'notunbelievable',
	'notunbelievably',
	'notuncertain',
	'notuncivil',
	'notuncivilized',
	'notunclean',
	'notunclear',
	'notuncollectible',
	'notuncomfortable',
	'notuncompetitive',
	'notuncompromising',
	'notuncompromisingly',
	'notunconfirmed',
	'notunconstitutional',
	'notuncontrolled',
	'notunconvincing',
	'notunconvincingly',
	'notuncouth',
	'notundecided',
	'notundefined',
	'notundependability',
	'notundependable',
	'notunderdog',
	'notunderestimate',
	'notunderlings',
	'notundermine',
	'notunderpaid',
	'notundesirable',
	'notundetermined',
	'notundid',
	'notundignified',
	'notundo',
	'notundocumented',
	'notundone',
	'notundue',
	'notunease',
	'notuneasily',
	'notuneasiness',
	'notuneasy',
	'notuneconomical',
	'notunequal',
	'notunethical',
	'notuneven',
	'notuneventful',
	'notunexpected',
	'notunexpectedly',
	'notunexplained',
	'notunfair',
	'notunfairly',
	'notunfaithful',
	'notunfaithfully',
	'notunfamiliar',
	'notunfavorable',
	'notunfeeling',
	'notunfinished',
	'notunfit',
	'notunforeseen',
	'notunfortunate',
	'notunfounded',
	'notunfriendly',
	'notunfulfilled',
	'notunfunded',
	'notungovernable',
	'notungrateful',
	'notunhappily',
	'notunhappiness',
	'notunhappy',
	'notunhealthy',
	'notunilateralism',
	'notunimaginable',
	'notunimaginably',
	'notunimportant',
	'notuninformed',
	'notuninsured',
	'notunipolar',
	'notunjust',
	'notunjustifiable',
	'notunjustifiably',
	'notunjustified',
	'notunjustly',
	'notunkind',
	'notunkindly',
	'notunlamentable',
	'notunlamentably',
	'notunlawful',
	'notunlawfully',
	'notunlawfulness',
	'notunleash',
	'notunlicensed',
	'notunlucky',
	'notunmoved',
	'notunnatural',
	'notunnaturally',
	'notunnecessary',
	'notunneeded',
	'notunnerve',
	'notunnerved',
	'notunnerving',
	'notunnervingly',
	'notunnoticed',
	'notunobserved',
	'notunorthodox',
	'notunorthodoxy',
	'notunpleasant',
	'notunpleasantries',
	'notunpopular',
	'notunprecedent',
	'notunprecedented',
	'notunpredictable',
	'notunprepared',
	'notunproductive',
	'notunprofitable',
	'notunqualified',
	'notunravel',
	'notunraveled',
	'notunrealistic',
	'notunreasonable',
	'notunreasonably',
	'notunrelenting',
	'notunrelentingly',
	'notunreliability',
	'notunreliable',
	'notunresolved',
	'notunrest',
	'notunruly',
	'notunsafe',
	'notunsatisfactory',
	'notunsavory',
	'notunscrupulous',
	'notunscrupulously',
	'notunseemly',
	'notunsettle',
	'notunsettled',
	'notunsettling',
	'notunsettlingly',
	'notunskilled',
	'notunsophisticated',
	'notunsound',
	'notunspeakable',
	'notunspeakablely',
	'notunspecified',
	'notunstable',
	'notunsteadily',
	'notunsteadiness',
	'notunsteady',
	'notunsuccessful',
	'notunsuccessfully',
	'notunsupported',
	'notunsure',
	'notunsuspecting',
	'notunsustainable',
	'notuntenable',
	'notuntested',
	'notunthinkable',
	'notunthinkably',
	'notuntimely',
	'notuntrue',
	'notuntrustworthy',
	'notuntruthful',
	'notunusual',
	'notunusually',
	'notunwanted',
	'notunwarranted',
	'notunwelcome',
	'notunwieldy',
	'notunwilling',
	'notunwillingly',
	'notunwillingness',
	'notunwise',
	'notunwisely',
	'notunworkable',
	'notunworthy',
	'notunyielding',
	'notupbraid',
	'notupheaval',
	'notuprising',
	'notuproar',
	'notuproarious',
	'notuproariously',
	'notuproarous',
	'notuproarously',
	'notuproot',
	'notupset',
	'notupsetting',
	'notupsettingly',
	'noturgency',
	'noturgent',
	'noturgently',
	'notuseless',
	'notusurp',
	'notusurper',
	'notutter',
	'notutterly',
	'notvagrant',
	'notvague',
	'notvagueness',
	'notvain',
	'notvainly',
	'notvanish',
	'notvanity',
	'notvehement',
	'notvehemently',
	'notvengeance',
	'notvengeful',
	'notvengefully',
	'notvengefulness',
	'notvenom',
	'notvenomous',
	'notvenomously',
	'notvent',
	'notveryabandon',
	'notveryabandoned',
	'notveryabandonment',
	'notveryabase',
	'notveryabasement',
	'notveryabash',
	'notveryabate',
	'notveryabdicate',
	'notveryaberration',
	'notveryabhor',
	'notveryabhorred',
	'notveryabhorrence',
	'notveryabhorrent',
	'notveryabhorrently',
	'notveryabhors',
	'notveryabject',
	'notveryabjectly',
	'notveryabjure',
	'notveryabnormal',
	'notveryabolish',
	'notveryabominable',
	'notveryabominably',
	'notveryabominate',
	'notveryabomination',
	'notveryabrade',
	'notveryabrasive',
	'notveryabrupt',
	'notveryabscond',
	'notveryabsence',
	'notveryabsent-minded',
	'notveryabsentee',
	'notveryabsurd',
	'notveryabsurdity',
	'notveryabsurdly',
	'notveryabsurdness',
	'notveryabuse',
	'notveryabused',
	'notveryabuses',
	'notveryabusive',
	'notveryabysmal',
	'notveryabysmally',
	'notveryabyss',
	'notveryaccidental',
	'notveryaccost',
	'notveryaccursed',
	'notveryaccusation',
	'notveryaccusations',
	'notveryaccuse',
	'notveryaccused',
	'notveryaccuses',
	'notveryaccusing',
	'notveryaccusingly',
	'notveryacerbate',
	'notveryacerbic',
	'notveryacerbically',
	'notveryache',
	'notveryacrid',
	'notveryacridly',
	'notveryacridness',
	'notveryacrimonious',
	'notveryacrimoniously',
	'notveryacrimony',
	'notveryadamant',
	'notveryadamantly',
	'notveryaddict',
	'notveryaddicted',
	'notveryaddiction',
	'notveryadmonish',
	'notveryadmonisher',
	'notveryadmonishingly',
	'notveryadmonishment',
	'notveryadmonition',
	'notveryadrift',
	'notveryadulterate',
	'notveryadulterated',
	'notveryadulteration',
	'notveryadversarial',
	'notveryadversary',
	'notveryadverse',
	'notveryadversity',
	'notveryaffectation',
	'notveryafflict',
	'notveryaffliction',
	'notveryafflictive',
	'notveryaffront',
	'notveryafraid',
	'notveryaggravate',
	'notveryaggravated',
	'notveryaggravating',
	'notveryaggravation',
	'notveryaggression',
	'notveryaggressive',
	'notveryaggressiveness',
	'notveryaggressor',
	'notveryaggrieve',
	'notveryaggrieved',
	'notveryaghast',
	'notveryagitate',
	'notveryagitated',
	'notveryagitation',
	'notveryagitator',
	'notveryagonies',
	'notveryagonize',
	'notveryagonizing',
	'notveryagonizingly',
	'notveryagony',
	'notveryail',
	'notveryailment',
	'notveryaimless',
	'notveryairs',
	'notveryalarm',
	'notveryalarmed',
	'notveryalarming',
	'notveryalarmingly',
	'notveryalas',
	'notveryalienate',
	'notveryalienated',
	'notveryalienation',
	'notveryallegation',
	'notveryallegations',
	'notveryallege',
	'notveryallergic',
	'notveryalone',
	'notveryaloof',
	'notveryaltercation',
	'notveryambiguity',
	'notveryambiguous',
	'notveryambivalence',
	'notveryambivalent',
	'notveryambush',
	'notveryamiss',
	'notveryamputate',
	'notveryanarchism',
	'notveryanarchist',
	'notveryanarchistic',
	'notveryanarchy',
	'notveryanemic',
	'notveryanger',
	'notveryangrily',
	'notveryangriness',
	'notveryangry',
	'notveryanguish',
	'notveryanimosity',
	'notveryannihilate',
	'notveryannihilation',
	'notveryannoy',
	'notveryannoyance',
	'notveryannoyed',
	'notveryannoying',
	'notveryannoyingly',
	'notveryanomalous',
	'notveryanomaly',
	'notveryantagonism',
	'notveryantagonist',
	'notveryantagonistic',
	'notveryantagonize',
	'notveryanti-',
	'notveryanti-american',
	'notveryanti-israeli',
	'notveryanti-occupation',
	'notveryanti-proliferation',
	'notveryanti-semites',
	'notveryanti-social',
	'notveryanti-us',
	'notveryanti-white',
	'notveryantipathy',
	'notveryantiquated',
	'notveryantithetical',
	'notveryanxieties',
	'notveryanxiety',
	'notveryanxious',
	'notveryanxiously',
	'notveryanxiousness',
	'notveryapathetic',
	'notveryapathetically',
	'notveryapathy',
	'notveryape',
	'notveryapocalypse',
	'notveryapocalyptic',
	'notveryapologist',
	'notveryapologists',
	'notveryappal',
	'notveryappall',
	'notveryappalled',
	'notveryappalling',
	'notveryappallingly',
	'notveryapprehension',
	'notveryapprehensions',
	'notveryapprehensive',
	'notveryapprehensively',
	'notveryarbitrary',
	'notveryarcane',
	'notveryarchaic',
	'notveryarduous',
	'notveryarduously',
	'notveryargue',
	'notveryargument',
	'notveryargumentative',
	'notveryarguments',
	'notveryarrogance',
	'notveryarrogant',
	'notveryarrogantly',
	'notveryartificial',
	'notveryashamed',
	'notveryasinine',
	'notveryasininely',
	'notveryasinininity',
	'notveryaskance',
	'notveryasperse',
	'notveryaspersion',
	'notveryaspersions',
	'notveryassail',
	'notveryassassin',
	'notveryassassinate',
	'notveryassault',
	'notveryassaulted',
	'notveryastray',
	'notveryasunder',
	'notveryatrocious',
	'notveryatrocities',
	'notveryatrocity',
	'notveryatrophy',
	'notveryattack',
	'notveryattacked',
	'notveryaudacious',
	'notveryaudaciously',
	'notveryaudaciousness',
	'notveryaudacity',
	'notveryaustere',
	'notveryauthoritarian',
	'notveryautocrat',
	'notveryautocratic',
	'notveryavalanche',
	'notveryavarice',
	'notveryavaricious',
	'notveryavariciously',
	'notveryavenge',
	'notveryaverse',
	'notveryaversion',
	'notveryavoid',
	'notveryavoidance',
	'notveryavoided',
	'notveryawful',
	'notveryawfulness',
	'notveryawkward',
	'notveryawkwardness',
	'notveryax',
	'notverybabble',
	'notverybackbite',
	'notverybackbiting',
	'notverybackward',
	'notverybackwardness',
	'notverybad',
	'notverybadgered',
	'notverybadly',
	'notverybaffle',
	'notverybaffled',
	'notverybafflement',
	'notverybaffling',
	'notverybait',
	'notverybalk',
	'notverybanal',
	'notverybanalize',
	'notverybane',
	'notverybanish',
	'notverybanishment',
	'notverybankrupt',
	'notverybanned',
	'notverybar',
	'notverybarbarian',
	'notverybarbaric',
	'notverybarbarically',
	'notverybarbarity',
	'notverybarbarous',
	'notverybarbarously',
	'notverybarely',
	'notverybarren',
	'notverybaseless',
	'notverybashful',
	'notverybastard',
	'notverybattered',
	'notverybattering',
	'notverybattle',
	'notverybattle-lines',
	'notverybattlefield',
	'notverybattleground',
	'notverybatty',
	'notverybearish',
	'notverybeast',
	'notverybeastly',
	'notverybeat',
	'notverybeaten',
	'notverybedlam',
	'notverybedlamite',
	'notverybefoul',
	'notverybeg',
	'notverybeggar',
	'notverybeggarly',
	'notverybegging',
	'notverybeguile',
	'notverybelabor',
	'notverybelated',
	'notverybeleaguer',
	'notverybelie',
	'notverybelittle',
	'notverybelittled',
	'notverybelittling',
	'notverybellicose',
	'notverybelligerence',
	'notverybelligerent',
	'notverybelligerently',
	'notverybemoan',
	'notverybemoaning',
	'notverybemused',
	'notverybent',
	'notveryberate',
	'notveryberated',
	'notverybereave',
	'notverybereavement',
	'notverybereft',
	'notveryberserk',
	'notverybeseech',
	'notverybeset',
	'notverybesiege',
	'notverybesmirch',
	'notverybestial',
	'notverybetray',
	'notverybetrayal',
	'notverybetrayals',
	'notverybetrayed',
	'notverybetrayer',
	'notverybewail',
	'notverybeware',
	'notverybewilder',
	'notverybewildered',
	'notverybewildering',
	'notverybewilderingly',
	'notverybewilderment',
	'notverybewitch',
	'notverybias',
	'notverybiased',
	'notverybiases',
	'notverybicker',
	'notverybickering',
	'notverybid-rigging',
	'notverybitch',
	'notverybitchy',
	'notverybiting',
	'notverybitingly',
	'notverybitter',
	'notverybitterly',
	'notverybitterness',
	'notverybizarre',
	'notverybizzare',
	'notveryblab',
	'notveryblabber',
	'notveryblack',
	'notveryblacklisted',
	'notveryblackmail',
	'notveryblackmailed',
	'notveryblah',
	'notveryblame',
	'notveryblamed',
	'notveryblameworthy',
	'notverybland',
	'notveryblandish',
	'notveryblaspheme',
	'notveryblasphemous',
	'notveryblasphemy',
	'notveryblast',
	'notveryblasted',
	'notveryblatant',
	'notveryblatantly',
	'notveryblather',
	'notverybleak',
	'notverybleakly',
	'notverybleakness',
	'notverybleed',
	'notveryblemish',
	'notveryblind',
	'notveryblinding',
	'notveryblindingly',
	'notveryblindness',
	'notveryblindside',
	'notveryblister',
	'notveryblistering',
	'notverybloated',
	'notveryblock',
	'notveryblockhead',
	'notveryblood',
	'notverybloodshed',
	'notverybloodthirsty',
	'notverybloody',
	'notveryblow',
	'notveryblunder',
	'notveryblundering',
	'notveryblunders',
	'notveryblunt',
	'notveryblur',
	'notveryblurt',
	'notveryboast',
	'notveryboastful',
	'notveryboggle',
	'notverybogus',
	'notveryboil',
	'notveryboiling',
	'notveryboisterous',
	'notverybomb',
	'notverybombard',
	'notverybombardment',
	'notverybombastic',
	'notverybondage',
	'notverybonkers',
	'notverybore',
	'notverybored',
	'notveryboredom',
	'notveryboring',
	'notverybotch',
	'notverybother',
	'notverybothered',
	'notverybothersome',
	'notverybounded',
	'notverybowdlerize',
	'notveryboycott',
	'notverybrag',
	'notverybraggart',
	'notverybragger',
	'notverybrainwash',
	'notverybrash',
	'notverybrashly',
	'notverybrashness',
	'notverybrat',
	'notverybravado',
	'notverybrazen',
	'notverybrazenly',
	'notverybrazenness',
	'notverybreach',
	'notverybreak',
	'notverybreak-point',
	'notverybreakdown',
	'notverybrimstone',
	'notverybristle',
	'notverybrittle',
	'notverybroke',
	'notverybroken',
	'notverybroken-hearted',
	'notverybrood',
	'notverybrowbeat',
	'notverybruise',
	'notverybruised',
	'notverybrusque',
	'notverybrutal',
	'notverybrutalising',
	'notverybrutalities',
	'notverybrutality',
	'notverybrutalize',
	'notverybrutalizing',
	'notverybrutally',
	'notverybrute',
	'notverybrutish',
	'notverybuckle',
	'notverybug',
	'notverybugged',
	'notverybulky',
	'notverybullied',
	'notverybullies',
	'notverybully',
	'notverybullyingly',
	'notverybum',
	'notverybummed',
	'notverybumpy',
	'notverybungle',
	'notverybungler',
	'notverybunk',
	'notveryburden',
	'notveryburdened',
	'notveryburdensome',
	'notveryburdensomely',
	'notveryburn',
	'notveryburned',
	'notverybusy',
	'notverybusybody',
	'notverybutcher',
	'notverybutchery',
	'notverybyzantine',
	'notverycackle',
	'notverycaged',
	'notverycajole',
	'notverycalamities',
	'notverycalamitous',
	'notverycalamitously',
	'notverycalamity',
	'notverycallous',
	'notverycalumniate',
	'notverycalumniation',
	'notverycalumnies',
	'notverycalumnious',
	'notverycalumniously',
	'notverycalumny',
	'notverycancer',
	'notverycancerous',
	'notverycannibal',
	'notverycannibalize',
	'notverycapitulate',
	'notverycapricious',
	'notverycapriciously',
	'notverycapriciousness',
	'notverycapsize',
	'notverycaptive',
	'notverycareless',
	'notverycarelessness',
	'notverycaricature',
	'notverycarnage',
	'notverycarp',
	'notverycartoon',
	'notverycartoonish',
	'notverycash-strapped',
	'notverycastigate',
	'notverycasualty',
	'notverycataclysm',
	'notverycataclysmal',
	'notverycataclysmic',
	'notverycataclysmically',
	'notverycatastrophe',
	'notverycatastrophes',
	'notverycatastrophic',
	'notverycatastrophically',
	'notverycaustic',
	'notverycaustically',
	'notverycautionary',
	'notverycautious',
	'notverycave',
	'notverycensure',
	'notverychafe',
	'notverychaff',
	'notverychagrin',
	'notverychallenge',
	'notverychallenging',
	'notverychaos',
	'notverychaotic',
	'notverycharisma',
	'notverychased',
	'notverychasten',
	'notverychastise',
	'notverychastisement',
	'notverychatter',
	'notverychatterbox',
	'notverycheap',
	'notverycheapen',
	'notverycheat',
	'notverycheated',
	'notverycheater',
	'notverycheerless',
	'notverychicken',
	'notverychide',
	'notverychildish',
	'notverychill',
	'notverychilly',
	'notverychit',
	'notverychoke',
	'notverychoppy',
	'notverychore',
	'notverychronic',
	'notveryclamor',
	'notveryclamorous',
	'notveryclash',
	'notveryclaustrophobic',
	'notverycliche',
	'notverycliched',
	'notveryclingy',
	'notveryclique',
	'notveryclog',
	'notveryclose',
	'notveryclosed',
	'notverycloud',
	'notveryclueless',
	'notveryclumsy',
	'notverycoarse',
	'notverycoaxed',
	'notverycocky',
	'notverycodependent',
	'notverycoerce',
	'notverycoerced',
	'notverycoercion',
	'notverycoercive',
	'notverycold',
	'notverycoldly',
	'notverycollapse',
	'notverycollide',
	'notverycollude',
	'notverycollusion',
	'notverycombative',
	'notverycomedy',
	'notverycomical',
	'notverycommanded',
	'notverycommiserate',
	'notverycommonplace',
	'notverycommotion',
	'notverycompared',
	'notverycompel',
	'notverycompetitive',
	'notverycomplacent',
	'notverycomplain',
	'notverycomplaining',
	'notverycomplaint',
	'notverycomplaints',
	'notverycomplicate',
	'notverycomplicated',
	'notverycomplication',
	'notverycomplicit',
	'notverycompulsion',
	'notverycompulsive',
	'notverycompulsory',
	'notveryconcede',
	'notveryconceit',
	'notveryconceited',
	'notveryconcern',
	'notveryconcerned',
	'notveryconcerns',
	'notveryconcession',
	'notveryconcessions',
	'notverycondemn',
	'notverycondemnable',
	'notverycondemnation',
	'notverycondescend',
	'notverycondescending',
	'notverycondescendingly',
	'notverycondescension',
	'notverycondolence',
	'notverycondolences',
	'notveryconfess',
	'notveryconfession',
	'notveryconfessions',
	'notveryconfined',
	'notveryconflict',
	'notveryconflicted',
	'notveryconfound',
	'notveryconfounded',
	'notveryconfounding',
	'notveryconfront',
	'notveryconfrontation',
	'notveryconfrontational',
	'notveryconfronted',
	'notveryconfuse',
	'notveryconfused',
	'notveryconfusing',
	'notveryconfusion',
	'notverycongested',
	'notverycongestion',
	'notveryconned',
	'notveryconspicuous',
	'notveryconspicuously',
	'notveryconspiracies',
	'notveryconspiracy',
	'notveryconspirator',
	'notveryconspiratorial',
	'notveryconspire',
	'notveryconsternation',
	'notveryconstrain',
	'notveryconstraint',
	'notveryconsume',
	'notveryconsumed',
	'notverycontagious',
	'notverycontaminate',
	'notverycontamination',
	'notverycontemplative',
	'notverycontempt',
	'notverycontemptible',
	'notverycontemptuous',
	'notverycontemptuously',
	'notverycontend',
	'notverycontention',
	'notverycontentious',
	'notverycontort',
	'notverycontortions',
	'notverycontradict',
	'notverycontradiction',
	'notverycontradictory',
	'notverycontrariness',
	'notverycontrary',
	'notverycontravene',
	'notverycontrive',
	'notverycontrived',
	'notverycontrolled',
	'notverycontroversial',
	'notverycontroversy',
	'notveryconvicted',
	'notveryconvoluted',
	'notverycoping',
	'notverycornered',
	'notverycorralled',
	'notverycorrode',
	'notverycorrosion',
	'notverycorrosive',
	'notverycorrupt',
	'notverycorruption',
	'notverycostly',
	'notverycounterproductive',
	'notverycoupists',
	'notverycovetous',
	'notverycovetously',
	'notverycow',
	'notverycoward',
	'notverycowardly',
	'notverycrabby',
	'notverycrackdown',
	'notverycrafty',
	'notverycramped',
	'notverycranky',
	'notverycrap',
	'notverycrappy',
	'notverycrass',
	'notverycraven',
	'notverycravenly',
	'notverycraze',
	'notverycrazily',
	'notverycraziness',
	'notverycrazy',
	'notverycredulous',
	'notverycreepy',
	'notverycrime',
	'notverycriminal',
	'notverycringe',
	'notverycripple',
	'notverycrippling',
	'notverycrisis',
	'notverycritic',
	'notverycritical',
	'notverycriticism',
	'notverycriticisms',
	'notverycriticize',
	'notverycriticized',
	'notverycritics',
	'notverycrook',
	'notverycrooked',
	'notverycross',
	'notverycrowded',
	'notverycruddy',
	'notverycrude',
	'notverycruel',
	'notverycruelties',
	'notverycruelty',
	'notverycrumble',
	'notverycrummy',
	'notverycrumple',
	'notverycrush',
	'notverycrushed',
	'notverycrushing',
	'notverycry',
	'notveryculpable',
	'notverycumbersome',
	'notverycuplrit',
	'notverycurse',
	'notverycursed',
	'notverycurses',
	'notverycursory',
	'notverycurt',
	'notverycuss',
	'notverycut',
	'notverycutthroat',
	'notverycynical',
	'notverycynicism',
	'notverydamage',
	'notverydamaged',
	'notverydamaging',
	'notverydamn',
	'notverydamnable',
	'notverydamnably',
	'notverydamnation',
	'notverydamned',
	'notverydamning',
	'notverydanger',
	'notverydangerous',
	'notverydangerousness',
	'notverydangle',
	'notverydark',
	'notverydarken',
	'notverydarkness',
	'notverydarn',
	'notverydash',
	'notverydastard',
	'notverydastardly',
	'notverydaunt',
	'notverydaunting',
	'notverydauntingly',
	'notverydawdle',
	'notverydaze',
	'notverydazed',
	'notverydead',
	'notverydeadbeat',
	'notverydeadlock',
	'notverydeadly',
	'notverydeadweight',
	'notverydeaf',
	'notverydearth',
	'notverydeath',
	'notverydebacle',
	'notverydebase',
	'notverydebasement',
	'notverydebaser',
	'notverydebatable',
	'notverydebate',
	'notverydebauch',
	'notverydebaucher',
	'notverydebauchery',
	'notverydebilitate',
	'notverydebilitating',
	'notverydebility',
	'notverydecadence',
	'notverydecadent',
	'notverydecay',
	'notverydecayed',
	'notverydeceit',
	'notverydeceitful',
	'notverydeceitfully',
	'notverydeceitfulness',
	'notverydeceive',
	'notverydeceived',
	'notverydeceiver',
	'notverydeceivers',
	'notverydeceiving',
	'notverydeception',
	'notverydeceptive',
	'notverydeceptively',
	'notverydeclaim',
	'notverydecline',
	'notverydeclining',
	'notverydecrease',
	'notverydecreasing',
	'notverydecrement',
	'notverydecrepit',
	'notverydecrepitude',
	'notverydecry',
	'notverydeep',
	'notverydeepening',
	'notverydefamation',
	'notverydefamations',
	'notverydefamatory',
	'notverydefame',
	'notverydefamed',
	'notverydefeat',
	'notverydefeated',
	'notverydefect',
	'notverydefective',
	'notverydefenseless',
	'notverydefensive',
	'notverydefiance',
	'notverydefiant',
	'notverydefiantly',
	'notverydeficiency',
	'notverydeficient',
	'notverydefile',
	'notverydefiler',
	'notverydeflated',
	'notverydeform',
	'notverydeformed',
	'notverydefrauding',
	'notverydefunct',
	'notverydefy',
	'notverydegenerate',
	'notverydegenerately',
	'notverydegeneration',
	'notverydegradation',
	'notverydegrade',
	'notverydegraded',
	'notverydegrading',
	'notverydegradingly',
	'notverydehumanization',
	'notverydehumanize',
	'notverydehumanized',
	'notverydeign',
	'notverydeject',
	'notverydejected',
	'notverydejectedly',
	'notverydejection',
	'notverydelicate',
	'notverydelinquency',
	'notverydelinquent',
	'notverydelirious',
	'notverydelirium',
	'notverydelude',
	'notverydeluded',
	'notverydeluge',
	'notverydelusion',
	'notverydelusional',
	'notverydelusions',
	'notverydemand',
	'notverydemanding',
	'notverydemands',
	'notverydemean',
	'notverydemeaned',
	'notverydemeaning',
	'notverydemented',
	'notverydemise',
	'notverydemolish',
	'notverydemolisher',
	'notverydemon',
	'notverydemonic',
	'notverydemonize',
	'notverydemoralize',
	'notverydemoralized',
	'notverydemoralizing',
	'notverydemoralizingly',
	'notverydemotivated',
	'notverydenial',
	'notverydenigrate',
	'notverydenounce',
	'notverydenunciate',
	'notverydenunciation',
	'notverydenunciations',
	'notverydeny',
	'notverydependent',
	'notverydeplete',
	'notverydepleted',
	'notverydeplorable',
	'notverydeplorably',
	'notverydeplore',
	'notverydeploring',
	'notverydeploringly',
	'notverydeprave',
	'notverydepraved',
	'notverydepravedly',
	'notverydeprecate',
	'notverydepress',
	'notverydepressed',
	'notverydepressing',
	'notverydepressingly',
	'notverydepression',
	'notverydeprive',
	'notverydeprived',
	'notveryderide',
	'notveryderision',
	'notveryderisive',
	'notveryderisively',
	'notveryderisiveness',
	'notveryderogatory',
	'notverydesecrate',
	'notverydesert',
	'notverydeserted',
	'notverydesertion',
	'notverydesiccate',
	'notverydesiccated',
	'notverydesolate',
	'notverydesolately',
	'notverydesolation',
	'notverydespair',
	'notverydespairing',
	'notverydespairingly',
	'notverydesperate',
	'notverydesperately',
	'notverydesperation',
	'notverydespicable',
	'notverydespicably',
	'notverydespise',
	'notverydespised',
	'notverydespoil',
	'notverydespoiler',
	'notverydespondence',
	'notverydespondency',
	'notverydespondent',
	'notverydespondently',
	'notverydespot',
	'notverydespotic',
	'notverydespotism',
	'notverydestabilisation',
	'notverydestitute',
	'notverydestitution',
	'notverydestroy',
	'notverydestroyed',
	'notverydestroyer',
	'notverydestruction',
	'notverydestructive',
	'notverydesultory',
	'notverydetached',
	'notverydeter',
	'notverydeteriorate',
	'notverydeteriorating',
	'notverydeterioration',
	'notverydeterrent',
	'notverydetest',
	'notverydetestable',
	'notverydetestably',
	'notverydetested',
	'notverydetract',
	'notverydetraction',
	'notverydetriment',
	'notverydetrimental',
	'notverydevalued',
	'notverydevastate',
	'notverydevastated',
	'notverydevastating',
	'notverydevastatingly',
	'notverydevastation',
	'notverydeviant',
	'notverydeviate',
	'notverydeviation',
	'notverydevil',
	'notverydevilish',
	'notverydevilishly',
	'notverydevilment',
	'notverydevilry',
	'notverydevious',
	'notverydeviously',
	'notverydeviousness',
	'notverydevoid',
	'notverydiabolic',
	'notverydiabolical',
	'notverydiabolically',
	'notverydiagnosed',
	'notverydiametrically',
	'notverydiatribe',
	'notverydiatribes',
	'notverydictator',
	'notverydictatorial',
	'notverydiffer',
	'notverydifferent',
	'notverydifficult',
	'notverydifficulties',
	'notverydifficulty',
	'notverydiffidence',
	'notverydig',
	'notverydigress',
	'notverydilapidated',
	'notverydilemma',
	'notverydilly-dally',
	'notverydim',
	'notverydiminish',
	'notverydiminishing',
	'notverydin',
	'notverydinky',
	'notverydire',
	'notverydirectionless',
	'notverydirely',
	'notverydireness',
	'notverydirt',
	'notverydirty',
	'notverydisable',
	'notverydisabled',
	'notverydisaccord',
	'notverydisadvantage',
	'notverydisadvantaged',
	'notverydisadvantageous',
	'notverydisaffect',
	'notverydisaffected',
	'notverydisaffirm',
	'notverydisagree',
	'notverydisagreeable',
	'notverydisagreeably',
	'notverydisagreement',
	'notverydisallow',
	'notverydisappoint',
	'notverydisappointed',
	'notverydisappointing',
	'notverydisappointingly',
	'notverydisappointment',
	'notverydisapprobation',
	'notverydisapproval',
	'notverydisapprove',
	'notverydisapproving',
	'notverydisarm',
	'notverydisarray',
	'notverydisaster',
	'notverydisastrous',
	'notverydisastrously',
	'notverydisavow',
	'notverydisavowal',
	'notverydisbelief',
	'notverydisbelieve',
	'notverydisbelieved',
	'notverydisbeliever',
	'notverydiscardable',
	'notverydiscarded',
	'notverydisclaim',
	'notverydiscombobulate',
	'notverydiscomfit',
	'notverydiscomfititure',
	'notverydiscomfort',
	'notverydiscompose',
	'notverydisconcert',
	'notverydisconcerted',
	'notverydisconcerting',
	'notverydisconcertingly',
	'notverydisconnected',
	'notverydisconsolate',
	'notverydisconsolately',
	'notverydisconsolation',
	'notverydiscontent',
	'notverydiscontented',
	'notverydiscontentedly',
	'notverydiscontinuity',
	'notverydiscord',
	'notverydiscordance',
	'notverydiscordant',
	'notverydiscountenance',
	'notverydiscourage',
	'notverydiscouraged',
	'notverydiscouragement',
	'notverydiscouraging',
	'notverydiscouragingly',
	'notverydiscourteous',
	'notverydiscourteously',
	'notverydiscredit',
	'notverydiscrepant',
	'notverydiscriminate',
	'notverydiscriminated',
	'notverydiscrimination',
	'notverydiscriminatory',
	'notverydisdain',
	'notverydisdainful',
	'notverydisdainfully',
	'notverydisease',
	'notverydiseased',
	'notverydisempowered',
	'notverydisenchanted',
	'notverydisfavor',
	'notverydisgrace',
	'notverydisgraced',
	'notverydisgraceful',
	'notverydisgracefully',
	'notverydisgruntle',
	'notverydisgruntled',
	'notverydisgust',
	'notverydisgusted',
	'notverydisgustedly',
	'notverydisgustful',
	'notverydisgustfully',
	'notverydisgusting',
	'notverydisgustingly',
	'notverydishearten',
	'notverydisheartened',
	'notverydisheartening',
	'notverydishearteningly',
	'notverydishonest',
	'notverydishonestly',
	'notverydishonesty',
	'notverydishonor',
	'notverydishonorable',
	'notverydishonorablely',
	'notverydisillusion',
	'notverydisillusioned',
	'notverydisinclination',
	'notverydisinclined',
	'notverydisingenuous',
	'notverydisingenuously',
	'notverydisintegrate',
	'notverydisintegration',
	'notverydisinterest',
	'notverydisinterested',
	'notverydislike',
	'notverydisliked',
	'notverydislocated',
	'notverydisloyal',
	'notverydisloyalty',
	'notverydismal',
	'notverydismally',
	'notverydismalness',
	'notverydismay',
	'notverydismayed',
	'notverydismaying',
	'notverydismayingly',
	'notverydismissive',
	'notverydismissively',
	'notverydisobedience',
	'notverydisobedient',
	'notverydisobey',
	'notverydisorder',
	'notverydisordered',
	'notverydisorderly',
	'notverydisorganized',
	'notverydisorient',
	'notverydisoriented',
	'notverydisown',
	'notverydisowned',
	'notverydisparage',
	'notverydisparaging',
	'notverydisparagingly',
	'notverydispensable',
	'notverydispirit',
	'notverydispirited',
	'notverydispiritedly',
	'notverydispiriting',
	'notverydisplace',
	'notverydisplaced',
	'notverydisplease',
	'notverydispleased',
	'notverydispleasing',
	'notverydispleasure',
	'notverydisposable',
	'notverydisproportionate',
	'notverydisprove',
	'notverydisputable',
	'notverydispute',
	'notverydisputed',
	'notverydisquiet',
	'notverydisquieting',
	'notverydisquietingly',
	'notverydisquietude',
	'notverydisregard',
	'notverydisregarded',
	'notverydisregardful',
	'notverydisreputable',
	'notverydisrepute',
	'notverydisrespect',
	'notverydisrespectable',
	'notverydisrespectablity',
	'notverydisrespected',
	'notverydisrespectful',
	'notverydisrespectfully',
	'notverydisrespectfulness',
	'notverydisrespecting',
	'notverydisrupt',
	'notverydisruption',
	'notverydisruptive',
	'notverydissatisfaction',
	'notverydissatisfactory',
	'notverydissatisfied',
	'notverydissatisfy',
	'notverydissatisfying',
	'notverydissemble',
	'notverydissembler',
	'notverydissension',
	'notverydissent',
	'notverydissenter',
	'notverydissention',
	'notverydisservice',
	'notverydissidence',
	'notverydissident',
	'notverydissidents',
	'notverydissocial',
	'notverydissolute',
	'notverydissolution',
	'notverydissonance',
	'notverydissonant',
	'notverydissonantly',
	'notverydissuade',
	'notverydissuasive',
	'notverydistant',
	'notverydistaste',
	'notverydistasteful',
	'notverydistastefully',
	'notverydistort',
	'notverydistortion',
	'notverydistract',
	'notverydistracted',
	'notverydistracting',
	'notverydistraction',
	'notverydistraught',
	'notverydistraughtly',
	'notverydistraughtness',
	'notverydistress',
	'notverydistressed',
	'notverydistressing',
	'notverydistressingly',
	'notverydistrust',
	'notverydistrustful',
	'notverydistrusting',
	'notverydisturb',
	'notverydisturbed',
	'notverydisturbed-let',
	'notverydisturbing',
	'notverydisturbingly',
	'notverydisunity',
	'notverydisvalue',
	'notverydivergent',
	'notverydivide',
	'notverydivided',
	'notverydivision',
	'notverydivisive',
	'notverydivisively',
	'notverydivisiveness',
	'notverydivorce',
	'notverydivorced',
	'notverydizzing',
	'notverydizzingly',
	'notverydizzy',
	'notverydoddering',
	'notverydodgey',
	'notverydogged',
	'notverydoggedly',
	'notverydogmatic',
	'notverydoldrums',
	'notverydominance',
	'notverydominate',
	'notverydominated',
	'notverydomination',
	'notverydomineer',
	'notverydomineering',
	'notverydoom',
	'notverydoomed',
	'notverydoomsday',
	'notverydope',
	'notverydoubt',
	'notverydoubted',
	'notverydoubtful',
	'notverydoubtfully',
	'notverydoubts',
	'notverydown',
	'notverydownbeat',
	'notverydowncast',
	'notverydowner',
	'notverydownfall',
	'notverydownfallen',
	'notverydowngrade',
	'notverydownhearted',
	'notverydownheartedly',
	'notverydownside',
	'notverydowntrodden',
	'notverydrab',
	'notverydraconian',
	'notverydraconic',
	'notverydragon',
	'notverydragons',
	'notverydragoon',
	'notverydrain',
	'notverydrained',
	'notverydrama',
	'notverydramatic',
	'notverydrastic',
	'notverydrastically',
	'notverydread',
	'notverydreadful',
	'notverydreadfully',
	'notverydreadfulness',
	'notverydreary',
	'notverydrones',
	'notverydroop',
	'notverydropped',
	'notverydrought',
	'notverydrowning',
	'notverydrunk',
	'notverydrunkard',
	'notverydrunken',
	'notverydry',
	'notverydubious',
	'notverydubiously',
	'notverydubitable',
	'notverydud',
	'notverydull',
	'notverydullard',
	'notverydumb',
	'notverydumbfound',
	'notverydumbfounded',
	'notverydummy',
	'notverydump',
	'notverydumped',
	'notverydunce',
	'notverydungeon',
	'notverydungeons',
	'notverydupe',
	'notveryduped',
	'notverydusty',
	'notverydwindle',
	'notverydwindling',
	'notverydying',
	'notveryearsplitting',
	'notveryeccentric',
	'notveryeccentricity',
	'notveryedgy',
	'notveryeffigy',
	'notveryeffrontery',
	'notveryego',
	'notveryegocentric',
	'notveryegomania',
	'notveryegotism',
	'notveryegotistic',
	'notveryegotistical',
	'notveryegotistically',
	'notveryegregious',
	'notveryegregiously',
	'notveryejaculate',
	'notveryelection-rigger',
	'notveryeliminate',
	'notveryelimination',
	'notveryelusive',
	'notveryemaciated',
	'notveryemancipated',
	'notveryemasculate',
	'notveryemasculated',
	'notveryembarrass',
	'notveryembarrassed',
	'notveryembarrassing',
	'notveryembarrassingly',
	'notveryembarrassment',
	'notveryembattled',
	'notveryembroil',
	'notveryembroiled',
	'notveryembroilment',
	'notveryemotional',
	'notveryemotionless',
	'notveryempathize',
	'notveryempathy',
	'notveryemphatic',
	'notveryemphatically',
	'notveryemptiness',
	'notveryempty',
	'notveryencroach',
	'notveryencroachment',
	'notveryencumbered',
	'notveryendanger',
	'notveryendangered',
	'notveryendless',
	'notveryenemies',
	'notveryenemy',
	'notveryenervate',
	'notveryenfeeble',
	'notveryenflame',
	'notveryengulf',
	'notveryenjoin',
	'notveryenmity',
	'notveryenormities',
	'notveryenormity',
	'notveryenormous',
	'notveryenormously',
	'notveryenrage',
	'notveryenraged',
	'notveryenslave',
	'notveryenslaved',
	'notveryentangle',
	'notveryentangled',
	'notveryentanglement',
	'notveryentrap',
	'notveryentrapment',
	'notveryenvious',
	'notveryenviously',
	'notveryenviousness',
	'notveryenvy',
	'notveryepidemic',
	'notveryequivocal',
	'notveryeradicate',
	'notveryerase',
	'notveryerode',
	'notveryerosion',
	'notveryerr',
	'notveryerrant',
	'notveryerratic',
	'notveryerratically',
	'notveryerroneous',
	'notveryerroneously',
	'notveryerror',
	'notveryescapade',
	'notveryeschew',
	'notveryesoteric',
	'notveryestranged',
	'notveryeternal',
	'notveryevade',
	'notveryevaded',
	'notveryevasion',
	'notveryevasive',
	'notveryevicted',
	'notveryevil',
	'notveryevildoer',
	'notveryevils',
	'notveryeviscerate',
	'notveryexacerbate',
	'notveryexacting',
	'notveryexaggerate',
	'notveryexaggeration',
	'notveryexasperate',
	'notveryexasperating',
	'notveryexasperatingly',
	'notveryexasperation',
	'notveryexcessive',
	'notveryexcessively',
	'notveryexclaim',
	'notveryexclude',
	'notveryexcluded',
	'notveryexclusion',
	'notveryexcoriate',
	'notveryexcruciating',
	'notveryexcruciatingly',
	'notveryexcuse',
	'notveryexcuses',
	'notveryexecrate',
	'notveryexhaust',
	'notveryexhausted',
	'notveryexhaustion',
	'notveryexhort',
	'notveryexile',
	'notveryexorbitant',
	'notveryexorbitantance',
	'notveryexorbitantly',
	'notveryexpediencies',
	'notveryexpedient',
	'notveryexpel',
	'notveryexpensive',
	'notveryexpire',
	'notveryexplode',
	'notveryexploit',
	'notveryexploitation',
	'notveryexplosive',
	'notveryexpose',
	'notveryexposed',
	'notveryexpropriate',
	'notveryexpropriation',
	'notveryexpulse',
	'notveryexpunge',
	'notveryexterminate',
	'notveryextermination',
	'notveryextinguish',
	'notveryextort',
	'notveryextortion',
	'notveryextraneous',
	'notveryextravagance',
	'notveryextravagant',
	'notveryextravagantly',
	'notveryextreme',
	'notveryextremely',
	'notveryextremism',
	'notveryextremist',
	'notveryextremists',
	'notveryfabricate',
	'notveryfabrication',
	'notveryfacetious',
	'notveryfacetiously',
	'notveryfading',
	'notveryfail',
	'notveryfailful',
	'notveryfailing',
	'notveryfailure',
	'notveryfailures',
	'notveryfaint',
	'notveryfainthearted',
	'notveryfaithless',
	'notveryfake',
	'notveryfall',
	'notveryfallacies',
	'notveryfallacious',
	'notveryfallaciously',
	'notveryfallaciousness',
	'notveryfallacy',
	'notveryfallout',
	'notveryfalse',
	'notveryfalsehood',
	'notveryfalsely',
	'notveryfalsify',
	'notveryfalter',
	'notveryfamine',
	'notveryfamished',
	'notveryfanatic',
	'notveryfanatical',
	'notveryfanatically',
	'notveryfanaticism',
	'notveryfanatics',
	'notveryfanciful',
	'notveryfar-fetched',
	'notveryfarce',
	'notveryfarcical',
	'notveryfarcical-yet-provocative',
	'notveryfarcically',
	'notveryfarfetched',
	'notveryfascism',
	'notveryfascist',
	'notveryfastidious',
	'notveryfastidiously',
	'notveryfastuous',
	'notveryfat',
	'notveryfatal',
	'notveryfatalistic',
	'notveryfatalistically',
	'notveryfatally',
	'notveryfateful',
	'notveryfatefully',
	'notveryfathomless',
	'notveryfatigue',
	'notveryfatty',
	'notveryfatuity',
	'notveryfatuous',
	'notveryfatuously',
	'notveryfault',
	'notveryfaulty',
	'notveryfawningly',
	'notveryfaze',
	'notveryfear',
	'notveryfearful',
	'notveryfearfully',
	'notveryfears',
	'notveryfearsome',
	'notveryfeckless',
	'notveryfeeble',
	'notveryfeeblely',
	'notveryfeebleminded',
	'notveryfeign',
	'notveryfeint',
	'notveryfell',
	'notveryfelon',
	'notveryfelonious',
	'notveryferocious',
	'notveryferociously',
	'notveryferocity',
	'notveryfetid',
	'notveryfever',
	'notveryfeverish',
	'notveryfiasco',
	'notveryfiat',
	'notveryfib',
	'notveryfibber',
	'notveryfickle',
	'notveryfiction',
	'notveryfictional',
	'notveryfictitious',
	'notveryfidget',
	'notveryfidgety',
	'notveryfiend',
	'notveryfiendish',
	'notveryfierce',
	'notveryfight',
	'notveryfigurehead',
	'notveryfilth',
	'notveryfilthy',
	'notveryfinagle',
	'notveryfissures',
	'notveryfist',
	'notveryflabbergast',
	'notveryflabbergasted',
	'notveryflagging',
	'notveryflagrant',
	'notveryflagrantly',
	'notveryflak',
	'notveryflake',
	'notveryflakey',
	'notveryflaky',
	'notveryflash',
	'notveryflashy',
	'notveryflat-out',
	'notveryflaunt',
	'notveryflaw',
	'notveryflawed',
	'notveryflaws',
	'notveryfleer',
	'notveryfleeting',
	'notveryflighty',
	'notveryflimflam',
	'notveryflimsy',
	'notveryflirt',
	'notveryflirty',
	'notveryfloored',
	'notveryflounder',
	'notveryfloundering',
	'notveryflout',
	'notveryfluster',
	'notveryfoe',
	'notveryfool',
	'notveryfoolhardy',
	'notveryfoolish',
	'notveryfoolishly',
	'notveryfoolishness',
	'notveryforbid',
	'notveryforbidden',
	'notveryforbidding',
	'notveryforce',
	'notveryforced',
	'notveryforceful',
	'notveryforeboding',
	'notveryforebodingly',
	'notveryforfeit',
	'notveryforged',
	'notveryforget',
	'notveryforgetful',
	'notveryforgetfully',
	'notveryforgetfulness',
	'notveryforgettable',
	'notveryforgotten',
	'notveryforlorn',
	'notveryforlornly',
	'notveryformidable',
	'notveryforsake',
	'notveryforsaken',
	'notveryforswear',
	'notveryfoul',
	'notveryfoully',
	'notveryfoulness',
	'notveryfractious',
	'notveryfractiously',
	'notveryfracture',
	'notveryfragile',
	'notveryfragmented',
	'notveryfrail',
	'notveryfrantic',
	'notveryfrantically',
	'notveryfranticly',
	'notveryfraternize',
	'notveryfraud',
	'notveryfraudulent',
	'notveryfraught',
	'notveryfrazzle',
	'notveryfrazzled',
	'notveryfreak',
	'notveryfreakish',
	'notveryfreakishly',
	'notveryfrenetic',
	'notveryfrenetically',
	'notveryfrenzied',
	'notveryfrenzy',
	'notveryfret',
	'notveryfretful',
	'notveryfriction',
	'notveryfrictions',
	'notveryfriggin',
	'notveryfright',
	'notveryfrighten',
	'notveryfrightened',
	'notveryfrightening',
	'notveryfrighteningly',
	'notveryfrightful',
	'notveryfrightfully',
	'notveryfrigid',
	'notveryfrivolous',
	'notveryfrown',
	'notveryfrozen',
	'notveryfruitless',
	'notveryfruitlessly',
	'notveryfrustrate',
	'notveryfrustrated',
	'notveryfrustrating',
	'notveryfrustratingly',
	'notveryfrustration',
	'notveryfudge',
	'notveryfugitive',
	'notveryfull-blown',
	'notveryfulminate',
	'notveryfumble',
	'notveryfume',
	'notveryfundamentalism',
	'notveryfurious',
	'notveryfuriously',
	'notveryfuror',
	'notveryfury',
	'notveryfuss',
	'notveryfussy',
	'notveryfustigate',
	'notveryfusty',
	'notveryfutile',
	'notveryfutilely',
	'notveryfutility',
	'notveryfuzzy',
	'notverygabble',
	'notverygaff',
	'notverygaffe',
	'notverygaga',
	'notverygaggle',
	'notverygainsay',
	'notverygainsayer',
	'notverygall',
	'notverygalling',
	'notverygallingly',
	'notverygamble',
	'notverygame',
	'notverygape',
	'notverygarbage',
	'notverygarish',
	'notverygasp',
	'notverygauche',
	'notverygaudy',
	'notverygawk',
	'notverygawky',
	'notverygeezer',
	'notverygenocide',
	'notveryget-rich',
	'notveryghastly',
	'notveryghetto',
	'notverygibber',
	'notverygibberish',
	'notverygibe',
	'notveryglare',
	'notveryglaring',
	'notveryglaringly',
	'notveryglib',
	'notveryglibly',
	'notveryglitch',
	'notverygloatingly',
	'notverygloom',
	'notverygloomy',
	'notverygloss',
	'notveryglower',
	'notveryglum',
	'notveryglut',
	'notverygnawing',
	'notverygoad',
	'notverygoading',
	'notverygod-awful',
	'notverygoddam',
	'notverygoddamn',
	'notverygoof',
	'notverygossip',
	'notverygothic',
	'notverygraceless',
	'notverygracelessly',
	'notverygraft',
	'notverygrandiose',
	'notverygrapple',
	'notverygrate',
	'notverygrating',
	'notverygratuitous',
	'notverygratuitously',
	'notverygrave',
	'notverygravely',
	'notverygreed',
	'notverygreedy',
	'notverygrey',
	'notverygrief',
	'notverygrievance',
	'notverygrievances',
	'notverygrieve',
	'notverygrieving',
	'notverygrievous',
	'notverygrievously',
	'notverygrill',
	'notverygrim',
	'notverygrimace',
	'notverygrind',
	'notverygripe',
	'notverygrisly',
	'notverygritty',
	'notverygross',
	'notverygrossly',
	'notverygrotesque',
	'notverygrouch',
	'notverygrouchy',
	'notverygrounded',
	'notverygroundless',
	'notverygrouse',
	'notverygrowl',
	'notverygrudge',
	'notverygrudges',
	'notverygrudging',
	'notverygrudgingly',
	'notverygruesome',
	'notverygruesomely',
	'notverygruff',
	'notverygrumble',
	'notverygrumpy',
	'notveryguile',
	'notveryguilt',
	'notveryguiltily',
	'notveryguilty',
	'notverygullible',
	'notveryhaggard',
	'notveryhaggle',
	'notveryhalfhearted',
	'notveryhalfheartedly',
	'notveryhallucinate',
	'notveryhallucination',
	'notveryhamper',
	'notveryhamstring',
	'notveryhamstrung',
	'notveryhandicapped',
	'notveryhaphazard',
	'notveryhapless',
	'notveryharangue',
	'notveryharass',
	'notveryharassment',
	'notveryharboring',
	'notveryharbors',
	'notveryhard',
	'notveryhard-hit',
	'notveryhard-line',
	'notveryhard-liner',
	'notveryhardball',
	'notveryharden',
	'notveryhardened',
	'notveryhardheaded',
	'notveryhardhearted',
	'notveryhardliner',
	'notveryhardliners',
	'notveryhardship',
	'notveryhardships',
	'notveryharm',
	'notveryharmful',
	'notveryharms',
	'notveryharpy',
	'notveryharridan',
	'notveryharried',
	'notveryharrow',
	'notveryharsh',
	'notveryharshly',
	'notveryhassle',
	'notveryhaste',
	'notveryhasty',
	'notveryhate',
	'notveryhateful',
	'notveryhatefully',
	'notveryhatefulness',
	'notveryhater',
	'notveryhatred',
	'notveryhaughtily',
	'notveryhaughty',
	'notveryhaunt',
	'notveryhaunting',
	'notveryhavoc',
	'notveryhawkish',
	'notveryhazard',
	'notveryhazardous',
	'notveryhazy',
	'notveryheadache',
	'notveryheadaches',
	'notveryheartbreak',
	'notveryheartbreaker',
	'notveryheartbreaking',
	'notveryheartbreakingly',
	'notveryheartless',
	'notveryheartrending',
	'notveryheathen',
	'notveryheavily',
	'notveryheavy-handed',
	'notveryheavyhearted',
	'notveryheck',
	'notveryheckle',
	'notveryhectic',
	'notveryhedge',
	'notveryhedonistic',
	'notveryheedless',
	'notveryhegemonism',
	'notveryhegemonistic',
	'notveryhegemony',
	'notveryheinous',
	'notveryhell',
	'notveryhell-bent',
	'notveryhellion',
	'notveryhelpless',
	'notveryhelplessly',
	'notveryhelplessness',
	'notveryheresy',
	'notveryheretic',
	'notveryheretical',
	'notveryhesitant',
	'notveryhideous',
	'notveryhideously',
	'notveryhideousness',
	'notveryhinder',
	'notveryhindrance',
	'notveryhoard',
	'notveryhoax',
	'notveryhobble',
	'notveryhole',
	'notveryhollow',
	'notveryhoodwink',
	'notveryhopeless',
	'notveryhopelessly',
	'notveryhopelessness',
	'notveryhorde',
	'notveryhorrendous',
	'notveryhorrendously',
	'notveryhorrible',
	'notveryhorribly',
	'notveryhorrid',
	'notveryhorrific',
	'notveryhorrifically',
	'notveryhorrify',
	'notveryhorrifying',
	'notveryhorrifyingly',
	'notveryhorror',
	'notveryhorrors',
	'notveryhostage',
	'notveryhostile',
	'notveryhostilities',
	'notveryhostility',
	'notveryhotbeds',
	'notveryhothead',
	'notveryhotheaded',
	'notveryhothouse',
	'notveryhubris',
	'notveryhuckster',
	'notveryhumbling',
	'notveryhumiliate',
	'notveryhumiliating',
	'notveryhumiliation',
	'notveryhunger',
	'notveryhungry',
	'notveryhurt',
	'notveryhurtful',
	'notveryhustler',
	'notveryhypocrisy',
	'notveryhypocrite',
	'notveryhypocrites',
	'notveryhypocritical',
	'notveryhypocritically',
	'notveryhysteria',
	'notveryhysteric',
	'notveryhysterical',
	'notveryhysterically',
	'notveryhysterics',
	'notveryicy',
	'notveryidiocies',
	'notveryidiocy',
	'notveryidiot',
	'notveryidiotic',
	'notveryidiotically',
	'notveryidiots',
	'notveryidle',
	'notveryignoble',
	'notveryignominious',
	'notveryignominiously',
	'notveryignominy',
	'notveryignorance',
	'notveryignorant',
	'notveryignore',
	'notveryignored',
	'notveryill',
	'notveryill-advised',
	'notveryill-conceived',
	'notveryill-fated',
	'notveryill-favored',
	'notveryill-mannered',
	'notveryill-natured',
	'notveryill-sorted',
	'notveryill-tempered',
	'notveryill-treated',
	'notveryill-treatment',
	'notveryill-usage',
	'notveryill-used',
	'notveryillegal',
	'notveryillegally',
	'notveryillegitimate',
	'notveryillicit',
	'notveryilliquid',
	'notveryilliterate',
	'notveryillness',
	'notveryillogic',
	'notveryillogical',
	'notveryillogically',
	'notveryillusion',
	'notveryillusions',
	'notveryillusory',
	'notveryimaginary',
	'notveryimbalance',
	'notveryimbalanced',
	'notveryimbecile',
	'notveryimbroglio',
	'notveryimmaterial',
	'notveryimmature',
	'notveryimminence',
	'notveryimminent',
	'notveryimminently',
	'notveryimmobilized',
	'notveryimmoderate',
	'notveryimmoderately',
	'notveryimmodest',
	'notveryimmoral',
	'notveryimmorality',
	'notveryimmorally',
	'notveryimmovable',
	'notveryimpair',
	'notveryimpaired',
	'notveryimpasse',
	'notveryimpassive',
	'notveryimpatience',
	'notveryimpatient',
	'notveryimpatiently',
	'notveryimpeach',
	'notveryimpedance',
	'notveryimpede',
	'notveryimpediment',
	'notveryimpending',
	'notveryimpenitent',
	'notveryimperfect',
	'notveryimperfectly',
	'notveryimperialist',
	'notveryimperil',
	'notveryimperious',
	'notveryimperiously',
	'notveryimpermissible',
	'notveryimpersonal',
	'notveryimpertinent',
	'notveryimpetuous',
	'notveryimpetuously',
	'notveryimpiety',
	'notveryimpinge',
	'notveryimpious',
	'notveryimplacable',
	'notveryimplausible',
	'notveryimplausibly',
	'notveryimplicate',
	'notveryimplication',
	'notveryimplode',
	'notveryimplore',
	'notveryimploring',
	'notveryimploringly',
	'notveryimpolite',
	'notveryimpolitely',
	'notveryimpolitic',
	'notveryimportunate',
	'notveryimportune',
	'notveryimpose',
	'notveryimposers',
	'notveryimposing',
	'notveryimposition',
	'notveryimpossible',
	'notveryimpossiblity',
	'notveryimpossibly',
	'notveryimpotent',
	'notveryimpoverish',
	'notveryimpoverished',
	'notveryimpractical',
	'notveryimprecate',
	'notveryimprecise',
	'notveryimprecisely',
	'notveryimprecision',
	'notveryimprison',
	'notveryimprisoned',
	'notveryimprisonment',
	'notveryimprobability',
	'notveryimprobable',
	'notveryimprobably',
	'notveryimproper',
	'notveryimproperly',
	'notveryimpropriety',
	'notveryimprudence',
	'notveryimprudent',
	'notveryimpudence',
	'notveryimpudent',
	'notveryimpudently',
	'notveryimpugn',
	'notveryimpulsive',
	'notveryimpulsively',
	'notveryimpunity',
	'notveryimpure',
	'notveryimpurity',
	'notveryin',
	'notveryinability',
	'notveryinaccessible',
	'notveryinaccuracies',
	'notveryinaccuracy',
	'notveryinaccurate',
	'notveryinaccurately',
	'notveryinaction',
	'notveryinactive',
	'notveryinadequacy',
	'notveryinadequate',
	'notveryinadequately',
	'notveryinadverent',
	'notveryinadverently',
	'notveryinadvisable',
	'notveryinadvisably',
	'notveryinane',
	'notveryinanely',
	'notveryinappropriate',
	'notveryinappropriately',
	'notveryinapt',
	'notveryinaptitude',
	'notveryinarticulate',
	'notveryinattentive',
	'notveryincapable',
	'notveryincapably',
	'notveryincautious',
	'notveryincendiary',
	'notveryincense',
	'notveryincessant',
	'notveryincessantly',
	'notveryincite',
	'notveryincitement',
	'notveryincivility',
	'notveryinclement',
	'notveryincognizant',
	'notveryincoherence',
	'notveryincoherent',
	'notveryincoherently',
	'notveryincommensurate',
	'notveryincommunicative',
	'notveryincomparable',
	'notveryincomparably',
	'notveryincompatibility',
	'notveryincompatible',
	'notveryincompetence',
	'notveryincompetent',
	'notveryincompetently',
	'notveryincomplete',
	'notveryincompliant',
	'notveryincomprehensible',
	'notveryincomprehension',
	'notveryinconceivable',
	'notveryinconceivably',
	'notveryinconclusive',
	'notveryincongruous',
	'notveryincongruously',
	'notveryinconsequent',
	'notveryinconsequential',
	'notveryinconsequentially',
	'notveryinconsequently',
	'notveryinconsiderate',
	'notveryinconsiderately',
	'notveryinconsistence',
	'notveryinconsistencies',
	'notveryinconsistency',
	'notveryinconsistent',
	'notveryinconsolable',
	'notveryinconsolably',
	'notveryinconstant',
	'notveryinconvenience',
	'notveryinconvenient',
	'notveryinconveniently',
	'notveryincorrect',
	'notveryincorrectly',
	'notveryincorrigible',
	'notveryincorrigibly',
	'notveryincredulous',
	'notveryincredulously',
	'notveryinculcate',
	'notveryindecency',
	'notveryindecent',
	'notveryindecently',
	'notveryindecision',
	'notveryindecisive',
	'notveryindecisively',
	'notveryindecorum',
	'notveryindefensible',
	'notveryindefinite',
	'notveryindefinitely',
	'notveryindelicate',
	'notveryindeterminable',
	'notveryindeterminably',
	'notveryindeterminate',
	'notveryindifference',
	'notveryindifferent',
	'notveryindigent',
	'notveryindignant',
	'notveryindignantly',
	'notveryindignation',
	'notveryindignity',
	'notveryindiscernible',
	'notveryindiscreet',
	'notveryindiscreetly',
	'notveryindiscretion',
	'notveryindiscriminate',
	'notveryindiscriminately',
	'notveryindiscriminating',
	'notveryindisposed',
	'notveryindistinct',
	'notveryindistinctive',
	'notveryindoctrinate',
	'notveryindoctrinated',
	'notveryindoctrination',
	'notveryindolent',
	'notveryindulge',
	'notveryinebriated',
	'notveryineffective',
	'notveryineffectively',
	'notveryineffectiveness',
	'notveryineffectual',
	'notveryineffectually',
	'notveryineffectualness',
	'notveryinefficacious',
	'notveryinefficacy',
	'notveryinefficiency',
	'notveryinefficient',
	'notveryinefficiently',
	'notveryinelegance',
	'notveryinelegant',
	'notveryineligible',
	'notveryineloquent',
	'notveryineloquently',
	'notveryinept',
	'notveryineptitude',
	'notveryineptly',
	'notveryinequalities',
	'notveryinequality',
	'notveryinequitable',
	'notveryinequitably',
	'notveryinequities',
	'notveryinertia',
	'notveryinescapable',
	'notveryinescapably',
	'notveryinessential',
	'notveryinevitable',
	'notveryinevitably',
	'notveryinexact',
	'notveryinexcusable',
	'notveryinexcusably',
	'notveryinexorable',
	'notveryinexorably',
	'notveryinexperience',
	'notveryinexperienced',
	'notveryinexpert',
	'notveryinexpertly',
	'notveryinexpiable',
	'notveryinexplainable',
	'notveryinexplicable',
	'notveryinextricable',
	'notveryinextricably',
	'notveryinfamous',
	'notveryinfamously',
	'notveryinfamy',
	'notveryinfatuated',
	'notveryinfected',
	'notveryinferior',
	'notveryinferiority',
	'notveryinfernal',
	'notveryinfest',
	'notveryinfested',
	'notveryinfidel',
	'notveryinfidels',
	'notveryinfiltrator',
	'notveryinfiltrators',
	'notveryinfirm',
	'notveryinflame',
	'notveryinflammatory',
	'notveryinflated',
	'notveryinflationary',
	'notveryinflexible',
	'notveryinflict',
	'notveryinfraction',
	'notveryinfringe',
	'notveryinfringement',
	'notveryinfringements',
	'notveryinfuriate',
	'notveryinfuriated',
	'notveryinfuriating',
	'notveryinfuriatingly',
	'notveryinglorious',
	'notveryingrate',
	'notveryingratitude',
	'notveryinhibit',
	'notveryinhibited',
	'notveryinhibition',
	'notveryinhospitable',
	'notveryinhospitality',
	'notveryinhuman',
	'notveryinhumane',
	'notveryinhumanity',
	'notveryinimical',
	'notveryinimically',
	'notveryiniquitous',
	'notveryiniquity',
	'notveryinjudicious',
	'notveryinjure',
	'notveryinjured',
	'notveryinjurious',
	'notveryinjury',
	'notveryinjustice',
	'notveryinjusticed',
	'notveryinjustices',
	'notveryinnuendo',
	'notveryinopportune',
	'notveryinordinate',
	'notveryinordinately',
	'notveryinsane',
	'notveryinsanely',
	'notveryinsanity',
	'notveryinsatiable',
	'notveryinsecure',
	'notveryinsecurity',
	'notveryinsensible',
	'notveryinsensitive',
	'notveryinsensitively',
	'notveryinsensitivity',
	'notveryinsidious',
	'notveryinsidiously',
	'notveryinsignificance',
	'notveryinsignificant',
	'notveryinsignificantly',
	'notveryinsincere',
	'notveryinsincerely',
	'notveryinsincerity',
	'notveryinsinuate',
	'notveryinsinuating',
	'notveryinsinuation',
	'notveryinsociable',
	'notveryinsolence',
	'notveryinsolent',
	'notveryinsolently',
	'notveryinsolvent',
	'notveryinsouciance',
	'notveryinstability',
	'notveryinstable',
	'notveryinstigate',
	'notveryinstigator',
	'notveryinstigators',
	'notveryinsubordinate',
	'notveryinsubstantial',
	'notveryinsubstantially',
	'notveryinsufferable',
	'notveryinsufferably',
	'notveryinsufficiency',
	'notveryinsufficient',
	'notveryinsufficiently',
	'notveryinsular',
	'notveryinsult',
	'notveryinsulted',
	'notveryinsulting',
	'notveryinsultingly',
	'notveryinsupportable',
	'notveryinsupportably',
	'notveryinsurmountable',
	'notveryinsurmountably',
	'notveryinsurrection',
	'notveryintense',
	'notveryinterfere',
	'notveryinterference',
	'notveryintermittent',
	'notveryinterrogated',
	'notveryinterrupt',
	'notveryinterrupted',
	'notveryinterruption',
	'notveryintimidate',
	'notveryintimidated',
	'notveryintimidating',
	'notveryintimidatingly',
	'notveryintimidation',
	'notveryintolerable',
	'notveryintolerablely',
	'notveryintolerance',
	'notveryintolerant',
	'notveryintoxicate',
	'notveryintoxicated',
	'notveryintractable',
	'notveryintransigence',
	'notveryintransigent',
	'notveryintrude',
	'notveryintrusion',
	'notveryintrusive',
	'notveryinundate',
	'notveryinundated',
	'notveryinvader',
	'notveryinvalid',
	'notveryinvalidate',
	'notveryinvalidated',
	'notveryinvalidity',
	'notveryinvasive',
	'notveryinvective',
	'notveryinveigle',
	'notveryinvidious',
	'notveryinvidiously',
	'notveryinvidiousness',
	'notveryinvisible',
	'notveryinvoluntarily',
	'notveryinvoluntary',
	'notveryirate',
	'notveryirately',
	'notveryire',
	'notveryirk',
	'notveryirksome',
	'notveryironic',
	'notveryironies',
	'notveryirony',
	'notveryirrational',
	'notveryirrationality',
	'notveryirrationally',
	'notveryirreconcilable',
	'notveryirredeemable',
	'notveryirredeemably',
	'notveryirreformable',
	'notveryirregular',
	'notveryirregularity',
	'notveryirrelevance',
	'notveryirrelevant',
	'notveryirreparable',
	'notveryirreplacible',
	'notveryirrepressible',
	'notveryirresolute',
	'notveryirresolvable',
	'notveryirresponsible',
	'notveryirresponsibly',
	'notveryirretrievable',
	'notveryirreverence',
	'notveryirreverent',
	'notveryirreverently',
	'notveryirreversible',
	'notveryirritable',
	'notveryirritably',
	'notveryirritant',
	'notveryirritate',
	'notveryirritated',
	'notveryirritating',
	'notveryirritation',
	'notveryisolate',
	'notveryisolated',
	'notveryisolation',
	'notveryitch',
	'notveryjabber',
	'notveryjaded',
	'notveryjam',
	'notveryjar',
	'notveryjaundiced',
	'notveryjealous',
	'notveryjealously',
	'notveryjealousness',
	'notveryjealousy',
	'notveryjeer',
	'notveryjeering',
	'notveryjeeringly',
	'notveryjeers',
	'notveryjeopardize',
	'notveryjeopardy',
	'notveryjerk',
	'notveryjittery',
	'notveryjobless',
	'notveryjoker',
	'notveryjolt',
	'notveryjoyless',
	'notveryjudged',
	'notveryjumpy',
	'notveryjunk',
	'notveryjunky',
	'notveryjuvenile',
	'notverykaput',
	'notverykick',
	'notverykill',
	'notverykiller',
	'notverykilljoy',
	'notveryknave',
	'notveryknife',
	'notveryknock',
	'notverykook',
	'notverykooky',
	'notverylabeled',
	'notverylack',
	'notverylackadaisical',
	'notverylackey',
	'notverylackeys',
	'notverylacking',
	'notverylackluster',
	'notverylaconic',
	'notverylag',
	'notverylambast',
	'notverylambaste',
	'notverylame',
	'notverylame-duck',
	'notverylament',
	'notverylamentable',
	'notverylamentably',
	'notverylanguid',
	'notverylanguish',
	'notverylanguor',
	'notverylanguorous',
	'notverylanguorously',
	'notverylanky',
	'notverylapse',
	'notverylascivious',
	'notverylast-ditch',
	'notverylaugh',
	'notverylaughable',
	'notverylaughably',
	'notverylaughingstock',
	'notverylaughter',
	'notverylawbreaker',
	'notverylawbreaking',
	'notverylawless',
	'notverylawlessness',
	'notverylax',
	'notverylazy',
	'notveryleak',
	'notveryleakage',
	'notveryleaky',
	'notverylech',
	'notverylecher',
	'notverylecherous',
	'notverylechery',
	'notverylecture',
	'notveryleech',
	'notveryleer',
	'notveryleery',
	'notveryleft-leaning',
	'notveryless-developed',
	'notverylessen',
	'notverylesser',
	'notverylesser-known',
	'notveryletch',
	'notverylethal',
	'notverylethargic',
	'notverylethargy',
	'notverylewd',
	'notverylewdly',
	'notverylewdness',
	'notveryliability',
	'notveryliable',
	'notveryliar',
	'notveryliars',
	'notverylicentious',
	'notverylicentiously',
	'notverylicentiousness',
	'notverylie',
	'notverylier',
	'notverylies',
	'notverylife-threatening',
	'notverylifeless',
	'notverylimit',
	'notverylimitation',
	'notverylimited',
	'notverylimp',
	'notverylistless',
	'notverylitigious',
	'notverylittle',
	'notverylittle-known',
	'notverylivid',
	'notverylividly',
	'notveryloath',
	'notveryloathe',
	'notveryloathing',
	'notveryloathly',
	'notveryloathsome',
	'notveryloathsomely',
	'notverylone',
	'notveryloneliness',
	'notverylonely',
	'notverylonesome',
	'notverylong',
	'notverylonging',
	'notverylongingly',
	'notveryloophole',
	'notveryloopholes',
	'notveryloot',
	'notverylorn',
	'notverylose',
	'notveryloser',
	'notverylosing',
	'notveryloss',
	'notverylost',
	'notverylousy',
	'notveryloveless',
	'notverylovelorn',
	'notverylow',
	'notverylow-rated',
	'notverylowly',
	'notveryludicrous',
	'notveryludicrously',
	'notverylugubrious',
	'notverylukewarm',
	'notverylull',
	'notverylunatic',
	'notverylunaticism',
	'notverylurch',
	'notverylure',
	'notverylurid',
	'notverylurk',
	'notverylurking',
	'notverylying',
	'notverymacabre',
	'notverymad',
	'notverymadden',
	'notverymaddening',
	'notverymaddeningly',
	'notverymadder',
	'notverymadly',
	'notverymadman',
	'notverymadness',
	'notverymaladjusted',
	'notverymaladjustment',
	'notverymalady',
	'notverymalaise',
	'notverymalcontent',
	'notverymalcontented',
	'notverymaledict',
	'notverymalevolence',
	'notverymalevolent',
	'notverymalevolently',
	'notverymalice',
	'notverymalicious',
	'notverymaliciously',
	'notverymaliciousness',
	'notverymalign',
	'notverymalignant',
	'notverymalodorous',
	'notverymaltreatment',
	'notverymaneuver',
	'notverymangle',
	'notverymania',
	'notverymaniac',
	'notverymaniacal',
	'notverymanic',
	'notverymanipulate',
	'notverymanipulated',
	'notverymanipulation',
	'notverymanipulative',
	'notverymanipulators',
	'notverymar',
	'notverymarginal',
	'notverymarginally',
	'notverymartyrdom',
	'notverymartyrdom-seeking',
	'notverymasochistic',
	'notverymassacre',
	'notverymassacres',
	'notverymaverick',
	'notverymawkish',
	'notverymawkishly',
	'notverymawkishness',
	'notverymaxi-devaluation',
	'notverymeager',
	'notverymeaningless',
	'notverymeanness',
	'notverymeddle',
	'notverymeddlesome',
	'notverymediocrity',
	'notverymelancholy',
	'notverymelodramatic',
	'notverymelodramatically',
	'notverymenace',
	'notverymenacing',
	'notverymenacingly',
	'notverymendacious',
	'notverymendacity',
	'notverymenial',
	'notverymerciless',
	'notverymercilessly',
	'notverymere',
	'notverymess',
	'notverymessy',
	'notverymidget',
	'notverymiff',
	'notverymiffed',
	'notverymilitancy',
	'notverymind',
	'notverymindless',
	'notverymindlessly',
	'notverymirage',
	'notverymire',
	'notverymisapprehend',
	'notverymisbecome',
	'notverymisbecoming',
	'notverymisbegotten',
	'notverymisbehave',
	'notverymisbehavior',
	'notverymiscalculate',
	'notverymiscalculation',
	'notverymischief',
	'notverymischievous',
	'notverymischievously',
	'notverymisconception',
	'notverymisconceptions',
	'notverymiscreant',
	'notverymiscreants',
	'notverymisdirection',
	'notverymiser',
	'notverymiserable',
	'notverymiserableness',
	'notverymiserably',
	'notverymiseries',
	'notverymiserly',
	'notverymisery',
	'notverymisfit',
	'notverymisfortune',
	'notverymisgiving',
	'notverymisgivings',
	'notverymisguidance',
	'notverymisguide',
	'notverymisguided',
	'notverymishandle',
	'notverymishap',
	'notverymisinform',
	'notverymisinformed',
	'notverymisinterpret',
	'notverymisjudge',
	'notverymisjudgment',
	'notverymislead',
	'notverymisleading',
	'notverymisleadingly',
	'notverymisled',
	'notverymislike',
	'notverymismanage',
	'notverymisread',
	'notverymisreading',
	'notverymisrepresent',
	'notverymisrepresentation',
	'notverymiss',
	'notverymisstatement',
	'notverymistake',
	'notverymistaken',
	'notverymistakenly',
	'notverymistakes',
	'notverymistified',
	'notverymistreated',
	'notverymistrust',
	'notverymistrusted',
	'notverymistrustful',
	'notverymistrustfully',
	'notverymisunderstand',
	'notverymisunderstanding',
	'notverymisunderstandings',
	'notverymisunderstood',
	'notverymisuse',
	'notverymoan',
	'notverymock',
	'notverymocked',
	'notverymockeries',
	'notverymockery',
	'notverymocking',
	'notverymockingly',
	'notverymolest',
	'notverymolestation',
	'notverymolested',
	'notverymonotonous',
	'notverymonotony',
	'notverymonster',
	'notverymonstrosities',
	'notverymonstrosity',
	'notverymonstrous',
	'notverymonstrously',
	'notverymoody',
	'notverymoon',
	'notverymoot',
	'notverymope',
	'notverymorbid',
	'notverymorbidly',
	'notverymordant',
	'notverymordantly',
	'notverymoribund',
	'notverymortification',
	'notverymortified',
	'notverymortify',
	'notverymortifying',
	'notverymotionless',
	'notverymotley',
	'notverymourn',
	'notverymourner',
	'notverymournful',
	'notverymournfully',
	'notverymuddle',
	'notverymuddy',
	'notverymudslinger',
	'notverymudslinging',
	'notverymulish',
	'notverymulti-polarization',
	'notverymundane',
	'notverymurder',
	'notverymurderous',
	'notverymurderously',
	'notverymurky',
	'notverymuscle-flexing',
	'notverymysterious',
	'notverymysteriously',
	'notverymystery',
	'notverymystify',
	'notverymyth',
	'notverynag',
	'notverynagged',
	'notverynagging',
	'notverynaive',
	'notverynaively',
	'notverynarrow',
	'notverynarrower',
	'notverynastily',
	'notverynastiness',
	'notverynasty',
	'notverynationalism',
	'notverynaughty',
	'notverynauseate',
	'notverynauseating',
	'notverynauseatingly',
	'notverynebulous',
	'notverynebulously',
	'notveryneedless',
	'notveryneedlessly',
	'notveryneedy',
	'notverynefarious',
	'notverynefariously',
	'notverynegate',
	'notverynegation',
	'notverynegative',
	'notveryneglect',
	'notveryneglected',
	'notverynegligence',
	'notverynegligent',
	'notverynegligible',
	'notverynemesis',
	'notverynervous',
	'notverynervously',
	'notverynervousness',
	'notverynettle',
	'notverynettlesome',
	'notveryneurotic',
	'notveryneurotically',
	'notveryniggle',
	'notverynightmare',
	'notverynightmarish',
	'notverynightmarishly',
	'notverynix',
	'notverynoisy',
	'notverynon-confidence',
	'notverynonconforming',
	'notverynonexistent',
	'notverynonsense',
	'notverynosey',
	'notverynotorious',
	'notverynotoriously',
	'notverynuisance',
	'notverynumb',
	'notverynuts',
	'notverynutty',
	'notveryobese',
	'notveryobject',
	'notveryobjectified',
	'notveryobjection',
	'notveryobjectionable',
	'notveryobjections',
	'notveryobligated',
	'notveryoblique',
	'notveryobliterate',
	'notveryobliterated',
	'notveryoblivious',
	'notveryobnoxious',
	'notveryobnoxiously',
	'notveryobscene',
	'notveryobscenely',
	'notveryobscenity',
	'notveryobscure',
	'notveryobscurity',
	'notveryobsess',
	'notveryobsessed',
	'notveryobsession',
	'notveryobsessions',
	'notveryobsessive',
	'notveryobsessively',
	'notveryobsessiveness',
	'notveryobsolete',
	'notveryobstacle',
	'notveryobstinate',
	'notveryobstinately',
	'notveryobstruct',
	'notveryobstructed',
	'notveryobstruction',
	'notveryobtrusive',
	'notveryobtuse',
	'notveryodd',
	'notveryodder',
	'notveryoddest',
	'notveryoddities',
	'notveryoddity',
	'notveryoddly',
	'notveryoffence',
	'notveryoffend',
	'notveryoffended',
	'notveryoffending',
	'notveryoffenses',
	'notveryoffensive',
	'notveryoffensively',
	'notveryoffensiveness',
	'notveryofficious',
	'notveryominous',
	'notveryominously',
	'notveryomission',
	'notveryomit',
	'notveryone-side',
	'notveryone-sided',
	'notveryonerous',
	'notveryonerously',
	'notveryonslaught',
	'notveryopinionated',
	'notveryopponent',
	'notveryopportunistic',
	'notveryoppose',
	'notveryopposed',
	'notveryopposition',
	'notveryoppositions',
	'notveryoppress',
	'notveryoppressed',
	'notveryoppression',
	'notveryoppressive',
	'notveryoppressively',
	'notveryoppressiveness',
	'notveryoppressors',
	'notveryordeal',
	'notveryorphan',
	'notveryostracize',
	'notveryoutbreak',
	'notveryoutburst',
	'notveryoutbursts',
	'notveryoutcast',
	'notveryoutcry',
	'notveryoutdated',
	'notveryoutlaw',
	'notveryoutmoded',
	'notveryoutrage',
	'notveryoutraged',
	'notveryoutrageous',
	'notveryoutrageously',
	'notveryoutrageousness',
	'notveryoutrages',
	'notveryoutsider',
	'notveryover-acted',
	'notveryover-valuation',
	'notveryoveract',
	'notveryoveracted',
	'notveryoverawe',
	'notveryoverbalance',
	'notveryoverbalanced',
	'notveryoverbearing',
	'notveryoverbearingly',
	'notveryoverblown',
	'notveryovercome',
	'notveryoverdo',
	'notveryoverdone',
	'notveryoverdue',
	'notveryoveremphasize',
	'notveryoverkill',
	'notveryoverlook',
	'notveryoverplay',
	'notveryoverpower',
	'notveryoverreach',
	'notveryoverrun',
	'notveryovershadow',
	'notveryoversight',
	'notveryoversimplification',
	'notveryoversimplified',
	'notveryoversimplify',
	'notveryoversized',
	'notveryoverstate',
	'notveryoverstatement',
	'notveryoverstatements',
	'notveryovertaxed',
	'notveryoverthrow',
	'notveryoverturn',
	'notveryoverwhelm',
	'notveryoverwhelmed',
	'notveryoverwhelming',
	'notveryoverwhelmingly',
	'notveryoverworked',
	'notveryoverzealous',
	'notveryoverzealously',
	'notverypain',
	'notverypainful',
	'notverypainfully',
	'notverypains',
	'notverypale',
	'notverypaltry',
	'notverypan',
	'notverypandemonium',
	'notverypanic',
	'notverypanicky',
	'notveryparadoxical',
	'notveryparadoxically',
	'notveryparalize',
	'notveryparalyzed',
	'notveryparanoia',
	'notveryparanoid',
	'notveryparasite',
	'notverypariah',
	'notveryparody',
	'notverypartiality',
	'notverypartisan',
	'notverypartisans',
	'notverypasse',
	'notverypassive',
	'notverypassiveness',
	'notverypathetic',
	'notverypathetically',
	'notverypatronize',
	'notverypaucity',
	'notverypauper',
	'notverypaupers',
	'notverypayback',
	'notverypeculiar',
	'notverypeculiarly',
	'notverypedantic',
	'notverypedestrian',
	'notverypeeve',
	'notverypeeved',
	'notverypeevish',
	'notverypeevishly',
	'notverypenalize',
	'notverypenalty',
	'notveryperfidious',
	'notveryperfidity',
	'notveryperfunctory',
	'notveryperil',
	'notveryperilous',
	'notveryperilously',
	'notveryperipheral',
	'notveryperish',
	'notverypernicious',
	'notveryperplex',
	'notveryperplexed',
	'notveryperplexing',
	'notveryperplexity',
	'notverypersecute',
	'notverypersecution',
	'notverypertinacious',
	'notverypertinaciously',
	'notverypertinacity',
	'notveryperturb',
	'notveryperturbed',
	'notveryperverse',
	'notveryperversely',
	'notveryperversion',
	'notveryperversity',
	'notverypervert',
	'notveryperverted',
	'notverypessimism',
	'notverypessimistic',
	'notverypessimistically',
	'notverypest',
	'notverypestilent',
	'notverypetrified',
	'notverypetrify',
	'notverypettifog',
	'notverypetty',
	'notveryphobia',
	'notveryphobic',
	'notveryphony',
	'notverypicky',
	'notverypillage',
	'notverypillory',
	'notverypinch',
	'notverypine',
	'notverypique',
	'notverypissed',
	'notverypitiable',
	'notverypitiful',
	'notverypitifully',
	'notverypitiless',
	'notverypitilessly',
	'notverypittance',
	'notverypity',
	'notveryplagiarize',
	'notveryplague',
	'notveryplain',
	'notveryplaything',
	'notveryplea',
	'notveryplead',
	'notverypleading',
	'notverypleadingly',
	'notverypleas',
	'notveryplebeian',
	'notveryplight',
	'notveryplot',
	'notveryplotters',
	'notveryploy',
	'notveryplunder',
	'notveryplunderer',
	'notverypointless',
	'notverypointlessly',
	'notverypoison',
	'notverypoisonous',
	'notverypoisonously',
	'notverypolarisation',
	'notverypolemize',
	'notverypollute',
	'notverypolluter',
	'notverypolluters',
	'notverypolution',
	'notverypompous',
	'notverypooped',
	'notverypoor',
	'notverypoorly',
	'notveryposturing',
	'notverypout',
	'notverypoverty',
	'notverypowerless',
	'notveryprate',
	'notverypratfall',
	'notveryprattle',
	'notveryprecarious',
	'notveryprecariously',
	'notveryprecipitate',
	'notveryprecipitous',
	'notverypredatory',
	'notverypredicament',
	'notverypredjudiced',
	'notveryprejudge',
	'notveryprejudice',
	'notveryprejudicial',
	'notverypremeditated',
	'notverypreoccupied',
	'notverypreoccupy',
	'notverypreposterous',
	'notverypreposterously',
	'notverypressing',
	'notverypressured',
	'notverypresume',
	'notverypresumptuous',
	'notverypresumptuously',
	'notverypretence',
	'notverypretend',
	'notverypretense',
	'notverypretentious',
	'notverypretentiously',
	'notveryprevaricate',
	'notverypricey',
	'notveryprickle',
	'notveryprickles',
	'notveryprideful',
	'notveryprimitive',
	'notveryprison',
	'notveryprisoner',
	'notveryproblem',
	'notveryproblematic',
	'notveryproblems',
	'notveryprocrastinate',
	'notveryprocrastination',
	'notveryprofane',
	'notveryprofanity',
	'notveryprohibit',
	'notveryprohibitive',
	'notveryprohibitively',
	'notverypropaganda',
	'notverypropagandize',
	'notveryproscription',
	'notveryproscriptions',
	'notveryprosecute',
	'notveryprosecuted',
	'notveryprotest',
	'notveryprotests',
	'notveryprotracted',
	'notveryprovocation',
	'notveryprovocative',
	'notveryprovoke',
	'notveryprovoked',
	'notverypry',
	'notverypsychopathic',
	'notverypsychotic',
	'notverypugnacious',
	'notverypugnaciously',
	'notverypugnacity',
	'notverypunch',
	'notverypunish',
	'notverypunishable',
	'notverypunished',
	'notverypunitive',
	'notverypuny',
	'notverypuppet',
	'notverypuppets',
	'notverypushed',
	'notverypuzzle',
	'notverypuzzled',
	'notverypuzzlement',
	'notverypuzzling',
	'notveryquack',
	'notveryqualms',
	'notveryquandary',
	'notveryquarrel',
	'notveryquarrellous',
	'notveryquarrellously',
	'notveryquarrels',
	'notveryquarrelsome',
	'notveryquash',
	'notveryqueer',
	'notveryquestionable',
	'notveryquestioned',
	'notveryquibble',
	'notveryquiet',
	'notveryquit',
	'notveryquitter',
	'notveryracism',
	'notveryracist',
	'notveryracists',
	'notveryrack',
	'notveryradical',
	'notveryradicalization',
	'notveryradically',
	'notveryradicals',
	'notveryrage',
	'notveryragged',
	'notveryraging',
	'notveryrail',
	'notveryrampage',
	'notveryrampant',
	'notveryramshackle',
	'notveryrancor',
	'notveryrank',
	'notveryrankle',
	'notveryrant',
	'notveryranting',
	'notveryrantingly',
	'notveryraped',
	'notveryrascal',
	'notveryrash',
	'notveryrat',
	'notveryrationalize',
	'notveryrattle',
	'notveryrattled',
	'notveryravage',
	'notveryraving',
	'notveryreactionary',
	'notveryrebellious',
	'notveryrebuff',
	'notveryrebuke',
	'notveryrecalcitrant',
	'notveryrecant',
	'notveryrecession',
	'notveryrecessionary',
	'notveryreckless',
	'notveryrecklessly',
	'notveryrecklessness',
	'notveryrecoil',
	'notveryrecourses',
	'notveryredundancy',
	'notveryredundant',
	'notveryrefusal',
	'notveryrefuse',
	'notveryrefutation',
	'notveryrefute',
	'notveryregress',
	'notveryregression',
	'notveryregressive',
	'notveryregret',
	'notveryregretful',
	'notveryregretfully',
	'notveryregrettable',
	'notveryregrettably',
	'notveryreject',
	'notveryrejected',
	'notveryrejection',
	'notveryrelapse',
	'notveryrelentless',
	'notveryrelentlessly',
	'notveryrelentlessness',
	'notveryreluctance',
	'notveryreluctant',
	'notveryreluctantly',
	'notveryremorse',
	'notveryremorseful',
	'notveryremorsefully',
	'notveryremorseless',
	'notveryremorselessly',
	'notveryremorselessness',
	'notveryrenounce',
	'notveryrenunciation',
	'notveryrepel',
	'notveryrepetitive',
	'notveryreprehensible',
	'notveryreprehensibly',
	'notveryreprehension',
	'notveryreprehensive',
	'notveryrepress',
	'notveryrepression',
	'notveryrepressive',
	'notveryreprimand',
	'notveryreproach',
	'notveryreproachful',
	'notveryreprove',
	'notveryreprovingly',
	'notveryrepudiate',
	'notveryrepudiation',
	'notveryrepugn',
	'notveryrepugnance',
	'notveryrepugnant',
	'notveryrepugnantly',
	'notveryrepulse',
	'notveryrepulsed',
	'notveryrepulsing',
	'notveryrepulsive',
	'notveryrepulsively',
	'notveryrepulsiveness',
	'notveryresent',
	'notveryresented',
	'notveryresentful',
	'notveryresentment',
	'notveryreservations',
	'notveryresignation',
	'notveryresigned',
	'notveryresistance',
	'notveryresistant',
	'notveryrestless',
	'notveryrestlessness',
	'notveryrestrict',
	'notveryrestricted',
	'notveryrestriction',
	'notveryrestrictive',
	'notveryretaliate',
	'notveryretaliatory',
	'notveryretard',
	'notveryretarded',
	'notveryreticent',
	'notveryretire',
	'notveryretract',
	'notveryretreat',
	'notveryrevenge',
	'notveryrevengeful',
	'notveryrevengefully',
	'notveryrevert',
	'notveryrevile',
	'notveryreviled',
	'notveryrevoke',
	'notveryrevolt',
	'notveryrevolting',
	'notveryrevoltingly',
	'notveryrevulsion',
	'notveryrevulsive',
	'notveryrhapsodize',
	'notveryrhetoric',
	'notveryrhetorical',
	'notveryrid',
	'notveryridicule',
	'notveryridiculed',
	'notveryridiculous',
	'notveryridiculously',
	'notveryrife',
	'notveryrift',
	'notveryrifts',
	'notveryrigid',
	'notveryrigor',
	'notveryrigorous',
	'notveryrile',
	'notveryriled',
	'notveryrisk',
	'notveryrisky',
	'notveryrival',
	'notveryrivalry',
	'notveryroadblocks',
	'notveryrobbed',
	'notveryrocky',
	'notveryrogue',
	'notveryrollercoaster',
	'notveryrot',
	'notveryrotten',
	'notveryrough',
	'notveryrubbish',
	'notveryrude',
	'notveryrue',
	'notveryruffian',
	'notveryruffle',
	'notveryruin',
	'notveryruinous',
	'notveryrumbling',
	'notveryrumor',
	'notveryrumors',
	'notveryrumours',
	'notveryrumple',
	'notveryrun-down',
	'notveryrunaway',
	'notveryrupture',
	'notveryrusty',
	'notveryruthless',
	'notveryruthlessly',
	'notveryruthlessness',
	'notverysabotage',
	'notverysacrifice',
	'notverysad',
	'notverysadden',
	'notverysadistic',
	'notverysadly',
	'notverysadness',
	'notverysag',
	'notverysalacious',
	'notverysanctimonious',
	'notverysap',
	'notverysarcasm',
	'notverysarcastic',
	'notverysarcastically',
	'notverysardonic',
	'notverysardonically',
	'notverysass',
	'notverysatirical',
	'notverysatirize',
	'notverysavage',
	'notverysavaged',
	'notverysavagely',
	'notverysavagery',
	'notverysavages',
	'notveryscandal',
	'notveryscandalize',
	'notveryscandalized',
	'notveryscandalous',
	'notveryscandalously',
	'notveryscandals',
	'notveryscant',
	'notveryscapegoat',
	'notveryscar',
	'notveryscarce',
	'notveryscarcely',
	'notveryscarcity',
	'notveryscare',
	'notveryscared',
	'notveryscarier',
	'notveryscariest',
	'notveryscarily',
	'notveryscarred',
	'notveryscars',
	'notveryscary',
	'notveryscathing',
	'notveryscathingly',
	'notveryscheme',
	'notveryscheming',
	'notveryscoff',
	'notveryscoffingly',
	'notveryscold',
	'notveryscolding',
	'notveryscoldingly',
	'notveryscorching',
	'notveryscorchingly',
	'notveryscorn',
	'notveryscornful',
	'notveryscornfully',
	'notveryscoundrel',
	'notveryscourge',
	'notveryscowl',
	'notveryscream',
	'notveryscreech',
	'notveryscrew',
	'notveryscrewed',
	'notveryscum',
	'notveryscummy',
	'notverysecond-class',
	'notverysecond-tier',
	'notverysecretive',
	'notverysedentary',
	'notveryseedy',
	'notveryseethe',
	'notveryseething',
	'notveryself-coup',
	'notveryself-criticism',
	'notveryself-defeating',
	'notveryself-destructive',
	'notveryself-humiliation',
	'notveryself-interest',
	'notveryself-interested',
	'notveryself-serving',
	'notveryselfinterested',
	'notveryselfish',
	'notveryselfishly',
	'notveryselfishness',
	'notverysenile',
	'notverysensationalize',
	'notverysenseless',
	'notverysenselessly',
	'notverysensitive',
	'notveryseriousness',
	'notverysermonize',
	'notveryservitude',
	'notveryset-up',
	'notverysever',
	'notverysevere',
	'notveryseverely',
	'notveryseverity',
	'notveryshabby',
	'notveryshadow',
	'notveryshadowy',
	'notveryshady',
	'notveryshake',
	'notveryshaky',
	'notveryshallow',
	'notverysham',
	'notveryshambles',
	'notveryshame',
	'notveryshameful',
	'notveryshamefully',
	'notveryshamefulness',
	'notveryshameless',
	'notveryshamelessly',
	'notveryshamelessness',
	'notveryshark',
	'notverysharply',
	'notveryshatter',
	'notverysheer',
	'notveryshipwreck',
	'notveryshirk',
	'notveryshirker',
	'notveryshiver',
	'notveryshock',
	'notveryshocking',
	'notveryshockingly',
	'notveryshoddy',
	'notveryshort-lived',
	'notveryshortage',
	'notveryshortchange',
	'notveryshortcoming',
	'notveryshortcomings',
	'notveryshortsighted',
	'notveryshortsightedness',
	'notveryshowdown',
	'notveryshred',
	'notveryshrew',
	'notveryshriek',
	'notveryshrill',
	'notveryshrilly',
	'notveryshrivel',
	'notveryshroud',
	'notveryshrouded',
	'notveryshrug',
	'notveryshun',
	'notveryshunned',
	'notveryshy',
	'notveryshyly',
	'notveryshyness',
	'notverysick',
	'notverysicken',
	'notverysickening',
	'notverysickeningly',
	'notverysickly',
	'notverysickness',
	'notverysidetrack',
	'notverysidetracked',
	'notverysiege',
	'notverysillily',
	'notverysilly',
	'notverysimmer',
	'notverysimplistic',
	'notverysimplistically',
	'notverysin',
	'notverysinful',
	'notverysinfully',
	'notverysinister',
	'notverysinisterly',
	'notverysinking',
	'notveryskeletons',
	'notveryskeptical',
	'notveryskeptically',
	'notveryskepticism',
	'notverysketchy',
	'notveryskimpy',
	'notveryskittish',
	'notveryskittishly',
	'notveryskulk',
	'notveryslack',
	'notveryslander',
	'notveryslanderer',
	'notveryslanderous',
	'notveryslanderously',
	'notveryslanders',
	'notveryslap',
	'notveryslashing',
	'notveryslaughter',
	'notveryslaughtered',
	'notveryslaves',
	'notverysleazy',
	'notveryslight',
	'notveryslightly',
	'notveryslime',
	'notverysloppily',
	'notverysloppy',
	'notverysloth',
	'notveryslothful',
	'notveryslow',
	'notveryslow-moving',
	'notveryslowly',
	'notveryslug',
	'notverysluggish',
	'notveryslump',
	'notveryslur',
	'notverysly',
	'notverysmack',
	'notverysmall',
	'notverysmash',
	'notverysmear',
	'notverysmelling',
	'notverysmokescreen',
	'notverysmolder',
	'notverysmoldering',
	'notverysmother',
	'notverysmothered',
	'notverysmoulder',
	'notverysmouldering',
	'notverysmug',
	'notverysmugly',
	'notverysmut',
	'notverysmuttier',
	'notverysmuttiest',
	'notverysmutty',
	'notverysnare',
	'notverysnarl',
	'notverysnatch',
	'notverysneak',
	'notverysneakily',
	'notverysneaky',
	'notverysneer',
	'notverysneering',
	'notverysneeringly',
	'notverysnub',
	'notveryso-cal',
	'notveryso-called',
	'notverysob',
	'notverysober',
	'notverysobering',
	'notverysolemn',
	'notverysomber',
	'notverysore',
	'notverysorely',
	'notverysoreness',
	'notverysorrow',
	'notverysorrowful',
	'notverysorrowfully',
	'notverysounding',
	'notverysour',
	'notverysourly',
	'notveryspade',
	'notveryspank',
	'notveryspilling',
	'notveryspinster',
	'notveryspiritless',
	'notveryspite',
	'notveryspiteful',
	'notveryspitefully',
	'notveryspitefulness',
	'notverysplit',
	'notverysplitting',
	'notveryspoil',
	'notveryspook',
	'notveryspookier',
	'notveryspookiest',
	'notveryspookily',
	'notveryspooky',
	'notveryspoon-fed',
	'notveryspoon-feed',
	'notveryspoonfed',
	'notverysporadic',
	'notveryspot',
	'notveryspotty',
	'notveryspurious',
	'notveryspurn',
	'notverysputter',
	'notverysquabble',
	'notverysquabbling',
	'notverysquander',
	'notverysquash',
	'notverysquirm',
	'notverystab',
	'notverystagger',
	'notverystaggering',
	'notverystaggeringly',
	'notverystagnant',
	'notverystagnate',
	'notverystagnation',
	'notverystaid',
	'notverystain',
	'notverystake',
	'notverystale',
	'notverystalemate',
	'notverystammer',
	'notverystampede',
	'notverystandstill',
	'notverystark',
	'notverystarkly',
	'notverystartle',
	'notverystartling',
	'notverystartlingly',
	'notverystarvation',
	'notverystarve',
	'notverystatic',
	'notverysteal',
	'notverystealing',
	'notverysteep',
	'notverysteeply',
	'notverystench',
	'notverystereotype',
	'notverystereotyped',
	'notverystereotypical',
	'notverystereotypically',
	'notverystern',
	'notverystew',
	'notverysticky',
	'notverystiff',
	'notverystifle',
	'notverystifling',
	'notverystiflingly',
	'notverystigma',
	'notverystigmatize',
	'notverysting',
	'notverystinging',
	'notverystingingly',
	'notverystink',
	'notverystinking',
	'notverystodgy',
	'notverystole',
	'notverystolen',
	'notverystooge',
	'notverystooges',
	'notverystorm',
	'notverystormy',
	'notverystraggle',
	'notverystraggler',
	'notverystrain',
	'notverystrained',
	'notverystrange',
	'notverystrangely',
	'notverystranger',
	'notverystrangest',
	'notverystrangle',
	'notverystrenuous',
	'notverystress',
	'notverystressed',
	'notverystressful',
	'notverystressfully',
	'notverystretched',
	'notverystricken',
	'notverystrict',
	'notverystrictly',
	'notverystrident',
	'notverystridently',
	'notverystrife',
	'notverystrike',
	'notverystringent',
	'notverystringently',
	'notverystruck',
	'notverystruggle',
	'notverystrut',
	'notverystubborn',
	'notverystubbornly',
	'notverystubbornness',
	'notverystuck',
	'notverystuffy',
	'notverystumble',
	'notverystump',
	'notverystun',
	'notverystunt',
	'notverystunted',
	'notverystupid',
	'notverystupidity',
	'notverystupidly',
	'notverystupified',
	'notverystupify',
	'notverystupor',
	'notverysty',
	'notverysubdued',
	'notverysubjected',
	'notverysubjection',
	'notverysubjugate',
	'notverysubjugation',
	'notverysubmissive',
	'notverysubordinate',
	'notverysubservience',
	'notverysubservient',
	'notverysubside',
	'notverysubstandard',
	'notverysubtract',
	'notverysubversion',
	'notverysubversive',
	'notverysubversively',
	'notverysubvert',
	'notverysuccumb',
	'notverysucker',
	'notverysuffer',
	'notverysufferer',
	'notverysufferers',
	'notverysuffering',
	'notverysuffocate',
	'notverysuffocated',
	'notverysugar-coat',
	'notverysugar-coated',
	'notverysugarcoated',
	'notverysuicidal',
	'notverysuicide',
	'notverysulk',
	'notverysullen',
	'notverysully',
	'notverysunder',
	'notverysuperficial',
	'notverysuperficiality',
	'notverysuperficially',
	'notverysuperfluous',
	'notverysuperiority',
	'notverysuperstition',
	'notverysuperstitious',
	'notverysupposed',
	'notverysuppress',
	'notverysuppressed',
	'notverysuppression',
	'notverysupremacy',
	'notverysurrender',
	'notverysusceptible',
	'notverysuspect',
	'notverysuspicion',
	'notverysuspicions',
	'notverysuspicious',
	'notverysuspiciously',
	'notveryswagger',
	'notveryswamped',
	'notveryswear',
	'notveryswindle',
	'notveryswipe',
	'notveryswoon',
	'notveryswore',
	'notverysympathetically',
	'notverysympathies',
	'notverysympathize',
	'notverysympathy',
	'notverysymptom',
	'notverysyndrome',
	'notverytaboo',
	'notverytaint',
	'notverytainted',
	'notverytamper',
	'notverytangled',
	'notverytantrum',
	'notverytardy',
	'notverytarnish',
	'notverytattered',
	'notverytaunt',
	'notverytaunting',
	'notverytauntingly',
	'notverytaunts',
	'notverytawdry',
	'notverytaxing',
	'notverytease',
	'notveryteasingly',
	'notverytedious',
	'notverytediously',
	'notverytemerity',
	'notverytemper',
	'notverytempest',
	'notverytemptation',
	'notverytense',
	'notverytension',
	'notverytentative',
	'notverytentatively',
	'notverytenuous',
	'notverytenuously',
	'notverytepid',
	'notveryterrible',
	'notveryterribleness',
	'notveryterribly',
	'notveryterror',
	'notveryterror-genic',
	'notveryterrorism',
	'notveryterrorize',
	'notverythankless',
	'notverythirst',
	'notverythorny',
	'notverythoughtless',
	'notverythoughtlessly',
	'notverythoughtlessness',
	'notverythrash',
	'notverythreat',
	'notverythreaten',
	'notverythreatening',
	'notverythreats',
	'notverythrottle',
	'notverythrow',
	'notverythumb',
	'notverythumbs',
	'notverythwart',
	'notverytimid',
	'notverytimidity',
	'notverytimidly',
	'notverytimidness',
	'notverytiny',
	'notverytire',
	'notverytired',
	'notverytiresome',
	'notverytiring',
	'notverytiringly',
	'notverytoil',
	'notverytoll',
	'notverytopple',
	'notverytorment',
	'notverytormented',
	'notverytorrent',
	'notverytortuous',
	'notverytorture',
	'notverytortured',
	'notverytorturous',
	'notverytorturously',
	'notverytotalitarian',
	'notverytouchy',
	'notverytoughness',
	'notverytoxic',
	'notverytraduce',
	'notverytragedy',
	'notverytragic',
	'notverytragically',
	'notverytraitor',
	'notverytraitorous',
	'notverytraitorously',
	'notverytramp',
	'notverytrample',
	'notverytransgress',
	'notverytransgression',
	'notverytrauma',
	'notverytraumatic',
	'notverytraumatically',
	'notverytraumatize',
	'notverytraumatized',
	'notverytravesties',
	'notverytravesty',
	'notverytreacherous',
	'notverytreacherously',
	'notverytreachery',
	'notverytreason',
	'notverytreasonous',
	'notverytrial',
	'notverytrick',
	'notverytrickery',
	'notverytricky',
	'notverytrivial',
	'notverytrivialize',
	'notverytrivially',
	'notverytrouble',
	'notverytroublemaker',
	'notverytroublesome',
	'notverytroublesomely',
	'notverytroubling',
	'notverytroublingly',
	'notverytruant',
	'notverytumultuous',
	'notveryturbulent',
	'notveryturmoil',
	'notverytwist',
	'notverytwisted',
	'notverytwists',
	'notverytyrannical',
	'notverytyrannically',
	'notverytyranny',
	'notverytyrant',
	'notveryugh',
	'notveryugliness',
	'notveryugly',
	'notveryulterior',
	'notveryultimatum',
	'notveryultimatums',
	'notveryultra-hardline',
	'notveryunable',
	'notveryunacceptable',
	'notveryunacceptablely',
	'notveryunaccustomed',
	'notveryunattractive',
	'notveryunauthentic',
	'notveryunavailable',
	'notveryunavoidable',
	'notveryunavoidably',
	'notveryunbearable',
	'notveryunbearablely',
	'notveryunbelievable',
	'notveryunbelievably',
	'notveryuncertain',
	'notveryuncivil',
	'notveryuncivilized',
	'notveryunclean',
	'notveryunclear',
	'notveryuncollectible',
	'notveryuncomfortable',
	'notveryuncompetitive',
	'notveryuncompromising',
	'notveryuncompromisingly',
	'notveryunconfirmed',
	'notveryunconstitutional',
	'notveryuncontrolled',
	'notveryunconvincing',
	'notveryunconvincingly',
	'notveryuncouth',
	'notveryundecided',
	'notveryundefined',
	'notveryundependability',
	'notveryundependable',
	'notveryunderdog',
	'notveryunderestimate',
	'notveryunderlings',
	'notveryundermine',
	'notveryunderpaid',
	'notveryundesirable',
	'notveryundetermined',
	'notveryundid',
	'notveryundignified',
	'notveryundo',
	'notveryundocumented',
	'notveryundone',
	'notveryundue',
	'notveryunease',
	'notveryuneasily',
	'notveryuneasiness',
	'notveryuneasy',
	'notveryuneconomical',
	'notveryunequal',
	'notveryunethical',
	'notveryuneven',
	'notveryuneventful',
	'notveryunexpected',
	'notveryunexpectedly',
	'notveryunexplained',
	'notveryunfair',
	'notveryunfairly',
	'notveryunfaithful',
	'notveryunfaithfully',
	'notveryunfamiliar',
	'notveryunfavorable',
	'notveryunfeeling',
	'notveryunfinished',
	'notveryunfit',
	'notveryunforeseen',
	'notveryunfortunate',
	'notveryunfounded',
	'notveryunfriendly',
	'notveryunfulfilled',
	'notveryunfunded',
	'notveryungovernable',
	'notveryungrateful',
	'notveryunhappily',
	'notveryunhappiness',
	'notveryunhappy',
	'notveryunhealthy',
	'notveryunilateralism',
	'notveryunimaginable',
	'notveryunimaginably',
	'notveryunimportant',
	'notveryuninformed',
	'notveryuninsured',
	'notveryunipolar',
	'notveryunjust',
	'notveryunjustifiable',
	'notveryunjustifiably',
	'notveryunjustified',
	'notveryunjustly',
	'notveryunkind',
	'notveryunkindly',
	'notveryunlamentable',
	'notveryunlamentably',
	'notveryunlawful',
	'notveryunlawfully',
	'notveryunlawfulness',
	'notveryunleash',
	'notveryunlicensed',
	'notveryunlucky',
	'notveryunmoved',
	'notveryunnatural',
	'notveryunnaturally',
	'notveryunnecessary',
	'notveryunneeded',
	'notveryunnerve',
	'notveryunnerved',
	'notveryunnerving',
	'notveryunnervingly',
	'notveryunnoticed',
	'notveryunobserved',
	'notveryunorthodox',
	'notveryunorthodoxy',
	'notveryunpleasant',
	'notveryunpleasantries',
	'notveryunpopular',
	'notveryunprecedent',
	'notveryunprecedented',
	'notveryunpredictable',
	'notveryunprepared',
	'notveryunproductive',
	'notveryunprofitable',
	'notveryunqualified',
	'notveryunravel',
	'notveryunraveled',
	'notveryunrealistic',
	'notveryunreasonable',
	'notveryunreasonably',
	'notveryunrelenting',
	'notveryunrelentingly',
	'notveryunreliability',
	'notveryunreliable',
	'notveryunresolved',
	'notveryunrest',
	'notveryunruly',
	'notveryunsafe',
	'notveryunsatisfactory',
	'notveryunsavory',
	'notveryunscrupulous',
	'notveryunscrupulously',
	'notveryunseemly',
	'notveryunsettle',
	'notveryunsettled',
	'notveryunsettling',
	'notveryunsettlingly',
	'notveryunskilled',
	'notveryunsophisticated',
	'notveryunsound',
	'notveryunspeakable',
	'notveryunspeakablely',
	'notveryunspecified',
	'notveryunstable',
	'notveryunsteadily',
	'notveryunsteadiness',
	'notveryunsteady',
	'notveryunsuccessful',
	'notveryunsuccessfully',
	'notveryunsupported',
	'notveryunsure',
	'notveryunsuspecting',
	'notveryunsustainable',
	'notveryuntenable',
	'notveryuntested',
	'notveryunthinkable',
	'notveryunthinkably',
	'notveryuntimely',
	'notveryuntrue',
	'notveryuntrustworthy',
	'notveryuntruthful',
	'notveryunusual',
	'notveryunusually',
	'notveryunwanted',
	'notveryunwarranted',
	'notveryunwelcome',
	'notveryunwieldy',
	'notveryunwilling',
	'notveryunwillingly',
	'notveryunwillingness',
	'notveryunwise',
	'notveryunwisely',
	'notveryunworkable',
	'notveryunworthy',
	'notveryunyielding',
	'notveryupbraid',
	'notveryupheaval',
	'notveryuprising',
	'notveryuproar',
	'notveryuproarious',
	'notveryuproariously',
	'notveryuproarous',
	'notveryuproarously',
	'notveryuproot',
	'notveryupset',
	'notveryupsetting',
	'notveryupsettingly',
	'notveryurgency',
	'notveryurgent',
	'notveryurgently',
	'notveryuseless',
	'notveryusurp',
	'notveryusurper',
	'notveryutter',
	'notveryutterly',
	'notveryvagrant',
	'notveryvague',
	'notveryvagueness',
	'notveryvain',
	'notveryvainly',
	'notveryvanish',
	'notveryvanity',
	'notveryvehement',
	'notveryvehemently',
	'notveryvengeance',
	'notveryvengeful',
	'notveryvengefully',
	'notveryvengefulness',
	'notveryvenom',
	'notveryvenomous',
	'notveryvenomously',
	'notveryvent',
	'notveryvestiges',
	'notveryveto',
	'notveryvex',
	'notveryvexation',
	'notveryvexing',
	'notveryvexingly',
	'notveryvice',
	'notveryvicious',
	'notveryviciously',
	'notveryviciousness',
	'notveryvictimize',
	'notveryvie',
	'notveryvile',
	'notveryvileness',
	'notveryvilify',
	'notveryvillainous',
	'notveryvillainously',
	'notveryvillains',
	'notveryvillian',
	'notveryvillianous',
	'notveryvillianously',
	'notveryvillify',
	'notveryvindictive',
	'notveryvindictively',
	'notveryvindictiveness',
	'notveryviolate',
	'notveryviolation',
	'notveryviolator',
	'notveryviolent',
	'notveryviolently',
	'notveryviper',
	'notveryvirulence',
	'notveryvirulent',
	'notveryvirulently',
	'notveryvirus',
	'notveryvocally',
	'notveryvociferous',
	'notveryvociferously',
	'notveryvoid',
	'notveryvolatile',
	'notveryvolatility',
	'notveryvomit',
	'notveryvulgar',
	'notverywail',
	'notverywallow',
	'notverywane',
	'notverywaning',
	'notverywanton',
	'notverywar',
	'notverywar-like',
	'notverywarfare',
	'notverywarily',
	'notverywariness',
	'notverywarlike',
	'notverywarning',
	'notverywarp',
	'notverywarped',
	'notverywary',
	'notverywaste',
	'notverywasteful',
	'notverywastefulness',
	'notverywatchdog',
	'notverywayward',
	'notveryweak',
	'notveryweaken',
	'notveryweakening',
	'notveryweakness',
	'notveryweaknesses',
	'notveryweariness',
	'notverywearisome',
	'notveryweary',
	'notverywedge',
	'notverywee',
	'notveryweed',
	'notveryweep',
	'notveryweird',
	'notveryweirdly',
	'notverywheedle',
	'notverywhimper',
	'notverywhine',
	'notverywhips',
	'notverywicked',
	'notverywickedly',
	'notverywickedness',
	'notverywidespread',
	'notverywild',
	'notverywildly',
	'notverywiles',
	'notverywilt',
	'notverywily',
	'notverywince',
	'notverywithheld',
	'notverywithhold',
	'notverywoe',
	'notverywoebegone',
	'notverywoeful',
	'notverywoefully',
	'notveryworn',
	'notveryworried',
	'notveryworriedly',
	'notveryworrier',
	'notveryworries',
	'notveryworrisome',
	'notveryworry',
	'notveryworrying',
	'notveryworryingly',
	'notveryworse',
	'notveryworsen',
	'notveryworsening',
	'notveryworst',
	'notveryworthless',
	'notveryworthlessly',
	'notveryworthlessness',
	'notverywound',
	'notverywounds',
	'notverywrangle',
	'notverywrath',
	'notverywreck',
	'notverywrest',
	'notverywrestle',
	'notverywretch',
	'notverywretched',
	'notverywretchedly',
	'notverywretchedness',
	'notverywrithe',
	'notverywrong',
	'notverywrongful',
	'notverywrongly',
	'notverywrought',
	'notveryyawn',
	'notveryyelp',
	'notveryzealot',
	'notveryzealous',
	'notveryzealously',
	'notvestiges',
	'notveto',
	'notvex',
	'notvexation',
	'notvexing',
	'notvexingly',
	'notvice',
	'notvicious',
	'notviciously',
	'notviciousness',
	'notvictimize',
	'notvie',
	'notvile',
	'notvileness',
	'notvilify',
	'notvillainous',
	'notvillainously',
	'notvillains',
	'notvillian',
	'notvillianous',
	'notvillianously',
	'notvillify',
	'notvindictive',
	'notvindictively',
	'notvindictiveness',
	'notviolate',
	'notviolation',
	'notviolator',
	'notviolent',
	'notviolently',
	'notviper',
	'notvirulence',
	'notvirulent',
	'notvirulently',
	'notvirus',
	'notvocally',
	'notvociferous',
	'notvociferously',
	'notvoid',
	'notvolatile',
	'notvolatility',
	'notvomit',
	'notvulgar',
	'notwail',
	'notwallow',
	'notwane',
	'notwaning',
	'notwanton',
	'notwar',
	'notwar-like',
	'notwarfare',
	'notwarily',
	'notwariness',
	'notwarlike',
	'notwarning',
	'notwarp',
	'notwarped',
	'notwary',
	'notwaste',
	'notwasteful',
	'notwastefulness',
	'notwatchdog',
	'notwayward',
	'notweak',
	'notweaken',
	'notweakening',
	'notweakness',
	'notweaknesses',
	'notweariness',
	'notwearisome',
	'notweary',
	'notwedge',
	'notwee',
	'notweed',
	'notweep',
	'notweird',
	'notweirdly',
	'notwheedle',
	'notwhimper',
	'notwhine',
	'notwhips',
	'notwicked',
	'notwickedly',
	'notwickedness',
	'notwidespread',
	'notwild',
	'notwildly',
	'notwiles',
	'notwilt',
	'notwily',
	'notwince',
	'notwithheld',
	'notwithhold',
	'notwoe',
	'notwoebegone',
	'notwoeful',
	'notwoefully',
	'notworn',
	'notworried',
	'notworriedly',
	'notworrier',
	'notworries',
	'notworrisome',
	'notworry',
	'notworrying',
	'notworryingly',
	'notworse',
	'notworsen',
	'notworsening',
	'notworst',
	'notworthless',
	'notworthlessly',
	'notworthlessness',
	'notwound',
	'notwounds',
	'notwrangle',
	'notwrath',
	'notwreck',
	'notwrest',
	'notwrestle',
	'notwretch',
	'notwretched',
	'notwretchedly',
	'notwretchedness',
	'notwrithe',
	'notwrong',
	'notwrongful',
	'notwrongly',
	'notwrought',
	'notyawn',
	'notyelp',
	'notzealot',
	'notzealous',
	'notzealously',
	'nourish',
	'nourishing',
	'nourishment',
	'nurture',
	'nurturing',
	'oasis',
	'obedience',
	'obedient',
	'obediently',
	'obey',
	'objective',
	'objectively',
	'obliged',
	'obviate',
	'offbeat',
	'offset',
	'onward',
	'open',
	'openhanded',
	'openly',
	'openness',
	'opportune',
	'opportunity',
	'optimal',
	'optimism',
	'optimistic',
	'opulent',
	'orderly',
	'original',
	'originality',
	'outdo',
	'outgoing',
	'outshine',
	'outsmart',
	'outstanding',
	'outstandingly',
	'outstrip',
	'outwit',
	'ovation',
	'overachiever',
	'overjoyed',
	'overture',
	'pacifist',
	'pacifists',
	'painless',
	'painlessly',
	'painstaking',
	'painstakingly',
	'palatable',
	'palatial',
	'palliate',
	'pamper',
	'paradise',
	'paramount',
	'pardon',
	'passion',
	'passionate',
	'passionately',
	'patience',
	'patient',
	'patiently',
	'patriot',
	'patriotic',
	'peace',
	'peaceable',
	'peaceful',
	'peacefully',
	'peacekeepers',
	'peerless',
	'penetrating',
	'penitent',
	'perceptive',
	'perfect',
	'perfection',
	'perfectly',
	'permissible',
	'perseverance',
	'persevere',
	'persistent',
	'personable',
	'personages',
	'personality',
	'perspicuous',
	'perspicuously',
	'persuade',
	'persuasive',
	'persuasively',
	'pertinent',
	'phenomenal',
	'phenomenally',
	'philanthropic',
	'philosophical',
	'picturesque',
	'piety',
	'pillar',
	'pinnacle',
	'pious',
	'pithy',
	'placate',
	'placid',
	'plainly',
	'plausibility',
	'plausible',
	'playful',
	'playfully',
	'pleasant',
	'pleasantly',
	'pleased',
	'pleasing',
	'pleasingly',
	'pleasurable',
	'pleasurably',
	'pleasure',
	'pledge',
	'pledges',
	'plentiful',
	'plenty',
	'plush',
	'poetic',
	'poeticize',
	'poignant',
	'poise',
	'poised',
	'polished',
	'polite',
	'politeness',
	'popular',
	'popularity',
	'portable',
	'posh',
	'positive',
	'positively',
	'positiveness',
	'posterity',
	'potent',
	'potential',
	'powerful',
	'powerfully',
	'practicable',
	'practical',
	'pragmatic',
	'praise',
	'praiseworthy',
	'praising',
	'pre-eminent',
	'preach',
	'preaching',
	'precaution',
	'precautions',
	'precedent',
	'precious',
	'precise',
	'precisely',
	'precision',
	'preeminent',
	'preemptive',
	'prefer',
	'preferable',
	'preferably',
	'preference',
	'preferences',
	'premier',
	'premium',
	'prepared',
	'preponderance',
	'press',
	'prestige',
	'prestigious',
	'prettily',
	'pretty',
	'priceless',
	'pride',
	'principle',
	'principled',
	'privilege',
	'privileged',
	'prize',
	'pro',
	'pro-american',
	'pro-beijing',
	'pro-cuba',
	'pro-peace',
	'proactive',
	'prodigious',
	'prodigiously',
	'prodigy',
	'productive',
	'profess',
	'professional',
	'proficient',
	'proficiently',
	'profit',
	'profitable',
	'profound',
	'profoundly',
	'profuse',
	'profusely',
	'profusion',
	'progress',
	'progressive',
	'prolific',
	'prominence',
	'prominent',
	'promise',
	'promising',
	'promoter',
	'prompt',
	'promptly',
	'proper',
	'properly',
	'propitious',
	'propitiously',
	'prospect',
	'prospects',
	'prosper',
	'prosperity',
	'prosperous',
	'protect',
	'protection',
	'protective',
	'protector',
	'proud',
	'providence',
	'provident',
	'prowess',
	'prudence',
	'prudent',
	'prudently',
	'punctual',
	'pundits',
	'pure',
	'purification',
	'purify',
	'purity',
	'purposeful',
	'quaint',
	'qualified',
	'qualify',
	'quasi-ally',
	'quench',
	'quicken',
	'radiance',
	'radiant',
	'rally',
	'rapport',
	'rapprochement',
	'rapt',
	'rapture',
	'raptureous',
	'raptureously',
	'rapturous',
	'rapturously',
	'rational',
	'rationality',
	'rave',
	're-conquest',
	'readily',
	'ready',
	'reaffirm',
	'reaffirmation',
	'real',
	'realist',
	'realistic',
	'realistically',
	'reason',
	'reasonable',
	'reasonably',
	'reasoned',
	'reassurance',
	'reassure',
	'receptive',
	'reclaim',
	'recognition',
	'recommend',
	'recommendation',
	'recommendations',
	'recommended',
	'recompense',
	'reconcile',
	'reconciliation',
	'record-setting',
	'recover',
	'rectification',
	'rectify',
	'rectifying',
	'redeem',
	'redeeming',
	'redemption',
	'reestablish',
	'refine',
	'refined',
	'refinement',
	'reflective',
	'reform',
	'refresh',
	'refreshing',
	'refuge',
	'regal',
	'regally',
	'regard',
	'rehabilitate',
	'rehabilitation',
	'reinforce',
	'reinforcement',
	'rejoice',
	'rejoicing',
	'rejoicingly',
	'relax',
	'relaxed',
	'relent',
	'relevance',
	'relevant',
	'reliability',
	'reliable',
	'reliably',
	'relief',
	'relieve',
	'relish',
	'remarkable',
	'remarkably',
	'remedy',
	'reminiscent',
	'remunerate',
	'renaissance',
	'renewal',
	'renovate',
	'renovation',
	'renown',
	'renowned',
	'repair',
	'reparation',
	'repay',
	'repent',
	'repentance',
	'reposed',
	'reputable',
	'rescue',
	'resilient',
	'resolute',
	'resolve',
	'resolved',
	'resound',
	'resounding',
	'resourceful',
	'resourcefulness',
	'respect',
	'respectable',
	'respectful',
	'respectfully',
	'respite',
	'resplendent',
	'responsibility',
	'responsible',
	'responsibly',
	'responsive',
	'restful',
	'restoration',
	'restore',
	'restrained',
	'restraint',
	'resurgent',
	'reunite',
	'revel',
	'revelation',
	'revere',
	'reverence',
	'reverent',
	'reverently',
	'revitalize',
	'revival',
	'revive',
	'revolution',
	'reward',
	'rewarding',
	'rewardingly',
	'rich',
	'riches',
	'richly',
	'richness',
	'right',
	'righten',
	'righteous',
	'righteously',
	'righteousness',
	'rightful',
	'rightfully',
	'rightly',
	'rightness',
	'rights',
	'ripe',
	'risk-free',
	'robust',
	'romantic',
	'romantically',
	'romanticize',
	'rosy',
	'rousing',
	'sacred',
	'safe',
	'safeguard',
	'sagacious',
	'sagacity',
	'sage',
	'sagely',
	'saint',
	'saintliness',
	'saintly',
	'salable',
	'salivate',
	'salutary',
	'salute',
	'salvation',
	'sanctify',
	'sanction',
	'sanctity',
	'sanctuary',
	'sane',
	'sanguine',
	'sanity',
	'satisfaction',
	'satisfactorily',
	'satisfactory',
	'satisfied',
	'satisfy',
	'satisfying',
	'savor',
	'savvy',
	'scenic',
	'scholarly',
	'scruples',
	'scrupulous',
	'scrupulously',
	'seamless',
	'seasoned',
	'secure',
	'securely',
	'security',
	'seductive',
	'seemly',
	'selective',
	'self-determination',
	'self-respect',
	'self-satisfaction',
	'self-sufficiency',
	'self-sufficient',
	'semblance',
	'sensation',
	'sensational',
	'sensationally',
	'sensations',
	'sense',
	'sensible',
	'sensibly',
	'sensitively',
	'sensitivity',
	'sensual',
	'sentiment',
	'sentimental',
	'sentimentality',
	'sentimentally',
	'sentiments',
	'serene',
	'serenity',
	'settle',
	'sexy',
	'sharp',
	'shelter',
	'shield',
	'shimmer',
	'shimmering',
	'shimmeringly',
	'shine',
	'shiny',
	'shrewd',
	'shrewdly',
	'shrewdness',
	'significance',
	'significant',
	'signify',
	'simple',
	'simplicity',
	'simplified',
	'simplify',
	'sincere',
	'sincerely',
	'sincerity',
	'skill',
	'skilled',
	'skillful',
	'skillfully',
	'sleek',
	'slender',
	'slim',
	'smart',
	'smarter',
	'smartest',
	'smartly',
	'smile',
	'smiling',
	'smilingly',
	'smitten',
	'smooth',
	'sociable',
	'soft-spoken',
	'soften',
	'solace',
	'solicitous',
	'solicitously',
	'solicitude',
	'solid',
	'solidarity',
	'soothe',
	'soothingly',
	'sophisticated',
	'soulful',
	'sound',
	'soundness',
	'spacious',
	'spare',
	'sparing',
	'sparingly',
	'sparkle',
	'sparkling',
	'special',
	'spectacular',
	'spectacularly',
	'speedy',
	'spellbind',
	'spellbinding',
	'spellbindingly',
	'spellbound',
	'spirit',
	'spirited',
	'spiritual',
	'splendid',
	'splendidly',
	'splendor',
	'spontaneous',
	'spotless',
	'sprightly',
	'sprite',
	'spry',
	'spur',
	'squarely',
	'stability',
	'stabilize',
	'stable',
	'stainless',
	'stand',
	'star',
	'stars',
	'stately',
	'statuesque',
	'staunch',
	'staunchly',
	'staunchness',
	'steadfast',
	'steadfastly',
	'steadfastness',
	'steadiness',
	'steady',
	'stellar',
	'stellarly',
	'stimulate',
	'stimulating',
	'stimulative',
	'stirring',
	'stirringly',
	'stood',
	'straight',
	'straightforward',
	'streamlined',
	'stride',
	'strides',
	'striking',
	'strikingly',
	'striving',
	'strong',
	'studious',
	'studiously',
	'stunned',
	'stunning',
	'stunningly',
	'stupendous',
	'stupendously',
	'sturdy',
	'stylish',
	'stylishly',
	'suave',
	'sublime',
	'subscribe',
	'substantial',
	'substantially',
	'substantive',
	'subtle',
	'succeed',
	'success',
	'successful',
	'successfully',
	'suffice',
	'sufficient',
	'sufficiently',
	'suggest',
	'suggestions',
	'suit',
	'suitable',
	'sumptuous',
	'sumptuously',
	'sumptuousness',
	'sunny',
	'super',
	'superb',
	'superbly',
	'superior',
	'superlative',
	'support',
	'supporter',
	'supportive',
	'supreme',
	'supremely',
	'supurb',
	'supurbly',
	'surely',
	'surge',
	'surging',
	'surmise',
	'surmount',
	'surpass',
	'survival',
	'survive',
	'survivor',
	'sustainability',
	'sustainable',
	'sustained',
	'sweeping',
	'sweet',
	'sweeten',
	'sweetheart',
	'sweetly',
	'sweetness',
	'swell',
	'swift',
	'swiftness',
	'sworn',
	'sympathetic',
	'systematic',
	'tact',
	'talent',
	'talented',
	'tantalize',
	'tantalizing',
	'tantalizingly',
	'taste',
	'temperance',
	'temperate',
	'tempt',
	'tempting',
	'temptingly',
	'tenacious',
	'tenaciously',
	'tenacity',
	'tender',
	'tenderly',
	'tenderness',
	'terrific',
	'terrifically',
	'terrified',
	'terrify',
	'terrifying',
	'terrifyingly',
	'thankful',
	'thankfully',
	'thanks',
	'thinkable',
	'thorough',
	'thoughtful',
	'thoughtfully',
	'thoughtfulness',
	'thrift',
	'thrifty',
	'thrill',
	'thrilling',
	'thrillingly',
	'thrills',
	'thrive',
	'thriving',
	'tickle',
	'tidy',
	'time-honored',
	'timely',
	'tingle',
	'titillate',
	'titillating',
	'titillatingly',
	'toast',
	'togetherness',
	'tolerable',
	'tolerably',
	'tolerance',
	'tolerant',
	'tolerantly',
	'tolerate',
	'toleration',
	'top',
	'torrid',
	'torridly',
	'tough',
	'tradition',
	'traditional',
	'tranquil',
	'tranquility',
	'treasure',
	'treat',
	'tremendous',
	'tremendously',
	'trendy',
	'trepidation',
	'tribute',
	'trim',
	'triumph',
	'triumphal',
	'triumphant',
	'triumphantly',
	'truculent',
	'truculently',
	'true',
	'trump',
	'trumpet',
	'trust',
	'trusting',
	'trustingly',
	'trustworthiness',
	'trustworthy',
	'truth',
	'truthful',
	'truthfully',
	'truthfulness',
	'twinkly',
	'ultimate',
	'ultimately',
	'ultra',
	'unabashed',
	'unabashedly',
	'unanimous',
	'unassailable',
	'unbiased',
	'unbosom',
	'unbound',
	'unbroken',
	'uncommon',
	'uncommonly',
	'unconcerned',
	'unconditional',
	'unconventional',
	'undaunted',
	'understand',
	'understandable',
	'understanding',
	'understate',
	'understated',
	'understatedly',
	'understood',
	'undisputable',
	'undisputably',
	'undisputed',
	'undoubted',
	'undoubtedly',
	'unencumbered',
	'unequivocal',
	'unequivocally',
	'unfazed',
	'unfettered',
	'unforgettable',
	'uniform',
	'uniformly',
	'unique',
	'unity',
	'universal',
	'unlimited',
	'unparalleled',
	'unpretentious',
	'unquestionable',
	'unquestionably',
	'unrestricted',
	'unscathed',
	'unselfish',
	'untouched',
	'untrained',
	'upbeat',
	'upfront',
	'upgrade',
	'upheld',
	'uphold',
	'uplift',
	'uplifting',
	'upliftingly',
	'upliftment',
	'upright',
	'upscale',
	'upside',
	'upward',
	'urge',
	'usable',
	'useful',
	'usefulness',
	'utilitarian',
	'utmost',
	'uttermost',
	'valiant',
	'valiantly',
	'valid',
	'validity',
	'valor',
	'valuable',
	'values',
	'vanquish',
	'vast',
	'vastly',
	'vastness',
	'venerable',
	'venerably',
	'venerate',
	'verifiable',
	'veritable',
	'versatile',
	'versatility',
	'viability',
	'viable',
	'vibrant',
	'vibrantly',
	'victorious',
	'victory',
	'vigilance',
	'vigilant',
	'vigorous',
	'vigorously',
	'vindicate',
	'vintage',
	'virtue',
	'virtuous',
	'virtuously',
	'visionary',
	'vital',
	'vitality',
	'vivacious',
	'vivid',
	'voluntarily',
	'voluntary',
	'vouch',
	'vouchsafe',
	'vow',
	'vulnerable',
	'warm',
	'warmhearted',
	'warmly',
	'warmth',
	'wealthy',
	'welfare',
	'well-being',
	'well-connected',
	'well-educated',
	'well-established',
	'well-informed',
	'well-intentioned',
	'well-managed',
	'well-positioned',
	'well-publicized',
	'well-received',
	'well-regarded',
	'well-run',
	'well-wishers',
	'wellbeing',
	'whimsical',
	'white',
	'wholeheartedly',
	'wholesome',
	'wide',
	'wide-open',
	'wide-ranging',
	'willful',
	'willfully',
	'willing',
	'willingness',
	'wink',
	'winnable',
	'winners',
	'winsome',
	'wisdom',
	'wise',
	'wisely',
	'wishes',
	'wishing',
	'witty',
	'wonderful',
	'wonderfully',
	'wonderous',
	'wonderously',
	'wondrous',
	'woo',
	'workable',
	'world-famous',
	'worldly',
	'worship',
	'worth',
	'worth-while',
	'worthiness',
	'worthwhile',
	'worthy',
	'wow',
	'wry',
	'x3?',
	'xd',
	'xp',
	'yearn',
	'yearning',
	'yearningly',
	'yep',
	'youthful',
	'zeal',
	'zenith',
	'zest',
	'|d',
	'}:)}',
);
dictionaries/source.prefix.php000064400000000070151556062100012524 0ustar00<?php
$prefix = array(
	'aren\'t',
	'isn\'t',
	'not'
);